aboutsummaryrefslogtreecommitdiff
path: root/weed/mq/kafka/schema/envelope_test.go
blob: 24f16ee44e92454ee31657fff8a61b5fca1518e7 (plain)
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
package schema

import (
	"encoding/binary"
	"testing"
)

func TestParseConfluentEnvelope(t *testing.T) {
	tests := []struct {
		name         string
		input        []byte
		expectOK     bool
		expectID     uint32
		expectFormat Format
	}{
		{
			name:         "valid Avro message",
			input:        []byte{0x00, 0x00, 0x00, 0x00, 0x01, 0x10, 0x48, 0x65, 0x6c, 0x6c, 0x6f}, // schema ID 1 + "Hello"
			expectOK:     true,
			expectID:     1,
			expectFormat: FormatAvro,
		},
		{
			name:         "valid message with larger schema ID",
			input:        []byte{0x00, 0x00, 0x00, 0x04, 0xd2, 0x02, 0x66, 0x6f, 0x6f}, // schema ID 1234 + "foo"
			expectOK:     true,
			expectID:     1234,
			expectFormat: FormatAvro,
		},
		{
			name:     "too short message",
			input:    []byte{0x00, 0x00, 0x00},
			expectOK: false,
		},
		{
			name:     "no magic byte",
			input:    []byte{0x01, 0x00, 0x00, 0x00, 0x01, 0x48, 0x65, 0x6c, 0x6c, 0x6f},
			expectOK: false,
		},
		{
			name:     "empty message",
			input:    []byte{},
			expectOK: false,
		},
		{
			name:         "minimal valid message",
			input:        []byte{0x00, 0x00, 0x00, 0x00, 0x01}, // schema ID 1, empty payload
			expectOK:     true,
			expectID:     1,
			expectFormat: FormatAvro,
		},
	}

	for _, tt := range tests {
		t.Run(tt.name, func(t *testing.T) {
			envelope, ok := ParseConfluentEnvelope(tt.input)

			if ok != tt.expectOK {
				t.Errorf("ParseConfluentEnvelope() ok = %v, want %v", ok, tt.expectOK)
				return
			}

			if !tt.expectOK {
				return // No need to check further if we expected failure
			}

			if envelope.SchemaID != tt.expectID {
				t.Errorf("ParseConfluentEnvelope() schemaID = %v, want %v", envelope.SchemaID, tt.expectID)
			}

			if envelope.Format != tt.expectFormat {
				t.Errorf("ParseConfluentEnvelope() format = %v, want %v", envelope.Format, tt.expectFormat)
			}

			// Verify payload extraction
			expectedPayloadLen := len(tt.input) - 5 // 5 bytes for magic + schema ID
			if len(envelope.Payload) != expectedPayloadLen {
				t.Errorf("ParseConfluentEnvelope() payload length = %v, want %v", len(envelope.Payload), expectedPayloadLen)
			}
		})
	}
}

func TestIsSchematized(t *testing.T) {
	tests := []struct {
		name   string
		input  []byte
		expect bool
	}{
		{
			name:   "schematized message",
			input:  []byte{0x00, 0x00, 0x00, 0x00, 0x01, 0x48, 0x65, 0x6c, 0x6c, 0x6f},
			expect: true,
		},
		{
			name:   "non-schematized message",
			input:  []byte{0x48, 0x65, 0x6c, 0x6c, 0x6f}, // Just "Hello"
			expect: false,
		},
		{
			name:   "empty message",
			input:  []byte{},
			expect: false,
		},
	}

	for _, tt := range tests {
		t.Run(tt.name, func(t *testing.T) {
			result := IsSchematized(tt.input)
			if result != tt.expect {
				t.Errorf("IsSchematized() = %v, want %v", result, tt.expect)
			}
		})
	}
}

func TestExtractSchemaID(t *testing.T) {
	tests := []struct {
		name     string
		input    []byte
		expectID uint32
		expectOK bool
	}{
		{
			name:     "valid schema ID",
			input:    []byte{0x00, 0x00, 0x00, 0x00, 0x01, 0x48, 0x65, 0x6c, 0x6c, 0x6f},
			expectID: 1,
			expectOK: true,
		},
		{
			name:     "large schema ID",
			input:    []byte{0x00, 0x00, 0x00, 0x04, 0xd2, 0x02, 0x66, 0x6f, 0x6f},
			expectID: 1234,
			expectOK: true,
		},
		{
			name:     "no magic byte",
			input:    []byte{0x01, 0x00, 0x00, 0x00, 0x01},
			expectID: 0,
			expectOK: false,
		},
		{
			name:     "too short",
			input:    []byte{0x00, 0x00},
			expectID: 0,
			expectOK: false,
		},
	}

	for _, tt := range tests {
		t.Run(tt.name, func(t *testing.T) {
			id, ok := ExtractSchemaID(tt.input)

			if ok != tt.expectOK {
				t.Errorf("ExtractSchemaID() ok = %v, want %v", ok, tt.expectOK)
			}

			if id != tt.expectID {
				t.Errorf("ExtractSchemaID() id = %v, want %v", id, tt.expectID)
			}
		})
	}
}

