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
|
//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
})
}
|