Browse Source

Test offset responses

Evan Huus 12 years ago
parent
commit
01ee4b86d1
1 changed files with 59 additions and 0 deletions
  1. 59 0
      protocol/offset_response_test.go

+ 59 - 0
protocol/offset_response_test.go

@@ -0,0 +1,59 @@
+package protocol
+
+import "testing"
+
+var (
+	emptyOffsetResponse = []byte{
+		0x00, 0x00, 0x00, 0x00}
+
+	normalOffsetResponse = []byte{
+		0x00, 0x00, 0x00, 0x02,
+
+		0x00, 0x01, 'a',
+		0x00, 0x00, 0x00, 0x00,
+
+		0x00, 0x01, 'z',
+		0x00, 0x00, 0x00, 0x01,
+		0x00, 0x00, 0x00, 0x02,
+		0x00, 0x00,
+		0x00, 0x00, 0x00, 0x02,
+		0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05,
+		0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06}
+)
+
+func TestEmptyOffsetResponse(t *testing.T) {
+	response := OffsetResponse{}
+
+	testDecodable(t, "empty", &response, emptyOffsetResponse)
+	if len(response.Blocks) != 0 {
+		t.Error("Decoding produced", len(response.Blocks), "topics where there were none.")
+	}
+}
+
+func TestNormalOffsetResponse(t *testing.T) {
+	response := OffsetResponse{}
+
+	testDecodable(t, "normal", &response, normalOffsetResponse)
+	if len(response.Blocks) == 2 {
+		if len(response.Blocks["a"]) != 0 {
+			t.Error("Decoding produced", len(response.Blocks["a"]), "partitions for topic 'a' where there were none.")
+		}
+
+		if len(response.Blocks["z"]) == 1 {
+			if response.Blocks["z"][2].Err != NO_ERROR {
+				t.Error("Decoding produced invalid error for topic z partition 2.")
+			}
+			if len(response.Blocks["z"][2].Offsets) == 2 {
+				if response.Blocks["z"][2].Offsets[0] != 5 || response.Blocks["z"][2].Offsets[1] != 6 {
+					t.Error("Decoding produced invalid offsets for topic z partition 2.")
+				}
+			} else {
+				t.Error("Decoding produced invalid number of offsets for topic z partition 2.")
+			}
+		} else {
+			t.Error("Decoding produced", len(response.Blocks["z"]), "partitions for topic 'z' where there was one.")
+		}
+	} else {
+		t.Error("Decoding produced", len(response.Blocks), "topics where there were two.")
+	}
+}