-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpgqueue_test.go
498 lines (401 loc) · 12.1 KB
/
pgqueue_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
package pgqueue
import (
"context"
"errors"
"fmt"
"testing"
"github.com/canastic/chantest"
"github.com/canastic/pgqueue/stopcontext"
"github.com/stretchr/testify/assert"
"github.com/tcard/gock"
)
func TestSubscribe(t *testing.T) {
drivers := map[string]*testSubscriptionDriver{}
consumers := map[string]func(context.Context, GetHandler) error{}
for _, sub := range []string{"subA", "subB"} {
d := newTestSubscriptionDriver()
drivers[sub] = d
go func() {
chantest.AssertRecv(t, d.insertSubscriptionCalls).(chan<- error) <- nil
}()
var err error
consumers[sub], err = Subscribe(context.Background(), d)
assert.Nil(t, err)
}
type opSource string
const (
opSourceIncoming = "incoming"
opSourcePending = "pending"
)
type op struct {
sub string
source opSource
msg string
}
ops := []*op{
{"subA", opSourceIncoming, ""},
{"subA", opSourcePending, ""},
{"subB", opSourcePending, ""},
{"subB", opSourceIncoming, ""},
{"subB", opSourceIncoming, ""},
{"subA", opSourcePending, ""},
{"subB", opSourceIncoming, ""},
{"subB", opSourcePending, ""},
}
for i, op := range ops {
op.msg = fmt.Sprintf("msg %d -> %s.%s", i, op.sub, op.source)
var src chan msgWithAck
switch op.source {
case opSourceIncoming:
src = drivers[op.sub].incoming
case opSourcePending:
src = drivers[op.sub].pending
default:
panic(op.source)
}
src <- msgWithAck{op.msg, OK}
}
for _, sub := range []string{"subA", "subB"} {
handled := make(chan testHandled)
stopConsumer := start(context.Background(), func(ctx context.Context) {
consumers[sub](ctx, func() (unwrapInto interface{}, handle HandleFunc) {
var msg fakeMessage
return &msg, func(ctx context.Context) (context.Context, Ack) {
ack := make(chan Ack)
handled <- testHandled{msg.payload, ack}
return ctx, <-ack
}
})
})
doOp := func(op *op) {
h := chantest.AssertRecv(t, handled).(testHandled)
assert.Equal(t, op.msg, h.msg)
chantest.AssertSend(t, h.ack, OK)
acked := chantest.AssertRecv(t, drivers[sub].acks).(msgWithAck)
assert.Equal(t, h.msg, acked.msg)
assert.Equal(t, OK, acked.ack)
}
for _, op := range ops {
if op.sub == sub && op.source == opSourcePending {
doOp(op)
}
}
close(drivers[sub].pending)
for _, op := range ops {
if op.sub == sub && op.source == opSourceIncoming {
doOp(op)
}
}
chantest.Expect(t, stopConsumer)
}
}
func TestRequeueOnCrash(t *testing.T) {
driver := newTestSubscriptionDriver()
go func() {
chantest.AssertRecv(t, driver.insertSubscriptionCalls).(chan<- error) <- nil
}()
consumer, err := Subscribe(context.Background(), driver)
assert.Nil(t, err)
stopConsumer := start(context.Background(), func(ctx context.Context) {
err := consumer(ctx, func() (unwrapInto interface{}, handle HandleFunc) {
panic("oops")
})
assert.NotNil(t, err)
assert.True(t, gock.AnyAs(err, &Panic{}))
})
chantest.AssertSend(t, driver.pending, msgWithAck{})
assert.Equal(t, Requeue, chantest.AssertRecv(t, driver.acks).(msgWithAck).ack)
chantest.Expect(t, stopConsumer)
}
func TestListenBeforeFetchingPending(t *testing.T) {
listenShouldReturn := make(chan struct{})
fetchCalled := make(chan struct{})
m := (&SubscriptionDriverMocker{}).Describe()
m = m.InsertSubscription().TakesAny().Returns(nil).Times(1)
m = m.ListenForDeliveries().TakesAny().ReturnsFrom(func(context.Context) (AcceptFunc, func() error, error) {
<-listenShouldReturn
return func(ctx context.Context, yield func(Delivery)) error {
return nil
}, func() error { return nil }, nil
}).Times(1)
m = m.FetchPendingDeliveries().TakesAny().AndAny().ReturnsFrom(func(context.Context, func(Delivery)) error {
fetchCalled <- struct{}{}
return nil
}).Times(1)
driver, assertMock := m.Mock()
defer assertMock(t)
consume, err := Subscribe(context.Background(), driver)
assert.NoError(t, err)
ctx, cancel := context.WithCancel(context.Background())
stopConsuming := start(ctx, func(ctx context.Context) {
consume(ctx, func() (unwrapInto interface{}, handle HandleFunc) {
panic("unexpected")
})
})
chantest.AssertNoRecv(t, fetchCalled)
listenShouldReturn <- struct{}{}
chantest.AssertRecv(t, fetchCalled)
cancel()
chantest.Expect(t, stopConsuming)
}
func TestErrorOnInsert(t *testing.T) {
expectedErr := errors.New("oops")
driver, assertMock := (&SubscriptionDriverMocker{}).Describe().
InsertSubscription().TakesAny().Returns(expectedErr).Times(1).
Mock()
defer assertMock(t)
_, err := Subscribe(context.Background(), driver)
assert.True(t, errors.Is(err, expectedErr), err)
}
func TestErrorOnListen(t *testing.T) {
expectedErr := errors.New("oops")
driver, assertMock := (&SubscriptionDriverMocker{}).Describe().
InsertSubscription().TakesAny().Returns(nil).Times(1).
ListenForDeliveries().TakesAny().Returns(nil, nil, expectedErr).Times(1).
Mock()
defer assertMock(t)
consume, err := Subscribe(context.Background(), driver)
assert.NoError(t, err)
err = consume(context.Background(), nil)
assert.True(t, errors.Is(err, expectedErr), err)
}
func TestErrorOnFetchPending(t *testing.T) {
expectedErr := errors.New("oops")
m := (&SubscriptionDriverMocker{}).Describe().
InsertSubscription().TakesAny().Returns(nil).Times(1)
m = m.ListenForDeliveries().TakesAny().Returns(func(ctx context.Context, yield func(Delivery)) error {
return nil
}, func() error { return nil }, nil).Times(1)
m = m.FetchPendingDeliveries().TakesAny().AndAny().Returns(expectedErr).Times(1)
driver, assertMock := m.Mock()
defer assertMock(t)
consume, err := Subscribe(context.Background(), driver)
assert.NoError(t, err)
err = consume(context.Background(), nil)
assert.True(t, errors.Is(err, expectedErr), err)
}
func TestErrorOnAccept(t *testing.T) {
expectedErr := errors.New("oops")
m := (&SubscriptionDriverMocker{}).Describe().
InsertSubscription().TakesAny().Returns(nil).Times(1)
m = m.ListenForDeliveries().TakesAny().Returns(func(ctx context.Context, _ func(Delivery)) error {
return expectedErr
}, func() error { return nil }, nil).Times(1)
m = m.FetchPendingDeliveries().TakesAny().AndAny().Returns(nil).Times(1)
driver, assertMock := m.Mock()
defer assertMock(t)
consume, err := Subscribe(context.Background(), driver)
assert.NoError(t, err)
err = consume(context.Background(), nil)
assert.True(t, errors.Is(err, expectedErr), err)
}
func TestErrorOnUnwrap(t *testing.T) {
expectedErr := errors.New("oops")
m := (&SubscriptionDriverMocker{}).Describe().
InsertSubscription().TakesAny().Returns(nil).Times(1)
m = m.ListenForDeliveries().TakesAny().Returns(func(ctx context.Context, yield func(Delivery)) error {
requeueCalled := 0
defer func() {
assert.Equal(t, 1, requeueCalled)
}()
for {
select {
case <-stopcontext.Stopped(ctx):
return nil
default:
}
yield(Delivery{
Unwrap: func(interface{}) error {
return expectedErr
},
Requeue: func(context.Context) error {
requeueCalled++
return nil
},
})
}
}, func() error { return nil }, nil).Times(1)
m = m.FetchPendingDeliveries().TakesAny().AndAny().Returns(nil).Times(1)
driver, assertMock := m.Mock()
defer assertMock(t)
consume, err := Subscribe(context.Background(), driver)
assert.NoError(t, err)
err = consume(context.Background(), func() (unwrapInto interface{}, handle HandleFunc) {
return nil, nil
})
assert.True(t, errors.Is(err, expectedErr), err)
}
func TestErrorOnAckError(t *testing.T) {
run := func(t *testing.T, ack Ack, unwrapErr bool) {
t.Helper()
oops := errors.New("oops")
ackErr := errors.New("ack error")
d := Delivery{}
expectedErr := ackErr
if unwrapErr {
expectedErr = oops
d.Unwrap = func(interface{}) error { return oops }
} else {
d.Unwrap = func(interface{}) error { return nil }
}
ackCalled := 0
defer func() {
assert.Equal(t, 1, ackCalled)
}()
ackFunc := func(context.Context) error {
ackCalled++
return ackErr
}
if ack == OK && !unwrapErr {
d.OK = ackFunc
} else {
d.Requeue = ackFunc
}
m := (&SubscriptionDriverMocker{}).Describe().
InsertSubscription().TakesAny().Returns(nil).Times(1)
m = m.ListenForDeliveries().TakesAny().Returns(func(ctx context.Context, yield func(Delivery)) error {
for {
select {
case <-stopcontext.Stopped(ctx):
return ctx.Err()
default:
}
yield(d)
}
}, func() error { return nil }, nil).Times(1)
m = m.FetchPendingDeliveries().TakesAny().AndAny().Returns(nil).Times(1)
driver, assertMock := m.Mock()
defer assertMock(t)
consume, err := Subscribe(context.Background(), driver)
assert.NoError(t, err)
err = consume(context.Background(), func() (unwrapInto interface{}, handle HandleFunc) {
return nil, func(ctx context.Context) (context.Context, Ack) {
return ctx, ack
}
})
assert.True(t, errors.Is(err, expectedErr), err)
}
for _, ack := range []Ack{OK, Requeue} {
for _, unwrapErr := range []bool{false, true} {
t.Run(fmt.Sprintf("ok=%v;unwrapErr=%v", ack, unwrapErr), func(t *testing.T) {
run(t, ack, unwrapErr)
})
}
}
}
func ErrorOnRequeue(t *testing.T) {
m := (&SubscriptionDriverMocker{}).Describe().
InsertSubscription().TakesAny().Returns(nil).Times(1)
m = m.ListenForDeliveries().TakesAny().Returns(func(ctx context.Context, yield func(Delivery)) error {
requeueCalled := 0
defer func() {
assert.Equal(t, 1, requeueCalled)
}()
for {
select {
case <-stopcontext.Stopped(ctx):
return ctx.Err()
default:
}
yield(Delivery{
Unwrap: func(interface{}) error {
return nil
},
Requeue: func(context.Context) error {
requeueCalled++
return nil
},
})
}
}, func() error { return nil }, nil).Times(1)
m = m.FetchPendingDeliveries().TakesAny().AndAny().Returns(nil).Times(1)
driver, assertMock := m.Mock()
defer assertMock(t)
consume, err := Subscribe(context.Background(), driver)
assert.NoError(t, err)
err = consume(context.Background(), func() (unwrapInto interface{}, handle HandleFunc) {
return nil, func(ctx context.Context) (context.Context, Ack) {
return ctx, Requeue
}
})
assert.True(t, errors.Is(err, ErrRequeued), err)
}
type fakeMessage struct {
payload string
}
type msgWithAck struct {
msg string
ack Ack
}
type testHandled struct {
msg string
ack chan<- Ack
}
type testSubscriptionDriver struct {
acks chan msgWithAck
incoming chan msgWithAck
pending chan msgWithAck
insertSubscriptionCalls chan (chan<- error)
}
func newTestSubscriptionDriver() *testSubscriptionDriver {
return &testSubscriptionDriver{
acks: make(chan msgWithAck),
incoming: make(chan msgWithAck, 9999),
pending: make(chan msgWithAck, 9999),
insertSubscriptionCalls: make(chan (chan<- error), 1),
}
}
func (d *testSubscriptionDriver) InsertSubscription(context.Context) error {
ch := make(chan error)
d.insertSubscriptionCalls <- ch
return <-ch
}
func (d *testSubscriptionDriver) FetchPendingDeliveries(ctx context.Context, yield func(Delivery)) error {
return d.forward(ctx, yield, d.pending)
}
func (d *testSubscriptionDriver) ListenForDeliveries(ctx context.Context) (accept AcceptFunc, close func() error, err error) {
return func(ctx context.Context, yield func(Delivery)) error {
return d.forward(ctx, yield, d.incoming)
}, func() error { return nil }, nil
}
func (d *testSubscriptionDriver) forward(ctx context.Context, yield func(Delivery), from <-chan msgWithAck) error {
for {
select {
case <-ctx.Done():
return nil
case del, ok := <-from:
if !ok {
return nil
}
yield(testDelivery(del.msg, d.acks))
}
}
}
func testDelivery(msg string, onAck chan<- msgWithAck) Delivery {
return Delivery{
Unwrap: func(into interface{}) error {
into.(*fakeMessage).payload = msg
return nil
},
OK: func(ctx context.Context) error {
onAck <- msgWithAck{msg, OK}
return nil
},
Requeue: func(ctx context.Context) error {
onAck <- msgWithAck{msg, Requeue}
return nil
},
}
}
func start(ctx context.Context, f func(context.Context)) (stop func()) {
ctx, cancel := context.WithCancel(ctx)
done := make(chan struct{})
go func() {
defer close(done)
f(ctx)
}()
return func() {
cancel()
<-done
}
}