|
@@ -61,8 +61,28 @@ var (
|
|
|
0x06, 0x05, 0x06, 0x07,
|
|
0x06, 0x05, 0x06, 0x07,
|
|
|
0x02,
|
|
0x02,
|
|
|
0x06, 0x08, 0x09, 0x0A,
|
|
0x06, 0x08, 0x09, 0x0A,
|
|
|
- 0x04, 0x0B, 0x0C,
|
|
|
|
|
- }
|
|
|
|
|
|
|
+ 0x04, 0x0B, 0x0C}
|
|
|
|
|
+
|
|
|
|
|
+ oneMessageFetchResponseV4 = []byte{
|
|
|
|
|
+ 0x00, 0x00, 0x00, 0x00, // ThrottleTime
|
|
|
|
|
+ 0x00, 0x00, 0x00, 0x01, // Number of Topics
|
|
|
|
|
+ 0x00, 0x05, 't', 'o', 'p', 'i', 'c', // Topic
|
|
|
|
|
+ 0x00, 0x00, 0x00, 0x01, // Number of Partitions
|
|
|
|
|
+ 0x00, 0x00, 0x00, 0x05, // Partition
|
|
|
|
|
+ 0x00, 0x01, // Error
|
|
|
|
|
+ 0x00, 0x00, 0x00, 0x00, 0x10, 0x10, 0x10, 0x10, // High Watermark Offset
|
|
|
|
|
+ 0x00, 0x00, 0x00, 0x00, 0x10, 0x10, 0x10, 0x10, // Last Stable Offset
|
|
|
|
|
+ 0x00, 0x00, 0x00, 0x00, // Number of Aborted Transactions
|
|
|
|
|
+ 0x00, 0x00, 0x00, 0x1C,
|
|
|
|
|
+ // messageSet
|
|
|
|
|
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x55, 0x00, 0x00,
|
|
|
|
|
+ 0x00, 0x00, 0x00, 0x10,
|
|
|
|
|
+ // message
|
|
|
|
|
+ 0x23, 0x96, 0x4a, 0xf7, // CRC
|
|
|
|
|
+ 0x00,
|
|
|
|
|
+ 0x00,
|
|
|
|
|
+ 0xFF, 0xFF, 0xFF, 0xFF,
|
|
|
|
|
+ 0x00, 0x00, 0x00, 0x02, 0x00, 0xEE}
|
|
|
)
|
|
)
|
|
|
|
|
|
|
|
func TestEmptyFetchResponse(t *testing.T) {
|
|
func TestEmptyFetchResponse(t *testing.T) {
|
|
@@ -173,3 +193,56 @@ func TestOneRecordFetchResponse(t *testing.T) {
|
|
|
t.Error("Decoding produced incorrect record value.")
|
|
t.Error("Decoding produced incorrect record value.")
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
|
|
+func TestOneMessageFetchResponseV4(t *testing.T) {
|
|
|
|
|
+ response := FetchResponse{}
|
|
|
|
|
+ testVersionDecodable(t, "one message v4", &response, oneMessageFetchResponseV4, 4)
|
|
|
|
|
+
|
|
|
|
|
+ if len(response.Blocks) != 1 {
|
|
|
|
|
+ t.Fatal("Decoding produced incorrect number of topic blocks.")
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ if len(response.Blocks["topic"]) != 1 {
|
|
|
|
|
+ t.Fatal("Decoding produced incorrect number of partition blocks for topic.")
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ block := response.GetBlock("topic", 5)
|
|
|
|
|
+ if block == nil {
|
|
|
|
|
+ t.Fatal("GetBlock didn't return block.")
|
|
|
|
|
+ }
|
|
|
|
|
+ if block.Err != ErrOffsetOutOfRange {
|
|
|
|
|
+ t.Error("Decoding didn't produce correct error code.")
|
|
|
|
|
+ }
|
|
|
|
|
+ if block.HighWaterMarkOffset != 0x10101010 {
|
|
|
|
|
+ t.Error("Decoding didn't produce correct high water mark offset.")
|
|
|
|
|
+ }
|
|
|
|
|
+ partial, err := block.Records.isPartial()
|
|
|
|
|
+ if err != nil {
|
|
|
|
|
+ t.Fatalf("Unexpected error: %v", err)
|
|
|
|
|
+ }
|
|
|
|
|
+ if partial {
|
|
|
|
|
+ t.Error("Decoding detected a partial trailing record where there wasn't one.")
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ n, err := block.Records.numRecords()
|
|
|
|
|
+ if err != nil {
|
|
|
|
|
+ t.Fatalf("Unexpected error: %v", err)
|
|
|
|
|
+ }
|
|
|
|
|
+ if n != 1 {
|
|
|
|
|
+ t.Fatal("Decoding produced incorrect number of records.")
|
|
|
|
|
+ }
|
|
|
|
|
+ msgBlock := block.Records.msgSet.Messages[0]
|
|
|
|
|
+ if msgBlock.Offset != 0x550000 {
|
|
|
|
|
+ t.Error("Decoding produced incorrect message offset.")
|
|
|
|
|
+ }
|
|
|
|
|
+ msg := msgBlock.Msg
|
|
|
|
|
+ if msg.Codec != CompressionNone {
|
|
|
|
|
+ t.Error("Decoding produced incorrect message compression.")
|
|
|
|
|
+ }
|
|
|
|
|
+ if msg.Key != nil {
|
|
|
|
|
+ t.Error("Decoding produced message key where there was none.")
|
|
|
|
|
+ }
|
|
|
|
|
+ if !bytes.Equal(msg.Value, []byte{0x00, 0xEE}) {
|
|
|
|
|
+ t.Error("Decoding produced incorrect message value.")
|
|
|
|
|
+ }
|
|
|
|
|
+}
|