File: list_groups_request_test.go

package info (click to toggle)
golang-github-ibm-sarama 1.46.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,072 kB
  • sloc: makefile: 40; sh: 30
file content (51 lines) | stat: -rw-r--r-- 1,291 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
//go:build !functional

package sarama

import "testing"

func TestListGroupsRequest(t *testing.T) {
	testRequest(t, "ListGroupsRequest", &ListGroupsRequest{}, []byte{})

	testRequest(t, "ListGroupsRequest", &ListGroupsRequest{
		Version: 1,
	}, []byte{})

	testRequest(t, "ListGroupsRequest", &ListGroupsRequest{
		Version: 2,
	}, []byte{})

	testRequest(t, "ListGroupsRequest", &ListGroupsRequest{
		Version: 3,
	}, []byte{
		0, //		0, // empty tag buffer
	})

	testRequest(t, "ListGroupsRequest", &ListGroupsRequest{
		Version: 4,
	}, []byte{
		1, // compact array length (0)
		0, // empty tag buffer
	})

	testRequest(t, "ListGroupsRequest", &ListGroupsRequest{
		Version:      4,
		StatesFilter: []string{"Empty"},
	}, []byte{
		2,                          // compact array length (1)
		6, 'E', 'm', 'p', 't', 'y', // compact string
		0, // empty tag buffer
	})

	testRequest(t, "ListGroupsRequest", &ListGroupsRequest{
		Version:      5,
		StatesFilter: []string{"Empty"},
		TypesFilter:  []string{"Classic"},
	}, []byte{
		2,                          // compact array length (1)
		6, 'E', 'm', 'p', 't', 'y', // compact string
		2,                                    // compact array length (1)
		8, 'C', 'l', 'a', 's', 's', 'i', 'c', // compact string
		0, // empty tag buffer
	})
}