-
Notifications
You must be signed in to change notification settings - Fork 0
/
async_retry_test.go
655 lines (638 loc) · 14.6 KB
/
async_retry_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
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
package asyncretry
import (
"context"
"fmt"
"math/rand"
"sync"
"testing"
"time"
)
type contextValueKeyT int
const contextValueKey contextValueKeyT = 1
var counter = 0
func Test_asyncRetry_Do(t *testing.T) {
type args struct {
f RetryableFunc
ctx func() context.Context
opts []Option
}
tests := []struct {
name string
args args
wantErr bool
expectedErr error
expectedCounter int
}{
{
name: "Retry until success",
args: args{
f: func(ctx context.Context) error {
counter++
if counter < 5 {
return fmt.Errorf("%vth try", counter)
}
return nil
},
ctx: func() context.Context {
return context.Background()
},
opts: []Option{
Attempts(10),
Delay(1 * time.Millisecond),
},
},
wantErr: false,
expectedErr: nil,
expectedCounter: 5,
},
{
name: "Retry but fail",
args: args{
f: func(ctx context.Context) error {
counter++
if counter < 5 {
return fmt.Errorf("%vth try", counter)
}
return nil
},
ctx: func() context.Context {
return context.Background()
},
opts: []Option{
Attempts(3),
Delay(1 * time.Millisecond),
},
},
wantErr: true,
expectedErr: fmt.Errorf(`All attempts fail:
#1: 1th try
#2: 2th try
#3: 3th try`),
expectedCounter: 3,
},
{
name: "Cancellation of context, argument of Do is not propagated to RetryableFunc",
args: args{
f: func(ctx context.Context) error {
select {
case <-ctx.Done():
return fmt.Errorf("ctx canceled")
default:
}
if ctx.Err() != nil {
return fmt.Errorf("ctx.Err() must be nil")
}
return nil
},
ctx: func() context.Context {
ctx, cancel := context.WithCancel(context.Background())
cancel()
return ctx
},
opts: []Option{
Attempts(1),
},
},
wantErr: false,
expectedErr: nil,
},
{
name: "Context, argument of RetryableFunc keeps value",
args: args{
f: func(ctx context.Context) error {
if ctx.Value(contextValueKey) != 1 {
return fmt.Errorf("ctx.Value mismatch")
}
return nil
},
ctx: func() context.Context {
return context.WithValue(context.Background(), contextValueKey, 1)
},
opts: []Option{
Attempts(1),
},
},
wantErr: false,
expectedErr: nil,
},
{
name: "Timeout set correctly for each try",
args: args{
f: func(ctx context.Context) error {
select {
case <-ctx.Done():
// Check ctx passed from async-retry is not closed at the start of f() processing.
return fmt.Errorf("context already closed")
default:
}
counter++
select {
case <-ctx.Done():
if counter < 3 {
return fmt.Errorf("timeout")
}
return nil
case <-time.After(time.Minute):
return Unrecoverable(fmt.Errorf("timeout not working"))
}
},
ctx: func() context.Context {
return context.Background()
},
opts: []Option{
Delay(1 * time.Millisecond),
Timeout(1 * time.Second),
Attempts(5),
},
},
wantErr: false,
expectedErr: nil,
expectedCounter: 3,
},
{
name: "Recover from panic",
args: args{
f: func(ctx context.Context) error {
panic("call panic for test")
},
ctx: func() context.Context {
return context.Background()
},
opts: nil,
},
wantErr: true,
expectedErr: fmt.Errorf("panicking while AsyncRetry err: call panic for test"),
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
counter = 0
a := NewAsyncRetry()
ch := make(chan error)
var err error
if err = a.Do(tt.args.ctx(), tt.args.f, func(err error) { ch <- err }, tt.args.opts...); err != nil {
t.Errorf("Do() failed %v", err)
}
err = <-ch
if (err != nil) != tt.wantErr {
t.Errorf("Do() error = %v, wantErr %v", err, tt.wantErr)
}
if err != nil {
if tt.expectedErr.Error() != err.Error() {
t.Errorf("Do() error = %v, expectedErr %v", err, tt.expectedErr)
}
}
if tt.expectedCounter != 0 {
if counter != tt.expectedCounter {
t.Errorf("Do() mismatch called count actutal: %v, expected: %v", counter, tt.expectedCounter)
}
}
})
}
}
var ctx context.Context
var cancel context.CancelFunc
func Test_asyncRetry_DoWithConfigContext(t *testing.T) {
type args struct {
f RetryableFunc
ctx func() context.Context
opts func() []Option
}
tests := []struct {
name string
args args
wantErr bool
expectedErr error
expectedCounter int
}{
{
name: "Stop Retry when CancelWhenConfigContextCanceled is true",
args: args{
f: func(ctx context.Context) error {
counter++
return fmt.Errorf("always error")
},
ctx: func() context.Context {
return context.Background()
},
opts: func() []Option {
return []Option{
Context(ctx),
Delay(time.Minute),
CancelWhenConfigContextCanceled(true),
OnRetry(func(n uint, err error) {
cancel()
}),
}
},
},
wantErr: true,
expectedErr: fmt.Errorf(`All attempts fail:
#1: always error
#2: context canceled`),
expectedCounter: 1,
},
{
name: "Stop Retry when CancelWhenConfigContextCanceled is false",
args: args{
f: func(ctx context.Context) error {
counter++
return fmt.Errorf("always error")
},
ctx: func() context.Context {
return context.Background()
},
opts: func() []Option {
return []Option{
Context(ctx),
Delay(time.Minute),
CancelWhenConfigContextCanceled(false),
OnRetry(func(n uint, err error) {
cancel()
}),
}
},
},
wantErr: true,
expectedErr: fmt.Errorf(`All attempts fail:
#1: always error
#2: context canceled`),
expectedCounter: 1,
},
{
name: "Context, argument of RetryableFunc is canceled when CancelWhenConfigContextCanceled is true",
args: args{
f: func(ctx context.Context) error {
counter++
if counter == 1 {
cancel()
}
select {
case <-time.After(time.Second):
return fmt.Errorf("context must be canceled")
case <-ctx.Done():
return nil
}
},
ctx: func() context.Context {
return context.Background()
},
opts: func() []Option {
return []Option{
Context(ctx),
Timeout(0),
Delay(time.Minute),
CancelWhenConfigContextCanceled(true),
}
},
},
wantErr: false,
expectedCounter: 1,
},
{
name: "Context, argument of RetryableFunc is NOT canceled when CancelWhenConfigContextCanceled is false",
args: args{
f: func(ctx context.Context) error {
counter++
if counter == 1 {
cancel()
}
select {
case <-ctx.Done():
return fmt.Errorf("context must not be canceled")
case <-time.After(time.Second):
return nil
}
},
ctx: func() context.Context {
return context.Background()
},
opts: func() []Option {
return []Option{
Context(ctx),
Timeout(0),
Delay(time.Minute),
CancelWhenConfigContextCanceled(false),
}
},
},
wantErr: false,
expectedCounter: 1,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
counter = 0
ctx, cancel = context.WithCancel(context.Background())
defer cancel()
a := NewAsyncRetry()
ch := make(chan error)
var err error
if err = a.Do(tt.args.ctx(), tt.args.f, func(err error) { ch <- err }, tt.args.opts()...); err != nil {
t.Errorf("Do() failed %v", err)
}
err = <-ch
if (err != nil) != tt.wantErr {
t.Errorf("Do() error = %v, wantErr %v", err, tt.wantErr)
}
if err != nil {
if tt.expectedErr.Error() != err.Error() {
t.Errorf("Do() error = %v, expectedErr %v", err, tt.expectedErr)
}
}
if tt.expectedCounter != 0 {
if counter != tt.expectedCounter {
t.Errorf("Do() mismatch called count actutal: %v, expected: %v", counter, tt.expectedCounter)
}
}
})
}
}
var ch chan struct{}
func Test_asyncRetry_DoAndShutdown(t *testing.T) {
type args struct {
f RetryableFunc
ctx func() context.Context
opts func() []Option
}
tests := []struct {
name string
args args
wantErr bool
expectedErr error
expectedCounter int
}{
{
name: "Stop Retry in shutdown when CancelWhenShutdown is true",
args: args{
f: func(ctx context.Context) error {
counter++
return fmt.Errorf("always error")
},
ctx: func() context.Context {
return context.Background()
},
opts: func() []Option {
return []Option{
Delay(time.Minute),
CancelWhenShutdown(true),
OnRetry(func(n uint, err error) {
if n == 0 {
close(ch)
}
}),
}
},
},
wantErr: true,
expectedErr: fmt.Errorf(`All attempts fail:
#1: always error
#2: context canceled`),
expectedCounter: 1,
},
{
name: "Stop Retry in shutdown when CancelWhenShutdown is false",
args: args{
f: func(ctx context.Context) error {
counter++
return fmt.Errorf("always error")
},
ctx: func() context.Context {
return context.Background()
},
opts: func() []Option {
return []Option{
Delay(time.Minute),
CancelWhenShutdown(false),
OnRetry(func(n uint, err error) {
if n == 0 {
close(ch)
}
}),
}
},
},
wantErr: true,
expectedErr: fmt.Errorf(`All attempts fail:
#1: always error
#2: context canceled`),
expectedCounter: 1,
},
{
name: "Context, argument of RetryableFunc is canceled when CancelWhenShutdown is true",
args: args{
f: func(ctx context.Context) error {
counter++
if counter == 1 {
close(ch)
}
select {
case <-time.After(time.Second):
return fmt.Errorf("context must be canceled")
case <-ctx.Done():
return nil
}
},
ctx: func() context.Context {
return context.Background()
},
opts: func() []Option {
return []Option{
Delay(time.Minute),
CancelWhenShutdown(true),
}
},
},
wantErr: false,
expectedCounter: 1,
},
{
name: "Context, argument of RetryableFunc is canceled when CancelWhenShutdown is false",
args: args{
f: func(ctx context.Context) error {
counter++
if counter == 1 {
close(ch)
}
select {
case <-ctx.Done():
return fmt.Errorf("context must not be canceled")
case <-time.After(time.Second):
return nil
}
},
ctx: func() context.Context {
return context.Background()
},
opts: func() []Option {
return []Option{
Delay(time.Minute),
CancelWhenShutdown(false),
}
},
},
wantErr: false,
expectedCounter: 1,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
ch = make(chan struct{})
counter = 0
a := NewAsyncRetry()
var doErr = make(chan error, 1)
var shutdownErr = make(chan error)
var err error
if err = a.Do(tt.args.ctx(), tt.args.f, func(err error) { doErr <- err }, tt.args.opts()...); err != nil {
t.Errorf("Do() failed %v", err)
}
go func() {
<-ch
shutdownErr <- a.Shutdown(context.Background())
}()
select {
case err = <-shutdownErr:
case <-time.After(time.Second * 10):
t.Errorf("too long")
}
if err != nil {
t.Errorf("Shutdown() error = %v, wantErr %v", err, nil)
}
err = <-doErr
if (err != nil) != tt.wantErr {
t.Errorf("Do() error = %v, wantErr %v", err, tt.wantErr)
}
if err != nil {
if tt.expectedErr.Error() != err.Error() {
t.Errorf("Do() error = %v, expectedErr %v", err, tt.expectedErr)
}
}
if tt.expectedCounter != 0 {
if counter != tt.expectedCounter {
t.Errorf("Do() mismatch called count actutal: %v, expected: %v", counter, tt.expectedCounter)
}
}
})
}
}
func Test_ShutdownOrder(t *testing.T) {
tests := []struct {
name string
szDo int
szShutdown int
}{
{
"Calls of Do which happens before call of shutdown blocks shutdown, and calls of Do which happen after call of shutdown return ErrInShutdown",
1000,
1,
},
{
"Multiple shutdown call is OK",
1000,
100,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
szDo := tt.szDo
szShutdown := tt.szShutdown
var results = make(chan int)
a := NewAsyncRetry()
var wg sync.WaitGroup
for i := 0; i < szDo; i++ {
wg.Add(1)
err := a.Do(
context.Background(),
func(ctx context.Context) error {
wg.Done()
time.Sleep(time.Millisecond * time.Duration(rand.Intn(1000)))
return nil
},
func(error) {
time.Sleep(time.Millisecond * time.Duration(rand.Intn(1000)))
results <- 1
},
Timeout(0),
)
if err != nil {
t.Errorf("Do() error = %v, wantErr %v", err, nil)
}
}
for i := 0; i < szShutdown; i++ {
go func() {
wg.Wait()
err := a.Shutdown(context.Background())
results <- 2
if err != nil {
t.Errorf("Shutdown() error = %v, wantErr %v", err, nil)
}
}()
}
i := 0
for i < szDo+szShutdown {
v := <-results
if i < szDo {
if v != 1 {
t.Errorf("must be 1")
}
} else {
if v != 2 {
t.Errorf("must be 2")
}
}
i++
}
// after shutdown
for i := 0; i < 10; i++ {
err := a.Do(
context.Background(),
func(ctx context.Context) error {
return nil
},
func(error) {},
)
if err == nil || err.Error() != ErrInShutdown.Error() {
t.Errorf("call of Do after shudown must returns InShutdownErr")
}
}
})
}
}
func benchmarkDo(tasks int, concurrency int, b *testing.B) {
for n := 0; n < b.N; n++ {
ch := make(chan struct{}, 100)
a := NewAsyncRetry()
wg := sync.WaitGroup{}
for c := 0; c < concurrency; c++ {
wg.Add(1)
go func() {
defer wg.Done()
for range ch {
_ = a.Do(
context.Background(),
func(ctx context.Context) error {
var dummy int
for i := 0; i < 100; i++ {
dummy /= dummy + 1
}
return nil
},
func(err error) {
},
)
}
}()
}
for i := 0; i < tasks; i++ {
ch <- struct{}{}
}
close(ch)
wg.Wait()
}
}
func BenchmarkDo10000With2(b *testing.B) { benchmarkDo(10000, 2, b) }
func BenchmarkDo10000With4(b *testing.B) { benchmarkDo(10000, 4, b) }
func BenchmarkDo10000With8(b *testing.B) { benchmarkDo(10000, 8, b) }
func BenchmarkDo10000With16(b *testing.B) { benchmarkDo(10000, 16, b) }
func BenchmarkDo10000With32(b *testing.B) { benchmarkDo(10000, 32, b) }
func BenchmarkDo10000With64(b *testing.B) { benchmarkDo(10000, 64, b) }