func TestCreateConfluentEnvelope(t *testing.T) {
	tests := []struct {
		name     string
		format   Format
		schemaID uint32
		indexes  []int
		payload  []byte
		expected []byte
	}{
		{
			name:     "simple Avro message",
			format:   FormatAvro,
			schemaID: 1,
			indexes:  nil,
			payload:  []byte("Hello"),
			expected: []byte{0x00, 0x00, 0x00, 0x00, 0x01, 0x48, 0x65, 0x6c, 0x6c, 0x6f},
		},
		{
			name:     "large schema ID",
			format:   FormatAvro,
			schemaID: 1234,
			indexes:  nil,
			payload:  []byte("foo"),
			expected: []byte{0x00, 0x00, 0x00, 0x04, 0xd2, 0x66, 0x6f, 0x6f},
		},
		{
			name:     "empty payload",
			format:   FormatAvro,
			schemaID: 5,
			indexes:  nil,
			payload:  []byte{},
			expected: []byte{0x00, 0x00, 0x00, 0x00, 0x05},
		},
	}

	for _, tt := range tests {
		t.Run(tt.name, func(t *testing.T) {
			result := CreateConfluentEnvelope(tt.format, tt.schemaID, tt.indexes, tt.payload)

			if len(result) != len(tt.expected) {
				t.Errorf("CreateConfluentEnvelope() length = %v, want %v", len(result), len(tt.expected))
				return
			}

			for i, b := range result {
				if b != tt.expected[i] {
					t.Errorf("CreateConfluentEnvelope() byte[%d] = %v, want %v", i, b, tt.expected[i])
				}
			}
		})
	}
}

func TestEnvelopeValidate(t *testing.T) {
	tests := []struct {
		name      string
		envelope  *ConfluentEnvelope
		expectErr bool
	}{
		{
			name: "valid Avro envelope",
			envelope: &ConfluentEnvelope{
				Format:   FormatAvro,
				SchemaID: 1,
				Payload:  []byte("Hello"),
			},
			expectErr: false,
		},
		{
			name: "zero schema ID",
			envelope: &ConfluentEnvelope{
				Format:   FormatAvro,
				SchemaID: 0,
				Payload:  []byte("Hello"),
			},
			expectErr: true,
		},
		{
			name: "empty payload",
			envelope: &ConfluentEnvelope{
				Format:   FormatAvro,
				SchemaID: 1,
				Payload:  []byte{},
			},
			expectErr: true,
		},
		{
			name: "unknown format",
			envelope: &ConfluentEnvelope{
				Format:   FormatUnknown,
				SchemaID: 1,
				Payload:  []byte("Hello"),
			},
			expectErr: true,
		},
	}

	for _, tt := range tests {
		t.Run(tt.name, func(t *testing.T) {
			err := tt.envelope.Validate()

			if (err != nil) != tt.expectErr {
				t.Errorf("Envelope.Validate() error = %v, expectErr %v", err, tt.expectErr)
			}
		})
	}
}

func TestEnvelopeMetadata(t *testing.T) {
	envelope := &ConfluentEnvelope{
		Format:   FormatAvro,
		SchemaID: 123,
		Indexes:  []int{1, 2, 3},
		Payload:  []byte("test"),
	}

	metadata := envelope.Metadata()

	if metadata["schema_format"] != "AVRO" {
		t.Errorf("Expected schema_format=AVRO, got %s", metadata["schema_format"])
	}

	if metadata["schema_id"] != "123" {
		t.Errorf("Expected schema_id=123, got %s", metadata["schema_id"])
	}

	if metadata["protobuf_indexes"] != "1,2,3" {
		t.Errorf("Expected protobuf_indexes=1,2,3, got %s", metadata["protobuf_indexes"])
	}
}

// Benchmark tests for performance
func BenchmarkParseConfluentEnvelope(b *testing.B) {
	// Create a test message
	testMsg := make([]byte, 1024)
	testMsg[0] = 0x00                             // Magic byte
	binary.BigEndian.PutUint32(testMsg[1:5], 123) // Schema ID
	// Fill rest with dummy data
	for i := 5; i < len(testMsg); i++ {
		testMsg[i] = byte(i % 256)
	}

	b.ResetTimer()
	for i := 0; i < b.N; i++ {
		_, _ = ParseConfluentEnvelope(testMsg)
	}
}

func BenchmarkIsSchematized(b *testing.B) {
	testMsg := []byte{0x00, 0x00, 0x00, 0x00, 0x01, 0x48, 0x65, 0x6c, 0x6c, 0x6f}

	b.ResetTimer()
	for i := 0; i < b.N; i++ {
		_ = IsSchematized(testMsg)
	}
}