mirror of
https://gitee.com/johng/gf
synced 2026-07-04 21:03:13 +08:00
新增go modules支持,自行管理第三方包依赖,方便开发者使用
This commit is contained in:
43
third/github.com/Shopify/sarama/offset_request_test.go
Normal file
43
third/github.com/Shopify/sarama/offset_request_test.go
Normal file
@ -0,0 +1,43 @@
|
||||
package sarama
|
||||
|
||||
import "testing"
|
||||
|
||||
var (
|
||||
offsetRequestNoBlocks = []byte{
|
||||
0xFF, 0xFF, 0xFF, 0xFF,
|
||||
0x00, 0x00, 0x00, 0x00}
|
||||
|
||||
offsetRequestOneBlock = []byte{
|
||||
0xFF, 0xFF, 0xFF, 0xFF,
|
||||
0x00, 0x00, 0x00, 0x01,
|
||||
0x00, 0x03, 'f', 'o', 'o',
|
||||
0x00, 0x00, 0x00, 0x01,
|
||||
0x00, 0x00, 0x00, 0x04,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
|
||||
0x00, 0x00, 0x00, 0x02}
|
||||
|
||||
offsetRequestOneBlockV1 = []byte{
|
||||
0xFF, 0xFF, 0xFF, 0xFF,
|
||||
0x00, 0x00, 0x00, 0x01,
|
||||
0x00, 0x03, 'b', 'a', 'r',
|
||||
0x00, 0x00, 0x00, 0x01,
|
||||
0x00, 0x00, 0x00, 0x04,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01}
|
||||
)
|
||||
|
||||
func TestOffsetRequest(t *testing.T) {
|
||||
request := new(OffsetRequest)
|
||||
testRequest(t, "no blocks", request, offsetRequestNoBlocks)
|
||||
|
||||
request.AddBlock("foo", 4, 1, 2)
|
||||
testRequest(t, "one block", request, offsetRequestOneBlock)
|
||||
}
|
||||
|
||||
func TestOffsetRequestV1(t *testing.T) {
|
||||
request := new(OffsetRequest)
|
||||
request.Version = 1
|
||||
testRequest(t, "no blocks", request, offsetRequestNoBlocks)
|
||||
|
||||
request.AddBlock("bar", 4, 1, 2) // Last argument is ignored for V1
|
||||
testRequest(t, "one block", request, offsetRequestOneBlockV1)
|
||||
}
|
||||
Reference in New Issue
Block a user