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
|
//go:build !functional
package sarama
import "testing"
var (
emptyDeleteOffsetsRequest = []byte{
0, 3, 'f', 'o', 'o', // group name: foo
0, 0, 0, 0, // 0 partition
}
)
func TestDeleteOffsetsRequest(t *testing.T) {
var request *DeleteOffsetsRequest
request = new(DeleteOffsetsRequest)
request.Group = "foo"
testRequest(t, "no offset", request, emptyDeleteOffsetsRequest)
request = new(DeleteOffsetsRequest)
request.Group = "foo"
request.AddPartition("bar", 6)
request.AddPartition("bar", 7)
// The response encoded form cannot be checked for it varies due to
// unpredictable map traversal order.
testRequest(t, "two offsets on one topic", request, nil)
request = new(DeleteOffsetsRequest)
request.Group = "foo"
request.AddPartition("bar", 6)
request.AddPartition("bar", 7)
request.AddPartition("baz", 0)
// The response encoded form cannot be checked for it varies due to
// unpredictable map traversal order.
testRequest(t, "three offsets on two topics", request, nil)
}
|