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
|
package protocol
import (
"encoding/binary"
"testing"
)
// TestResponseFormatsNoCorrelationID verifies that NO API response includes
// the correlation ID in the response body (it should only be in the wire header)
func TestResponseFormatsNoCorrelationID(t *testing.T) {
tests := []struct {
name string
apiKey uint16
apiVersion uint16
buildFunc func(correlationID uint32) ([]byte, error)
description string
}{
// Control Plane APIs
{
name: "ApiVersions_v0",
apiKey: 18,
apiVersion: 0,
description: "ApiVersions v0 should not include correlation ID in body",
},
{
name: "ApiVersions_v4",
apiKey: 18,
apiVersion: 4,
description: "ApiVersions v4 (flexible) should not include correlation ID in body",
},
{
name: "Metadata_v0",
apiKey: 3,
apiVersion: 0,
description: "Metadata v0 should not include correlation ID in body",
},
{
name: "Metadata_v7",
apiKey: 3,
apiVersion: 7,
description: "Metadata v7 should not include correlation ID in body",
},
{
name: "FindCoordinator_v0",
apiKey: 10,
apiVersion: 0,
description: "FindCoordinator v0 should not include correlation ID in body",
},
{
name: "FindCoordinator_v2",
apiKey: 10,
apiVersion: 2,
description: "FindCoordinator v2 should not include correlation ID in body",
},
{
name: "DescribeConfigs_v0",
apiKey: 32,
apiVersion: 0,
description: "DescribeConfigs v0 should not include correlation ID in body",
},
{
name: "DescribeConfigs_v4",
apiKey: 32,
apiVersion: 4,
description: "DescribeConfigs v4 (flexible) should not include correlation ID in body",
},
{
name: "DescribeCluster_v0",
apiKey: 60,
apiVersion: 0,
description: "DescribeCluster v0 (flexible) should not include correlation ID in body",
},
{
name: "InitProducerId_v0",
apiKey: 22,
apiVersion: 0,
description: "InitProducerId v0 should not include correlation ID in body",
},
{
name: "InitProducerId_v4",
apiKey: 22,
apiVersion: 4,
description: "InitProducerId v4 (flexible) should not include correlation ID in body",
},
// Consumer Group Coordination APIs
{
name: "JoinGroup_v0",
apiKey: 11,
apiVersion: 0,
description: "JoinGroup v0 should not include correlation ID in body",
},
{
name: "SyncGroup_v0",
apiKey: 14,
apiVersion: 0,
description: "SyncGroup v0 should not include correlation ID in body",
},
{
name: "Heartbeat_v0",
apiKey: 12,
apiVersion: 0,
description: "Heartbeat v0 should not include correlation ID in body",
},
{
name: "LeaveGroup_v0",
apiKey: 13,
apiVersion: 0,
description: "LeaveGroup v0 should not include correlation ID in body",
},
{
name: "OffsetFetch_v0",
apiKey: 9,
apiVersion: 0,
description: "OffsetFetch v0 should not include correlation ID in body",
},
{
name: "OffsetCommit_v0",
apiKey: 8,
apiVersion: 0,
description: "OffsetCommit v0 should not include correlation ID in body",
},
// Data Plane APIs
{
name: "Produce_v0",
apiKey: 0,
apiVersion: 0,
description: "Produce v0 should not include correlation ID in body",
},
{
name: "Produce_v7",
apiKey: 0,
apiVersion: 7,
description: "Produce v7 should not include correlation ID in body",
},
{
name: "Fetch_v0",
apiKey: 1,
apiVersion: 0,
description: "Fetch v0 should not include correlation ID in body",
},
{
name: "Fetch_v7",
apiKey: 1,
apiVersion: 7,
description: "Fetch v7 should not include correlation ID in body",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
t.Logf("Testing %s: %s", tt.name, tt.description)
// This test documents the EXPECTATION but can't automatically verify
// all responses without implementing mock handlers for each API.
// The key insight is: ALL responses should be checked manually
// or with integration tests.
t.Logf("✓ API Key %d Version %d: Correlation ID should be handled by writeResponseWithHeader",
tt.apiKey, tt.apiVersion)
})
}
}
// TestFlexibleResponseHeaderFormat verifies that flexible responses
// include the 0x00 tagged fields byte in the header
func TestFlexibleResponseHeaderFormat(t *testing.T) {
tests := []struct {
name string
apiKey uint16
apiVersion uint16
isFlexible bool
}{
// ApiVersions is special - never flexible header (AdminClient compatibility)
{"ApiVersions_v0", 18, 0, false},
{"ApiVersions_v3", 18, 3, false}, // Special case!
{"ApiVersions_v4", 18, 4, false}, // Special case!
// Metadata becomes flexible at v9+
{"Metadata_v0", 3, 0, false},
{"Metadata_v7", 3, 7, false},
{"Metadata_v9", 3, 9, true},
// Produce becomes flexible at v9+
{"Produce_v0", 0, 0, false},
{"Produce_v7", 0, 7, false},
{"Produce_v9", 0, 9, true},
// Fetch becomes flexible at v12+
{"Fetch_v0", 1, 0, false},
{"Fetch_v7", 1, 7, false},
{"Fetch_v12", 1, 12, true},
// FindCoordinator becomes flexible at v3+
{"FindCoordinator_v0", 10, 0, false},
{"FindCoordinator_v2", 10, 2, false},
{"FindCoordinator_v3", 10, 3, true},
// JoinGroup becomes flexible at v6+
{"JoinGroup_v0", 11, 0, false},
{"JoinGroup_v5", 11, 5, false},
{"JoinGroup_v6", 11, 6, true},
// SyncGroup becomes flexible at v4+
{"SyncGroup_v0", 14, 0, false},
{"SyncGroup_v3", 14, 3, false},
{"SyncGroup_v4", 14, 4, true},
// Heartbeat becomes flexible at v4+
{"Heartbeat_v0", 12, 0, false},
{"Heartbeat_v3", 12, 3, false},
{"Heartbeat_v4", 12, 4, true},
// LeaveGroup becomes flexible at v4+
{"LeaveGroup_v0", 13, 0, false},
{"LeaveGroup_v3", 13, 3, false},
{"LeaveGroup_v4", 13, 4, true},
// OffsetFetch becomes flexible at v6+
{"OffsetFetch_v0", 9, 0, false},
{"OffsetFetch_v5", 9, 5, false},
{"OffsetFetch_v6", 9, 6, true},
// OffsetCommit becomes flexible at v8+
{"OffsetCommit_v0", 8, 0, false},
{"OffsetCommit_v7", 8, 7, false},
{"OffsetCommit_v8", 8, 8, true},
// DescribeConfigs becomes flexible at v4+
{"DescribeConfigs_v0", 32, 0, false},
{"DescribeConfigs_v3", 32, 3, false},
{"DescribeConfigs_v4", 32, 4, true},
// InitProducerId becomes flexible at v2+
{"InitProducerId_v0", 22, 0, false},
{"InitProducerId_v1", 22, 1, false},
{"InitProducerId_v2", 22, 2, true},
// DescribeCluster is always flexible
{"DescribeCluster_v0", 60, 0, true},
{"DescribeCluster_v1", 60, 1, true},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
actual := isFlexibleResponse(tt.apiKey, tt.apiVersion)
if actual != tt.isFlexible {
t.Errorf("%s: isFlexibleResponse(%d, %d) = %v, want %v",
tt.name, tt.apiKey, tt.apiVersion, actual, tt.isFlexible)
} else {
t.Logf("✓ %s: correctly identified as flexible=%v", tt.name, tt.isFlexible)
}
})
}
}
// TestCorrelationIDNotInResponseBody is a helper that can be used
// to scan response bytes and detect if correlation ID appears in the body
func TestCorrelationIDNotInResponseBody(t *testing.T) {
// Test helper function
hasCorrelationIDInBody := func(responseBody []byte, correlationID uint32) bool {
if len(responseBody) < 4 {
return false
}
// Check if the first 4 bytes match the correlation ID
actual := binary.BigEndian.Uint32(responseBody[0:4])
return actual == correlationID
}
t.Run("DetectCorrelationIDInBody", func(t *testing.T) {
correlationID := uint32(12345)
// Case 1: Response with correlation ID (BAD)
badResponse := make([]byte, 8)
binary.BigEndian.PutUint32(badResponse[0:4], correlationID)
badResponse[4] = 0x00 // some data
if !hasCorrelationIDInBody(badResponse, correlationID) {
t.Error("Failed to detect correlation ID in response body")
} else {
t.Log("✓ Successfully detected correlation ID in body (bad response)")
}
// Case 2: Response without correlation ID (GOOD)
goodResponse := make([]byte, 8)
goodResponse[0] = 0x00 // error code
goodResponse[1] = 0x00
if hasCorrelationIDInBody(goodResponse, correlationID) {
t.Error("False positive: detected correlation ID when it's not there")
} else {
t.Log("✓ Correctly identified response without correlation ID")
}
})
}
// TestWireProtocolFormat documents the expected wire format
func TestWireProtocolFormat(t *testing.T) {
t.Log("Kafka Wire Protocol Format (KIP-482):")
t.Log(" Non-flexible responses:")
t.Log(" [Size: 4 bytes][Correlation ID: 4 bytes][Response Body]")
t.Log("")
t.Log(" Flexible responses (header version 1+):")
t.Log(" [Size: 4 bytes][Correlation ID: 4 bytes][Tagged Fields: 1+ bytes][Response Body]")
t.Log("")
t.Log(" Size field: includes correlation ID + tagged fields + body")
t.Log(" Tagged Fields: varint-encoded, 0x00 for empty")
t.Log("")
t.Log("CRITICAL: Response body should NEVER include correlation ID!")
t.Log(" It is written ONLY by writeResponseWithHeader")
}
|