forked from segmentio/kafka-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
conn_test.go
566 lines (471 loc) · 11.4 KB
/
conn_test.go
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
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
package kafka
import (
"context"
"fmt"
"io"
"math/rand"
"net"
"strconv"
"testing"
"time"
"golang.org/x/net/nettest"
)
type timeout struct{}
func (*timeout) Error() string { return "timeout" }
func (*timeout) Temporary() bool { return true }
func (*timeout) Timeout() bool { return true }
// connPipe is an adapter that implements the net.Conn interface on top of
// two client kafka connections to pass the nettest.TestConn test suite.
type connPipe struct {
rconn *Conn
wconn *Conn
}
func (c *connPipe) Close() error {
b := [1]byte{} // marker that the connection has been closed
c.wconn.SetWriteDeadline(time.Time{})
c.wconn.Write(b[:])
c.wconn.Close()
c.rconn.Close()
return nil
}
func (c *connPipe) Read(b []byte) (int, error) {
// See comments in Write.
time.Sleep(time.Millisecond)
if t := c.rconn.readDeadline(); !t.IsZero() && t.Sub(time.Now()) <= (10*time.Millisecond) {
return 0, &timeout{}
}
n, err := c.rconn.Read(b)
if n == 1 && b[0] == 0 {
c.rconn.Close()
n, err = 0, io.EOF
}
return n, err
}
func (c *connPipe) Write(b []byte) (int, error) {
// The nettest/ConcurrentMethods test spawns a bunch of goroutines that do
// random stuff on the connection, if a Read or Write was issued before a
// deadline was set then it could cancel an inflight request to kafka,
// resulting in the connection being closed.
// To prevent this from happening we wait a little while to give the other
// goroutines a chance to start and set the deadline.
time.Sleep(time.Millisecond)
// Some tests set very short deadlines which end up aborting requests and
// closing the connection. To prevent this from happening we check how far
// the deadline is and if it's too close we timeout.
if t := c.wconn.writeDeadline(); !t.IsZero() && t.Sub(time.Now()) <= (10*time.Millisecond) {
return 0, &timeout{}
}
return c.wconn.Write(b)
}
func (c *connPipe) LocalAddr() net.Addr {
return c.rconn.LocalAddr()
}
func (c *connPipe) RemoteAddr() net.Addr {
return c.wconn.LocalAddr()
}
func (c *connPipe) SetDeadline(t time.Time) error {
c.rconn.SetDeadline(t)
c.wconn.SetDeadline(t)
return nil
}
func (c *connPipe) SetReadDeadline(t time.Time) error {
return c.rconn.SetReadDeadline(t)
}
func (c *connPipe) SetWriteDeadline(t time.Time) error {
return c.wconn.SetWriteDeadline(t)
}
func init() {
rand.Seed(time.Now().UnixNano())
}
func makeTopic() string {
return fmt.Sprintf("kafka-go-%016x", rand.Int63())
}
func TestConn(t *testing.T) {
t.Parallel()
tests := []struct {
scenario string
function func(*testing.T, *Conn)
}{
{
scenario: "close right away",
function: testConnClose,
},
{
scenario: "ensure the initial offset of a connection is the first offset",
function: testConnFirstOffset,
},
{
scenario: "write a single message to kafka should succeed",
function: testConnWrite,
},
{
scenario: "writing a message to a closed kafka connection should fail",
function: testConnCloseAndWrite,
},
{
scenario: "ensure the connection can seek to the first offset",
function: testConnSeekFirstOffset,
},
{
scenario: "ensure the connection can seek to the last offset",
function: testConnSeekLastOffset,
},
{
scenario: "ensure the connection can seek to a random offset",
function: testConnSeekRandomOffset,
},
{
scenario: "writing and reading messages sequentially should preserve the order",
function: testConnWriteReadSequentially,
},
{
scenario: "writing a batch of messages and reading it sequentially should preserve the order",
function: testConnWriteBatchReadSequentially,
},
{
scenario: "writing and reading messages concurrently should preserve the order",
function: testConnWriteReadConcurrently,
},
{
scenario: "reading messages with a buffer that is too short should return io.ErrShortBuffer and maintain the connection open",
function: testConnReadShortBuffer,
},
{
scenario: "reading messages from an empty partition should timeout after reaching the deadline",
function: testConnReadEmptyWithDeadline,
},
}
const (
tcp = "tcp"
kafka = "localhost:9092"
)
for _, test := range tests {
testFunc := test.function
t.Run(test.scenario, func(t *testing.T) {
t.Parallel()
ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
defer cancel()
topic := makeTopic()
conn, err := (&Dialer{
Resolver: &net.Resolver{},
}).DialLeader(ctx, tcp, kafka, topic, 0)
if err != nil {
t.Fatal("failed to open a new kafka connection:", err)
}
defer conn.Close()
testFunc(t, conn)
})
}
t.Run("nettest", func(t *testing.T) {
t.Parallel()
nettest.TestConn(t, func() (c1 net.Conn, c2 net.Conn, stop func(), err error) {
var topic1 = makeTopic()
var topic2 = makeTopic()
var t1Reader *Conn
var t2Reader *Conn
var t1Writer *Conn
var t2Writer *Conn
var dialer = &Dialer{}
ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
defer cancel()
if t1Reader, err = dialer.DialLeader(ctx, tcp, kafka, topic1, 0); err != nil {
return
}
if t2Reader, err = dialer.DialLeader(ctx, tcp, kafka, topic2, 0); err != nil {
return
}
if t1Writer, err = dialer.DialLeader(ctx, tcp, kafka, topic1, 0); err != nil {
return
}
if t2Writer, err = dialer.DialLeader(ctx, tcp, kafka, topic2, 0); err != nil {
return
}
stop = func() {
t1Reader.Close()
t1Writer.Close()
t2Reader.Close()
t2Writer.Close()
}
c1 = &connPipe{rconn: t1Reader, wconn: t2Writer}
c2 = &connPipe{rconn: t2Reader, wconn: t1Writer}
return
})
})
}
func testConnClose(t *testing.T, conn *Conn) {
if err := conn.Close(); err != nil {
t.Error(err)
}
}
func testConnFirstOffset(t *testing.T, conn *Conn) {
offset, whence := conn.Offset()
if offset != 0 && whence != 0 {
t.Error("bad first offset:", offset, whence)
}
}
func testConnWrite(t *testing.T, conn *Conn) {
b := []byte("Hello World!")
n, err := conn.Write(b)
if err != nil {
t.Error(err)
}
if n != len(b) {
t.Error("bad length returned by (*Conn).Write:", n)
}
}
func testConnCloseAndWrite(t *testing.T, conn *Conn) {
conn.Close()
switch _, err := conn.Write([]byte("Hello World!")); err.(type) {
case *net.OpError:
default:
t.Error(err)
}
}
func testConnSeekFirstOffset(t *testing.T, conn *Conn) {
for i := 0; i != 10; i++ {
if _, err := conn.Write([]byte(strconv.Itoa(i))); err != nil {
t.Fatal(err)
}
}
offset, err := conn.Seek(0, 0)
if err != nil {
t.Error(err)
}
if offset != 0 {
t.Error("bad offset:", offset)
}
}
func testConnSeekLastOffset(t *testing.T, conn *Conn) {
for i := 0; i != 10; i++ {
if _, err := conn.Write([]byte(strconv.Itoa(i))); err != nil {
t.Fatal(err)
}
}
offset, err := conn.Seek(0, 2)
if err != nil {
t.Error(err)
}
if offset != 10 {
t.Error("bad offset:", offset)
}
}
func testConnSeekRandomOffset(t *testing.T, conn *Conn) {
for i := 0; i != 10; i++ {
if _, err := conn.Write([]byte(strconv.Itoa(i))); err != nil {
t.Fatal(err)
}
}
offset, err := conn.Seek(3, 1)
if err != nil {
t.Error(err)
}
if offset != 3 {
t.Error("bad offset:", offset)
}
}
func testConnWriteReadSequentially(t *testing.T, conn *Conn) {
for i := 0; i != 10; i++ {
if _, err := conn.Write([]byte(strconv.Itoa(i))); err != nil {
t.Fatal(err)
}
}
b := make([]byte, 128)
for i := 0; i != 10; i++ {
n, err := conn.Read(b)
if err != nil {
t.Error(err)
continue
}
s := string(b[:n])
if v, err := strconv.Atoi(s); err != nil {
t.Error(err)
} else if v != i {
t.Errorf("bad message read at offset %d: %s", i, s)
}
}
}
func testConnWriteBatchReadSequentially(t *testing.T, conn *Conn) {
if _, err := conn.WriteMessages(makeTestSequence(10)...); err != nil {
t.Fatal(err)
}
for i := 0; i != 10; i++ {
msg, err := conn.ReadMessage(128)
if err != nil {
t.Error(err)
continue
}
s := string(msg.Value)
if v, err := strconv.Atoi(s); err != nil {
t.Error(err)
} else if v != i {
t.Errorf("bad message read at offset %d: %s", i, s)
}
}
}
func testConnWriteReadConcurrently(t *testing.T, conn *Conn) {
const N = 1000
var msgs = make([]string, N)
var done = make(chan struct{})
for i := 0; i != N; i++ {
msgs[i] = strconv.Itoa(i)
}
go func() {
defer close(done)
for _, msg := range msgs {
if _, err := conn.Write([]byte(msg)); err != nil {
t.Error(err)
}
}
}()
b := make([]byte, 128)
for i := 0; i != N; i++ {
n, err := conn.Read(b)
if err != nil {
t.Error(err)
}
if s := string(b[:n]); s != strconv.Itoa(i) {
t.Errorf("bad message read at offset %d: %s", i, s)
}
}
<-done
}
func testConnReadShortBuffer(t *testing.T, conn *Conn) {
if _, err := conn.Write([]byte("Hello World!")); err != nil {
t.Fatal(err)
}
b := make([]byte, 4)
for i := 0; i != 10; i++ {
b[0] = 0
b[1] = 0
b[2] = 0
b[3] = 0
n, err := conn.Read(b)
if err != io.ErrShortBuffer {
t.Error("bad error:", i, err)
}
if n != 4 {
t.Error("bad byte count:", i, n)
}
if s := string(b); s != "Hell" {
t.Error("bad content:", i, s)
}
}
}
func testConnReadEmptyWithDeadline(t *testing.T, conn *Conn) {
b := make([]byte, 100)
start := time.Now()
deadline := start.Add(100 * time.Millisecond)
conn.SetReadDeadline(deadline)
n, err := conn.Read(b)
if n != 0 {
t.Error("bad byte count:", n)
}
if !isTimeout(err) {
t.Error("expected timeout error but got", err)
}
}
func BenchmarkConn(b *testing.B) {
benchmarks := []struct {
scenario string
function func(*testing.B, *Conn, []byte)
}{
{
scenario: "Seek",
function: benchmarkConnSeek,
},
{
scenario: "Read",
function: benchmarkConnRead,
},
{
scenario: "ReadBatch",
function: benchmarkConnReadBatch,
},
{
scenario: "ReadOffsets",
function: benchmarkConnReadOffsets,
},
}
value := make([]byte, 10e3) // 10 KB
msgs := make([]Message, 1000)
for i := range msgs {
msgs[i].Value = value
}
for _, benchmark := range benchmarks {
benchFunc := benchmark.function
b.Run(benchmark.scenario, func(b *testing.B) {
topic := makeTopic()
conn, err := DialLeader(context.Background(), "tcp", "localhost:9092", topic, 0)
if err != nil {
b.Fatal(err)
}
defer conn.Close()
if _, err := conn.WriteMessages(msgs...); err != nil {
b.Fatal(err)
}
b.ResetTimer()
benchFunc(b, conn, value)
})
}
}
func benchmarkConnSeek(b *testing.B, conn *Conn, _ []byte) {
for i := 0; i != b.N; i++ {
if _, err := conn.Seek(int64(i%1000), 1); err != nil {
b.Error(err)
return
}
}
}
func benchmarkConnRead(b *testing.B, conn *Conn, a []byte) {
n := 0
i := 0
for i != b.N {
if (i % 1000) == 0 {
if _, err := conn.Seek(0, 0); err != nil {
b.Error(err)
return
}
}
c, err := conn.Read(a)
if err != nil {
b.Error(err)
return
}
n += c
i++
}
b.SetBytes(int64(n / i))
}
func benchmarkConnReadBatch(b *testing.B, conn *Conn, a []byte) {
const minBytes = 1
const maxBytes = 10e6 // 10 MB
batch := conn.ReadBatch(minBytes, maxBytes)
i := 0
n := 0
for i != b.N {
c, err := batch.Read(a)
if err != nil {
if err = batch.Close(); err != nil {
b.Error(err)
return
}
if _, err = conn.Seek(0, 0); err != nil {
b.Error(err)
return
}
batch = conn.ReadBatch(minBytes, maxBytes)
}
n += c
i++
}
b.SetBytes(int64(n / i))
}
func benchmarkConnReadOffsets(b *testing.B, conn *Conn, _ []byte) {
for i := 0; i != b.N; i++ {
_, _, err := conn.ReadOffsets()
if err != nil {
b.Error(err)
return
}
}
}