-
Notifications
You must be signed in to change notification settings - Fork 21
/
processor_test.go
622 lines (579 loc) · 23.2 KB
/
processor_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
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
package shuttle_test
import (
"context"
"fmt"
"testing"
"time"
"github.com/Azure/azure-sdk-for-go/sdk/azcore/to"
"github.com/Azure/azure-sdk-for-go/sdk/azidentity"
"github.com/Azure/azure-sdk-for-go/sdk/messaging/azservicebus"
. "github.com/onsi/gomega"
"github.com/stretchr/testify/require"
"github.com/Azure/go-shuttle/v2"
)
func MyHandler(timePerMessage time.Duration) shuttle.HandlerFunc {
return func(ctx context.Context, settler shuttle.MessageSettler, message *azservicebus.ReceivedMessage) {
// logic
time.Sleep(timePerMessage)
err := settler.CompleteMessage(ctx, message, nil)
if err != nil {
panic(err)
}
}
}
func ExampleProcessor() {
tokenCredential, err := azidentity.NewDefaultAzureCredential(nil)
if err != nil {
panic(err)
}
client, err := azservicebus.NewClient("myservicebus.servicebus.windows.net", tokenCredential, nil)
if err != nil {
panic(err)
}
receiver, err := client.NewReceiverForSubscription("topic-a", "sub-a", nil)
if err != nil {
panic(err)
}
lockRenewalInterval := 10 * time.Second
lockRenewalOptions := &shuttle.LockRenewalOptions{Interval: &lockRenewalInterval}
p := shuttle.NewProcessor(receiver,
shuttle.NewPanicHandler(nil,
shuttle.NewRenewLockHandler(lockRenewalOptions,
MyHandler(0*time.Second))),
&shuttle.ProcessorOptions{
MaxConcurrency: 10,
StartMaxAttempt: 5,
},
)
ctx, cancel := context.WithCancel(context.Background())
err = p.Start(ctx)
if err != nil {
panic(err)
}
cancel()
}
func ExampleProcessor_multiProcessor() {
tokenCredential, err := azidentity.NewDefaultAzureCredential(nil)
if err != nil {
panic(err)
}
client, err := azservicebus.NewClient("myservicebus-1.servicebus.windows.net", tokenCredential, nil)
if err != nil {
panic(err)
}
receiver1, err := client.NewReceiverForSubscription("topic-a", "sub-a", nil)
if err != nil {
panic(err)
}
client, err = azservicebus.NewClient("myservicebus-2.servicebus.windows.net", tokenCredential, nil)
if err != nil {
panic(err)
}
receiver2, err := client.NewReceiverForSubscription("topic-a", "sub-a", nil)
if err != nil {
panic(err)
}
receivers := []*shuttle.ReceiverEx{
shuttle.NewReceiverEx("receiver1", receiver1),
shuttle.NewReceiverEx("receiver2", receiver2),
}
lockRenewalInterval := 10 * time.Second
lockRenewalOptions := &shuttle.LockRenewalOptions{Interval: &lockRenewalInterval}
p := shuttle.NewMultiProcessor(receivers,
shuttle.NewPanicHandler(nil,
shuttle.NewRenewLockHandler(lockRenewalOptions,
MyHandler(0*time.Second))),
&shuttle.ProcessorOptions{
MaxConcurrency: 10,
StartMaxAttempt: 5,
},
)
ctx, cancel := context.WithCancel(context.Background())
err = p.Start(ctx)
if err != nil {
panic(err)
}
cancel()
}
func TestProcessorStart_DefaultsToMaxConcurrency1(t *testing.T) {
a := require.New(t)
messages := make(chan *azservicebus.ReceivedMessage, 1)
messages <- &azservicebus.ReceivedMessage{}
close(messages)
rcv := &fakeReceiver{
fakeSettler: &fakeSettler{},
SetupReceivedMessages: messages,
}
processor := shuttle.NewProcessor(rcv, MyHandler(0*time.Second), nil)
ctx, cancel := context.WithCancel(context.Background())
cancel()
err := processor.Start(ctx)
a.ErrorContains(err, "max receive calls exceeded")
a.Equal(1, len(rcv.ReceiveCalls), "there should be 1 entry in the ReceiveCalls array")
a.Equal(1, rcv.ReceiveCalls[0], "the processor should have used the default max concurrency of 1")
}
func TestProcessorStart_ContextCanceledAfterStart(t *testing.T) {
messages := make(chan *azservicebus.ReceivedMessage, 3)
messages <- &azservicebus.ReceivedMessage{}
messages <- &azservicebus.ReceivedMessage{}
messages <- &azservicebus.ReceivedMessage{}
close(messages)
rcv := &fakeReceiver{
fakeSettler: &fakeSettler{},
SetupReceivedMessages: messages,
SetupMaxReceiveCalls: 2,
}
processor := shuttle.NewProcessor(rcv, MyHandler(0*time.Millisecond),
&shuttle.ProcessorOptions{
ReceiveInterval: to.Ptr(1 * time.Second),
})
ctx, cancel := context.WithCancel(context.Background())
errCh := make(chan error)
go func() { errCh <- processor.Start(ctx) }()
cancel()
g := NewWithT(t)
g.Eventually(errCh).Should(Receive(MatchError(context.Canceled)))
}
func TestProcessorStart_CanSetMaxConcurrency(t *testing.T) {
a := require.New(t)
rcv := &fakeReceiver{
fakeSettler: &fakeSettler{},
SetupReceivedMessages: make(chan *azservicebus.ReceivedMessage),
}
close(rcv.SetupReceivedMessages)
processor := shuttle.NewProcessor(rcv, MyHandler(0*time.Second), &shuttle.ProcessorOptions{
MaxConcurrency: 10,
})
ctx, cancel := context.WithCancel(context.Background())
// pre-cancel the context
cancel()
err := processor.Start(ctx)
a.ErrorContains(err, "max receive calls exceeded")
a.Equal(1, len(rcv.ReceiveCalls), "there should be 1 entry in the ReceiveCalls array")
a.Equal(10, rcv.ReceiveCalls[0], "the processor should have used max concurrency of 10")
}
func TestProcessorStart_Interval(t *testing.T) {
// with an message processing that takes 10ms and an interval polling every 20 ms,
// we should call receive exactly 3 times to consume all the messages.
a := require.New(t)
rcv := &fakeReceiver{
fakeSettler: &fakeSettler{},
SetupMaxReceiveCalls: 3,
SetupReceivedMessages: messagesChannel(7),
}
close(rcv.SetupReceivedMessages)
processor := shuttle.NewProcessor(rcv, MyHandler(10*time.Millisecond), &shuttle.ProcessorOptions{
MaxConcurrency: 3,
ReceiveInterval: to.Ptr(20 * time.Millisecond),
})
ctx, cancel := context.WithTimeout(context.Background(), 1*time.Second)
defer cancel()
err := processor.Start(ctx)
a.Error(err, "expect to exit with error because we consumed all configured messages")
a.Equal(3, len(rcv.ReceiveCalls), "there should be 2 entry in the ReceiveCalls array")
a.Equal(3, rcv.ReceiveCalls[0], "the processor should have used max concurrency of 3")
a.Equal(3, rcv.ReceiveCalls[1], "the processor should have used max concurrency of 3")
a.Equal(3, rcv.ReceiveCalls[2], "the processor should have used max concurrency of 3")
}
func TestProcessorStart_ReceiveDeltaConcurrencyOnly(t *testing.T) {
// with an message processing that takes 10ms and an interval polling every 20 ms,
// we should call receive exactly 3 times to consume all the messages.
a := require.New(t)
rcv := &fakeReceiver{
fakeSettler: &fakeSettler{},
SetupReceivedMessages: messagesChannel(2),
SetupMaxReceiveCalls: 3,
}
close(rcv.SetupReceivedMessages)
processor := shuttle.NewProcessor(rcv, MyHandler(20*time.Millisecond), &shuttle.ProcessorOptions{
MaxConcurrency: 1,
ReceiveInterval: to.Ptr(12 * time.Millisecond),
})
ctx, cancel := context.WithTimeout(context.Background(), 60*time.Second)
defer cancel()
err := processor.Start(ctx)
a.Error(err, "expect to exit with error because we consumed all configured messages")
a.Equal(3, len(rcv.ReceiveCalls), "there should be 4 entry in the ReceiveCalls array")
a.Equal(1, rcv.ReceiveCalls[0], "the processor should have used max concurrency of 1 initially")
a.Equal(1, rcv.ReceiveCalls[1], "the processor should receive 1 when the previous message is done processing and exit")
a.Equal(1, rcv.ReceiveCalls[2], "the processor should receive 1 when the previous message is done processing and exit")
}
func TestProcessorStart_ReceiveDelta(t *testing.T) {
// with an message processing that takes 10ms and an interval polling every 20 ms,
// we should call receive exactly 2 times to consume all the messages.
a := require.New(t)
rcv := &fakeReceiver{
fakeSettler: &fakeSettler{},
SetupReceivedMessages: messagesChannel(5),
SetupMaxReceiveCalls: 2,
}
processor := shuttle.NewProcessor(rcv, MyHandler(1*time.Second), &shuttle.ProcessorOptions{
MaxConcurrency: 10,
ReceiveInterval: to.Ptr(20 * time.Millisecond),
})
ctx, cancel := context.WithTimeout(context.Background(), 1*time.Second)
defer cancel()
done := make(chan struct{})
var processorError error
go func() {
processorError = processor.Start(ctx)
t.Log("exited processor ", processorError)
close(done)
}()
// ensure the 5 initial messages were processed
time.Sleep(10 * time.Millisecond)
enqueueCount(rcv.SetupReceivedMessages, 5)
close(rcv.SetupReceivedMessages)
<-done
a.Error(processorError, "expect to exit with error because we consumed all configured messages")
a.Equal(2, len(rcv.ReceiveCalls), "should be called 3 times")
a.Equal(10, rcv.ReceiveCalls[0], "the processor should have used max concurrency of 10 initially")
a.Equal(5, rcv.ReceiveCalls[1], "the processor should request 5 (delta)")
}
func TestProcessorStart_DefaultsToStartMaxAttempt1(t *testing.T) {
a := require.New(t)
messages := make(chan *azservicebus.ReceivedMessage, 1)
close(messages)
rcv := &fakeReceiver{
fakeSettler: &fakeSettler{},
SetupReceivedMessages: messages,
SetupMaxReceiveCalls: 2,
SetupReceiveError: fmt.Errorf("fake receive error"),
}
processor := shuttle.NewProcessor(rcv, MyHandler(0*time.Second), nil)
ctx, cancel := context.WithCancel(context.Background())
cancel()
err := processor.Start(ctx)
a.ErrorContains(err, "fake receive error")
a.Equal(1, len(rcv.ReceiveCalls), "there should be 1 entry in the ReceiveCalls array")
a.Equal(1, rcv.ReceiveCalls[0], "the processor should have used the default max concurrency of 1")
}
func TestProcessorStart_CanSetStartMaxAttempt(t *testing.T) {
// with a max start attempt of 3 and a 20ms fixed retry strategy,
// we should have 3 retries before exiting with an error.
a := require.New(t)
messages := make(chan *azservicebus.ReceivedMessage, 1)
close(messages)
receiveError := fmt.Errorf("fake receive error")
rcv := &fakeReceiver{
fakeSettler: &fakeSettler{},
SetupReceivedMessages: messages,
SetupMaxReceiveCalls: 5,
SetupReceiveError: receiveError,
}
processor := shuttle.NewProcessor(rcv, MyHandler(0*time.Second), &shuttle.ProcessorOptions{
MaxConcurrency: 1,
StartMaxAttempt: 3,
StartRetryDelayStrategy: &shuttle.ConstantDelayStrategy{Delay: 20 * time.Millisecond},
})
ctx, cancel := context.WithTimeout(context.Background(), 100*time.Millisecond)
defer cancel()
err := processor.Start(ctx)
// matchError
a.ErrorIs(err, receiveError)
a.Equal(3, len(rcv.ReceiveCalls), "there should be 3 connection retries")
a.Equal(1, rcv.ReceiveCalls[0], "the processor should have used the default max concurrency of 1")
a.Equal(1, rcv.ReceiveCalls[1], "the processor should have used the default max concurrency of 1")
a.Equal(1, rcv.ReceiveCalls[2], "the processor should have used the default max concurrency of 1")
}
func TestProcessorStart_ContextCanceledDuringStartRetry(t *testing.T) {
// with a max start attempt of 5 and a 20ms fixed retry strategy,
// we should have 2 retries before the context is canceled after 30ms.
a := require.New(t)
messages := make(chan *azservicebus.ReceivedMessage, 1)
close(messages)
receiveError := fmt.Errorf("fake receive error")
rcv := &fakeReceiver{
fakeSettler: &fakeSettler{},
SetupReceivedMessages: messages,
SetupMaxReceiveCalls: 10,
SetupReceiveError: receiveError,
}
processor := shuttle.NewProcessor(rcv, MyHandler(0*time.Second), &shuttle.ProcessorOptions{
MaxConcurrency: 1,
StartMaxAttempt: 5,
StartRetryDelayStrategy: &shuttle.ConstantDelayStrategy{Delay: 20 * time.Millisecond},
})
ctx, cancel := context.WithTimeout(context.Background(), 30*time.Millisecond)
defer cancel()
err := processor.Start(ctx)
a.ErrorIs(err, context.DeadlineExceeded)
a.Equal(2, len(rcv.ReceiveCalls), "there should be 2 connection retries")
a.Equal(1, rcv.ReceiveCalls[0], "the processor should have used the default max concurrency of 1")
a.Equal(1, rcv.ReceiveCalls[1], "the processor should have retried the receive call once")
}
func TestProcessorStart_TwoReceivers(t *testing.T) {
// with an message processing that takes 10ms and an interval polling every 20 ms,
// we should call receive exactly 3 times to consume all the messages.
a := require.New(t)
rcv1 := &fakeReceiver{
fakeSettler: &fakeSettler{},
SetupMaxReceiveCalls: 3,
SetupReceivedMessages: messagesChannel(7),
}
close(rcv1.SetupReceivedMessages)
rcv2 := &fakeReceiver{
fakeSettler: &fakeSettler{},
SetupMaxReceiveCalls: 3,
SetupReceivedMessages: messagesChannel(7),
}
close(rcv2.SetupReceivedMessages)
rcvs := []*shuttle.ReceiverEx{
shuttle.NewReceiverEx("testReceiver1", rcv1),
shuttle.NewReceiverEx("testReceiver2", rcv2),
}
processor := shuttle.NewMultiProcessor(rcvs, MyHandler(10*time.Millisecond), &shuttle.ProcessorOptions{
MaxConcurrency: 3,
ReceiveInterval: to.Ptr(20 * time.Millisecond),
})
ctx, cancel := context.WithTimeout(context.Background(), 1*time.Second)
defer cancel()
err := processor.Start(ctx)
a.Error(err, "expect to exit with error because we consumed all configured messages")
for i, rcv := range []*fakeReceiver{rcv1, rcv2} {
a.ErrorContains(err, fmt.Sprintf("processor testReceiver%d failed to receive messages: max receive calls exceeded", i+1))
a.Equal(3, len(rcv.ReceiveCalls), "there should be 3 entry in the ReceiveCalls array")
a.Equal(3, rcv.ReceiveCalls[0], "the processor should have used max concurrency of 3")
}
}
func TestProcessorStart_TwoReceiversOneErrorOneSuccess(t *testing.T) {
// with an message processing that takes 10ms and an interval polling every 20 ms,
// we should call receive exactly 3 times to consume all the messages.
a := require.New(t)
rcv1 := &fakeReceiver{
fakeSettler: &fakeSettler{},
SetupMaxReceiveCalls: 3,
SetupReceivedMessages: messagesChannel(7),
}
close(rcv1.SetupReceivedMessages)
rcv2 := &fakeReceiver{
fakeSettler: &fakeSettler{},
SetupMaxReceiveCalls: 3,
SetupReceivedMessages: messagesChannel(7),
SetupReceiveError: fmt.Errorf("fake receive error"),
}
close(rcv2.SetupReceivedMessages)
rcvs := []*shuttle.ReceiverEx{
shuttle.NewReceiverEx("testReceiver1", rcv1),
shuttle.NewReceiverEx("testReceiver2", rcv2),
}
processor := shuttle.NewMultiProcessor(rcvs, MyHandler(10*time.Millisecond), &shuttle.ProcessorOptions{
MaxConcurrency: 3,
ReceiveInterval: to.Ptr(20 * time.Millisecond),
})
ctx, cancel := context.WithTimeout(context.Background(), 1*time.Second)
defer cancel()
err := processor.Start(ctx)
a.Error(err, "expect to exit with error because we consumed all configured messages and one receiver failed to receive messages")
a.ErrorContains(err, "processor testReceiver1 failed to receive messages: max receive calls exceeded")
a.ErrorContains(err, "processor testReceiver2 failed to receive messages: fake receive error")
a.Equal(3, len(rcv1.ReceiveCalls), "there should be 3 entry in the ReceiveCalls array")
a.Equal(3, rcv1.ReceiveCalls[0], "the processor should have used max concurrency of 3")
a.Equal(1, len(rcv2.ReceiveCalls), "there should be 1 entry in the ReceiveCalls array")
a.Equal(3, rcv2.ReceiveCalls[0], "the processor should have used max concurrency of 3")
}
func TestProcessorStart_TwoReceiversWithStartRetry(t *testing.T) {
// with an message processing that takes 10ms and an interval polling every 20 ms,
// we should call receive exactly 3 times to consume all the messages.
a := require.New(t)
rcv1 := &fakeReceiver{
fakeSettler: &fakeSettler{},
SetupMaxReceiveCalls: 3,
SetupReceivedMessages: messagesChannel(7),
}
close(rcv1.SetupReceivedMessages)
rcv2 := &fakeReceiver{
fakeSettler: &fakeSettler{},
SetupMaxReceiveCalls: 3,
SetupReceivedMessages: messagesChannel(7),
SetupReceiveError: fmt.Errorf("fake receive error"),
}
close(rcv2.SetupReceivedMessages)
rcvs := []*shuttle.ReceiverEx{
shuttle.NewReceiverEx("testReceiver1", rcv1),
shuttle.NewReceiverEx("testReceiver2", rcv2),
}
processor := shuttle.NewMultiProcessor(rcvs, MyHandler(10*time.Millisecond), &shuttle.ProcessorOptions{
MaxConcurrency: 3,
ReceiveInterval: to.Ptr(20 * time.Millisecond),
StartMaxAttempt: 2,
StartRetryDelayStrategy: &shuttle.ConstantDelayStrategy{Delay: 10 * time.Millisecond},
})
ctx, cancel := context.WithTimeout(context.Background(), 1*time.Second)
defer cancel()
err := processor.Start(ctx)
a.Error(err, "expect to exit with error because we consumed all configured messages and one receiver failed to receive messages")
a.ErrorContains(err, "processor testReceiver1 failed to receive messages: max receive calls exceeded")
a.ErrorContains(err, "processor testReceiver2 failed to receive messages: fake receive error")
a.Equal(4, len(rcv1.ReceiveCalls), "there should be 4 entry in the ReceiveCalls array (3 receives and 1 retry)")
a.Equal(3, rcv1.ReceiveCalls[0], "the processor should have used max concurrency of 3")
a.Equal(2, len(rcv2.ReceiveCalls), "there should be 1 entry in the ReceiveCalls array (1 retry)")
a.Equal(3, rcv2.ReceiveCalls[0], "the processor should have used max concurrency of 3")
}
func TestProcessorStart_MultiReceivers(t *testing.T) {
a := require.New(t)
rcvs := make([]*shuttle.ReceiverEx, 0)
fakeReceivers := make([]*fakeReceiver, 0)
expectedReceiveCalls := []int{1, 1, 1, 2, 2}
for i := 0; i < 5; i++ {
fakeReceiver := &fakeReceiver{
fakeSettler: &fakeSettler{},
SetupMaxReceiveCalls: expectedReceiveCalls[i],
SetupReceivedMessages: messagesChannel(i),
}
rcvs = append(rcvs, shuttle.NewReceiverEx(fmt.Sprintf("testReceiver%d", i), fakeReceiver))
fakeReceivers = append(fakeReceivers, fakeReceiver)
close(fakeReceiver.SetupReceivedMessages)
}
processor := shuttle.NewMultiProcessor(rcvs, MyHandler(10*time.Millisecond), &shuttle.ProcessorOptions{
MaxConcurrency: 3,
ReceiveInterval: to.Ptr(20 * time.Millisecond),
})
ctx, cancel := context.WithTimeout(context.Background(), 1*time.Second)
defer cancel()
err := processor.Start(ctx)
a.Error(err, "expect to exit with error because we consumed all configured messages")
for i, fakeReceiver := range fakeReceivers {
a.ErrorContains(err, fmt.Sprintf("processor testReceiver%d failed to receive messages: max receive calls exceeded", i))
a.Equal(len(fakeReceiver.ReceiveCalls), expectedReceiveCalls[i], "receiver %d should have received %d messages", i, expectedReceiveCalls[i])
a.Equal(fakeReceiver.ReceiveCalls[0], 3, "receiver %d should have used max concurrency of 3", i)
}
}
func TestProcessorStart_SinglePanic(t *testing.T) {
rcv1 := &fakeReceiver{
fakeSettler: &fakeSettler{},
SetupReceivedMessages: messagesChannel(1),
SetupMaxReceiveCalls: 2,
SetupReceivePanic: "receive panic!",
}
close(rcv1.SetupReceivedMessages)
rcv2 := &fakeReceiver{
fakeSettler: &fakeSettler{},
SetupReceivedMessages: messagesChannel(1),
SetupMaxReceiveCalls: 2,
}
close(rcv2.SetupReceivedMessages)
rcvs := []*shuttle.ReceiverEx{
shuttle.NewReceiverEx("testReceiver1", rcv1),
shuttle.NewReceiverEx("testReceiver2", rcv2),
}
processor := shuttle.NewMultiProcessor(rcvs, MyHandler(0*time.Second), nil)
//ctx, cancel := context.WithTimeout(context.Background(), 1*time.Second)
//defer cancel()
ctx := context.Background()
// expect Start() function to not panic
g := NewWithT(t)
var err error
g.Expect(func() { err = processor.Start(ctx) }).To(Not(Panic()))
g.Expect(err).To(HaveOccurred())
g.Expect(err.Error()).To(ContainSubstring("panic recovered from processor testReceiver1: receive panic!"))
g.Expect(err.Error()).To(ContainSubstring("processor testReceiver2 failed to receive messages: max receive calls exceeded"))
}
func TestProcessorStart_TwoPanics(t *testing.T) {
rcv1 := &fakeReceiver{
fakeSettler: &fakeSettler{},
SetupReceivedMessages: messagesChannel(1),
SetupMaxReceiveCalls: 2,
SetupReceivePanic: "receive panic!",
}
close(rcv1.SetupReceivedMessages)
rcv2 := &fakeReceiver{
fakeSettler: &fakeSettler{},
SetupReceivedMessages: messagesChannel(1),
SetupMaxReceiveCalls: 2,
SetupReceivePanic: "receive panic!",
}
close(rcv2.SetupReceivedMessages)
rcvs := []*shuttle.ReceiverEx{
shuttle.NewReceiverEx("testReceiver1", rcv1),
shuttle.NewReceiverEx("testReceiver2", rcv2),
}
processor := shuttle.NewMultiProcessor(rcvs, MyHandler(0*time.Second), nil)
//ctx, cancel := context.WithTimeout(context.Background(), 1*time.Second)
//defer cancel()
ctx := context.Background()
// expect Start() function to not panic
g := NewWithT(t)
var err error
g.Expect(func() { err = processor.Start(ctx) }).To(Not(Panic()))
g.Expect(err).To(HaveOccurred())
g.Expect(err.Error()).To(ContainSubstring("panic recovered from processor testReceiver1: receive panic!"))
g.Expect(err.Error()).To(ContainSubstring("panic recovered from processor testReceiver2: receive panic!"))
}
func TestProcessorStart_MultiProcessorWithNewRenewLockHandler(t *testing.T) {
rcv1 := &fakeReceiver{
fakeSettler: &fakeSettler{},
SetupReceivedMessages: messagesChannel(1),
SetupMaxReceiveCalls: 2,
}
close(rcv1.SetupReceivedMessages)
rcv2 := &fakeReceiver{
fakeSettler: &fakeSettler{},
SetupReceivedMessages: messagesChannel(1),
SetupMaxReceiveCalls: 2,
}
close(rcv2.SetupReceivedMessages)
rcvs := []*shuttle.ReceiverEx{
shuttle.NewReceiverEx("testReceiver1", rcv1),
shuttle.NewReceiverEx("testReceiver2", rcv2),
}
lockRenewalInterval := 50 * time.Millisecond
lockRenewalOptions := &shuttle.LockRenewalOptions{Interval: &lockRenewalInterval}
processor := shuttle.NewMultiProcessor(rcvs,
shuttle.NewRenewLockHandler(lockRenewalOptions, MyHandler(150*time.Millisecond)),
&shuttle.ProcessorOptions{
MaxConcurrency: 2,
})
ctx, cancel := context.WithTimeout(context.TODO(), 120*time.Millisecond)
defer cancel()
err := processor.Start(ctx)
g := NewWithT(t)
g.Expect(err).To(HaveOccurred())
g.Eventually(
func(g Gomega) { g.Expect(rcv1.RenewCalled.Load()).To(Equal(int32(2))) },
130*time.Millisecond,
20*time.Millisecond).Should(Succeed())
g.Eventually(
func(g Gomega) { g.Expect(rcv2.RenewCalled.Load()).To(Equal(int32(2))) },
130*time.Millisecond,
20*time.Millisecond).Should(Succeed())
}
func messagesChannel(messageCount int) chan *azservicebus.ReceivedMessage {
messages := make(chan *azservicebus.ReceivedMessage, messageCount)
for i := 0; i < messageCount; i++ {
messages <- &azservicebus.ReceivedMessage{
LockedUntil: to.Ptr(time.Now().Add(1 * time.Minute)),
}
}
return messages
}
func enqueueCount(q chan *azservicebus.ReceivedMessage, messageCount int) {
for i := 0; i < messageCount; i++ {
q <- &azservicebus.ReceivedMessage{
LockedUntil: to.Ptr(time.Now().Add(1 * time.Minute)),
}
}
}
func TestPanicHandler_WithHandlingFunc(t *testing.T) {
handler := shuttle.HandlerFunc(func(ctx context.Context, settler shuttle.MessageSettler, message *azservicebus.ReceivedMessage) {
panic("panic!")
})
var recovered any
options := &shuttle.PanicHandlerOptions{
OnPanicRecovered: func(ctx context.Context, settler shuttle.MessageSettler, message *azservicebus.ReceivedMessage, rec any) {
recovered = rec
},
}
p := shuttle.NewPanicHandler(options, handler)
g := NewWithT(t)
g.Expect(func() { p.Handle(context.TODO(), nil, nil) }).ToNot(Panic())
g.Expect(recovered).ToNot(BeNil())
}
func TestNewPanicHandler_DefaultOptions(t *testing.T) {
handler := shuttle.HandlerFunc(func(ctx context.Context, settler shuttle.MessageSettler, message *azservicebus.ReceivedMessage) {
panic("panic!")
})
p := shuttle.NewPanicHandler(nil, handler)
g := NewWithT(t)
g.Expect(func() { p.Handle(context.TODO(), nil, nil) }).ToNot(Panic())
}