forked from IBM/sarama
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdelete_offsets_request_test.go
More file actions
36 lines (29 loc) · 981 Bytes
/
delete_offsets_request_test.go
File metadata and controls
36 lines (29 loc) · 981 Bytes
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
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)
}