-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathretry_test.go
448 lines (395 loc) · 10 KB
/
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
package retry_test
import (
"context"
"fmt"
"testing"
"time"
"github.com/arsham/retry/v3"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestRetry_Do(t *testing.T) {
t.Parallel()
t.Run("Return", testRetryDoReturn)
t.Run("Zero", testRetryDoZero)
t.Run("Stopping", testRetryDoStopping)
t.Run("Panic", testRetryDoPanic)
t.Run("Sleep", testRetryDoSleep)
t.Run("MultiFunc", testRetryDoMultiFunc)
t.Run("ErrorIs", testRetryDoErrorIs)
}
func testRetryDoReturn(t *testing.T) {
t.Parallel()
l := &retry.Retry{
Attempts: 10,
}
err := l.Do(func() error {
return nil
})
require.NoError(t, err)
calls := -1
err = l.Do(func() error {
calls++
if calls < 4 {
return assert.AnError
}
return nil
})
require.NoError(t, err)
assert.Equal(t, 4, calls, "expected 3 calls")
err = l.Do(func() error {
return assert.AnError
})
require.EqualError(t, err, assert.AnError.Error())
l = &retry.Retry{
Attempts: -1,
}
err = l.Do(func() error {
t.Error("didn't expect to be called")
return nil
})
require.NoError(t, err)
}
func testRetryDoZero(t *testing.T) {
t.Parallel()
l := &retry.Retry{}
calls := 0
err := l.Do(func() error {
calls++
return nil
})
require.NoError(t, err)
assert.Zero(t, calls, "expected zero calls")
l.Attempts = 10
err = l.Do(func() error {
calls++
return nil
})
require.NoError(t, err)
assert.Equal(t, 1, calls, "expected 1 call")
}
func testRetryDoStopping(t *testing.T) {
t.Parallel()
l := &retry.Retry{
Attempts: 10,
}
calls := 0
err := l.Do(func() error {
calls++
if calls >= 4 {
return &retry.StopError{Err: assert.AnError}
}
return assert.AnError
})
assert.Equal(t, 4, calls)
assert.Equal(t, err, assert.AnError)
}
func testRetryDoPanic(t *testing.T) {
t.Parallel()
l := &retry.Retry{
Attempts: 3,
}
calls := -1
require.NotPanics(t, func() {
err := l.Do(func() error {
calls++
if calls < l.Attempts-1 {
panic(assert.AnError)
}
return nil
})
require.NoError(t, err)
})
require.NotPanics(t, func() {
err := l.Do(func() error {
panic(assert.AnError)
})
require.ErrorIs(t, err, assert.AnError)
})
require.NotPanics(t, func() {
err := l.Do(func() error {
panic(assert.AnError.Error())
})
require.Error(t, err)
})
}
func testRetryDoSleep(t *testing.T) {
t.Run("StandardMethod", testRetryDoSleepStandardMethod)
t.Run("IncrementalMethod", testRetryDoSleepIncrementalMethod)
t.Run("IncrementalMaxMethod", testRetryDoSleepIncrementalMaxMethod)
}
func testRetryDoSleepStandardMethod(t *testing.T) {
t.Parallel()
// In this setup, we delay 10 times, So in 1 second there would be 10 calls.
count := 0
delay := 100 * time.Millisecond
l := &retry.Retry{
Attempts: 10,
Delay: delay,
}
started := time.Now()
err := l.Do(func() error {
count++
return assert.AnError
})
finished := time.Now()
assert.Equal(t, l.Attempts, count)
require.ErrorIs(t, err, assert.AnError)
expected := started.Add(time.Second)
assert.WithinDurationf(t, expected, finished, delay,
"expected to take 1s, got %s", finished.Sub(started))
}
func testRetryDoSleepIncrementalMethod(t *testing.T) {
t.Run("UnderSecond", testRetryDoSleepIncrementalMethodUnderSecond)
t.Run("OverSecond", testRetryDoSleepIncrementalMethodOverSecond)
t.Run("Zero", testRetryDoSleepIncrementalMethodZero)
}
func testRetryDoSleepIncrementalMethodUnderSecond(t *testing.T) {
t.Parallel()
// In this setup, the delays would be (almost) 100, 200, 300, 400. So in almost
// 1 second there would be 4 calls. There is a 4*delay amount of wiggle added.
delay := 100 * time.Millisecond
l := &retry.Retry{
Attempts: 4,
Delay: delay,
Method: retry.IncrementalDelay,
}
count := 0
started := time.Now()
err := l.Do(func() error {
count++
return assert.AnError
})
finished := time.Now()
expected := started.Add(time.Second)
assert.Equal(t, l.Attempts, count)
require.ErrorIs(t, err, assert.AnError)
assert.True(t, finished.After(expected),
fmt.Sprintf("wanted to take more than %s, took %s", expected.Sub(started), finished.Sub(started)),
)
assert.True(t, finished.Before(expected.Add(6*delay)),
fmt.Sprintf("took (%s) more than expected: %s", finished.Sub(started), expected.Add(6*delay)),
)
}
func testRetryDoSleepIncrementalMethodOverSecond(t *testing.T) {
t.Parallel()
if testing.Short() {
t.Skip("slow test")
}
rty := &retry.Retry{
Attempts: 2,
Delay: 10 * time.Second,
Method: retry.IncrementalDelay,
}
count := 0
started := time.Now()
err := rty.Do(func() error {
count++
return assert.AnError
})
finished := time.Now()
expected := started.Add(3 * time.Second)
require.ErrorIs(t, err, assert.AnError)
assert.Equal(t, rty.Attempts, count)
assert.True(t, finished.After(expected),
fmt.Sprintf("wanted to take more than %s, took %s", expected.Sub(started), finished.Sub(started)),
)
assert.True(t, finished.Before(expected.Add(2*time.Second)),
fmt.Sprintf("took (%s) more than expected: %s", finished.Sub(started), 4*time.Second),
)
}
func testRetryDoSleepIncrementalMethodZero(t *testing.T) {
t.Parallel()
l := &retry.Retry{
Attempts: 50,
Method: retry.IncrementalDelay,
}
count := 0
started := time.Now()
err := l.Do(func() error {
count++
return assert.AnError
})
finished := time.Now()
require.ErrorIs(t, err, assert.AnError)
assert.Equal(t, l.Attempts, count)
expected := started.Add(time.Second)
assert.True(t, finished.Before(expected),
fmt.Sprintf("took (%s) more than expected: %s", finished.Sub(started), time.Second),
)
}
func testRetryDoSleepIncrementalMaxMethod(t *testing.T) {
t.Run("UnderSecond", testRetryDoSleepIncrementalMaxMethodUnderSecond)
t.Run("OverSecond", testRetryDoSleepIncrementalMaxMethodOverTwoSeconds)
t.Run("Zero", testRetryDoSleepIncrementalMaxMethodZero)
}
func testRetryDoSleepIncrementalMaxMethodUnderSecond(t *testing.T) {
t.Parallel()
// In this setup, the delays would be (almost) 100, 200, 300, 300. So in
// almost 900 ms there would be 4 calls. There is a 4*delay amount of
// wiggle added.
delay := 100 * time.Millisecond
rty := &retry.Retry{
Attempts: 4,
Delay: delay,
Method: retry.IncrementalDelayMax(delay * 3),
}
count := 0
started := time.Now()
err := rty.Do(func() error {
count++
return assert.AnError
})
finished := time.Now()
expected := started.Add(900 * time.Millisecond)
assert.Equal(t, rty.Attempts, count)
require.ErrorIs(t, err, assert.AnError)
assert.True(t, finished.After(expected),
fmt.Sprintf("wanted to take more than %s, took %s", expected.Sub(started), finished.Sub(started)),
)
assert.True(t, finished.Before(expected.Add(6*delay)),
fmt.Sprintf("took (%s) more than expected: %s", finished.Sub(started), expected.Add(6*delay)),
)
}
func testRetryDoSleepIncrementalMaxMethodOverTwoSeconds(t *testing.T) {
t.Parallel()
if testing.Short() {
t.Skip("slow test")
}
l := &retry.Retry{
Attempts: 2,
Delay: 10 * time.Second,
Method: retry.IncrementalDelayMax(2 * time.Second),
}
count := 0
started := time.Now()
err := l.Do(func() error {
count++
return assert.AnError
})
finished := time.Now()
expected := started.Add(4 * time.Second)
require.ErrorIs(t, err, assert.AnError)
assert.Equal(t, l.Attempts, count)
assert.True(t, finished.After(expected),
fmt.Sprintf("wanted to take more than %s, took %s", expected.Sub(started), finished.Sub(started)),
)
assert.True(t, finished.Before(expected.Add(2*2*time.Second)),
fmt.Sprintf("took (%s) more than expected: %s", finished.Sub(started), 4*time.Second),
)
}
func testRetryDoSleepIncrementalMaxMethodZero(t *testing.T) {
t.Parallel()
rty := &retry.Retry{
Attempts: 50,
Method: retry.IncrementalDelayMax(time.Second / 2),
}
count := 0
started := time.Now()
err := rty.Do(func() error {
count++
return assert.AnError
})
finished := time.Now()
require.ErrorIs(t, err, assert.AnError)
assert.Equal(t, rty.Attempts, count)
expected := started.Add(time.Second)
assert.True(t, finished.Before(expected),
fmt.Sprintf("took (%s) more than expected: %s", finished.Sub(started), time.Second),
)
}
func testRetryDoMultiFunc(t *testing.T) {
t.Parallel()
t.Run("FirstErrors", testRetryDoMultiFuncFirstErrors)
t.Run("SecondErrors", testRetryDoMultiFuncSecondErrors)
t.Run("NoErrors", testRetryDoMultiFuncNoErrors)
}
func testRetryDoMultiFuncFirstErrors(t *testing.T) {
t.Parallel()
l := &retry.Retry{
Attempts: 3,
}
err := l.Do(func() error {
return assert.AnError
}, func() error {
t.Error("should not be called")
return nil
})
assert.ErrorIs(t, err, assert.AnError)
}
func testRetryDoMultiFuncSecondErrors(t *testing.T) {
t.Parallel()
l := &retry.Retry{
Attempts: 3,
}
calls := 0
err := l.Do(func() error {
calls++
return nil
}, func() error {
return assert.AnError
})
require.ErrorIs(t, err, assert.AnError)
assert.Equal(t, 3, calls)
}
func testRetryDoMultiFuncNoErrors(t *testing.T) {
t.Parallel()
l := &retry.Retry{
Attempts: 3,
}
calls := 0
err := l.Do(func() error {
calls++
return nil
}, func() error {
calls++
return nil
})
require.NoError(t, err)
assert.Equal(t, 2, calls)
}
func testRetryDoErrorIs(t *testing.T) {
t.Parallel()
r := &retry.Retry{
Attempts: 1,
}
err := r.Do(func() error {
return &retry.StopError{
Err: &retry.StopError{Err: assert.AnError},
}
})
assert.ErrorIs(t, err, assert.AnError, err)
}
func TestRetry_DoContext(t *testing.T) {
t.Parallel()
// Since the Do() uses the DoContext() method internally, there is no point
// duplicating the effort. We just test some cases.
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
r := &retry.Retry{
Attempts: 100,
Delay: time.Millisecond,
}
calls := 0
err := r.DoContext(ctx, func() error {
calls++
if calls < 3 {
return assert.AnError
}
return nil
}, func() error {
if calls > 5 {
cancel()
}
return assert.AnError
})
assert.Equal(t, 6, calls)
require.ErrorIs(t, err, context.Canceled, err)
err = r.DoContext(ctx, func() error {
cancel()
return nil
}, func() error {
panic("should not happen")
})
assert.ErrorIs(t, err, context.Canceled, err)
}