File: describeconfigs_test.go

package info (click to toggle)
golang-github-segmentio-kafka-go 0.4.49%2Bds1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,292 kB
  • sloc: sh: 17; makefile: 10
file content (77 lines) | stat: -rw-r--r-- 1,548 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
package describeconfigs

import (
	"errors"
	"fmt"
	"io"
	"reflect"
	"testing"

	"github.com/segmentio/kafka-go/protocol"
	"github.com/stretchr/testify/require"
)

func TestResponse_Merge(t *testing.T) {
	t.Run("happy path", func(t *testing.T) {
		r := &Response{}

		r1 := &Response{
			Resources: []ResponseResource{
				{ResourceName: "r1"},
			},
		}
		r2 := &Response{
			Resources: []ResponseResource{
				{ResourceName: "r2"},
			},
		}

		got, err := r.Merge([]protocol.Message{&Request{}}, []interface{}{r1, r2})
		if err != nil {
			t.Fatal(err)
		}

		want := &Response{
			Resources: []ResponseResource{
				{ResourceName: "r1"},
				{ResourceName: "r2"},
			},
		}

		if !reflect.DeepEqual(want, got) {
			t.Fatalf("wanted response: \n%+v, got \n%+v", want, got)
		}
	})

	t.Run("with errors", func(t *testing.T) {
		r := &Response{}

		r1 := &Response{
			Resources: []ResponseResource{
				{ResourceName: "r1"},
			},
		}

		_, err := r.Merge([]protocol.Message{&Request{}}, []interface{}{r1, io.EOF})
		if !errors.Is(err, io.EOF) {
			t.Fatalf("wanted err io.EOF, got %v", err)
		}
	})

	t.Run("panic with unexpected type", func(t *testing.T) {
		defer func() {
			msg := recover()
			require.Equal(t, "BUG: result must be a message or an error but not string", fmt.Sprintf("%s", msg))
		}()
		r := &Response{}

		r1 := &Response{
			Resources: []ResponseResource{
				{ResourceName: "r1"},
			},
		}

		_, _ = r.Merge([]protocol.Message{&Request{}}, []interface{}{r1, "how did a string got here"})
		t.Fatal("did not panic")
	})
}