This repository was archived by the owner on Apr 24, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathretry_test.go
316 lines (305 loc) · 5.89 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
package retry
import (
"errors"
"testing"
"time"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
type sleeperSpy struct {
d time.Duration
}
func (s *sleeperSpy) Sleep(d time.Duration) {
s.d = d
}
func TestRetriable_Do(t *testing.T) {
type fields struct {
maxAttempts uint
maxWait time.Duration
waiter Waiter
}
type want struct {
retries uint
waitDuration time.Duration
err bool
}
tests := []struct {
name string
fields fields
f func() error
want want
}{
{
name: "exhaust retries",
fields: fields{
maxAttempts: 3,
waiter: Duration(time.Millisecond),
},
f: func() error {
return errors.New("boom")
},
want: want{
retries: 3,
waitDuration: time.Millisecond,
err: true,
},
},
{
name: "permanent error",
fields: fields{
maxAttempts: 3,
waiter: Duration(time.Millisecond),
},
f: func() error {
err := errors.New("boom")
return Permanent(err)
},
want: want{
retries: 0,
err: true,
},
},
{
name: "no error",
fields: fields{
maxAttempts: 3,
waiter: Duration(time.Millisecond),
},
f: func() error {
return nil
},
want: want{
retries: 0,
err: false,
},
},
{
name: "max wait - max wait wins",
fields: fields{
maxAttempts: 3,
maxWait: time.Millisecond,
waiter: Duration(time.Minute),
},
f: func() error {
return errors.New("boom")
},
want: want{
retries: 3,
waitDuration: time.Millisecond,
err: true,
},
}, {
name: "max wait - waiter wins",
fields: fields{
maxAttempts: 3,
maxWait: time.Minute,
waiter: Duration(time.Millisecond),
},
f: func() error {
return errors.New("boom")
},
want: want{
retries: 3,
waitDuration: time.Millisecond,
err: true,
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
sleeperSpy := &sleeperSpy{}
sleep = sleeperSpy
defer func() {
sleep = defaultSleeper{}
}()
r := &Retriable{
maxAttempts: tt.fields.maxAttempts,
maxWait: tt.fields.maxWait,
waiter: tt.fields.waiter,
}
err := r.Do(tt.f)
if tt.want.err {
require.Error(t, err)
} else {
require.NoError(t, err)
}
assert.Equal(t, tt.want.retries, r.retries)
assert.Equal(t, tt.want.waitDuration, sleeperSpy.d)
})
}
}
func TestDuration(t *testing.T) {
type inputs struct {
attempt uint
err error
}
tests := []struct {
name string
d time.Duration
inputs inputs
want time.Duration
}{
{
name: "returns duration",
d: time.Second,
inputs: inputs{
attempt: 1,
},
want: time.Second,
},
{
name: "returns duration regardless of attempt",
d: time.Second,
inputs: inputs{
attempt: 3,
},
want: time.Second,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got := Duration(tt.d)(tt.inputs.attempt, tt.inputs.err)
assert.Equal(t, got, tt.want)
})
}
}
func TestIncrementalBackoff(t *testing.T) {
type inputs struct {
attempt uint
err error
}
tests := []struct {
name string
d time.Duration
inputs inputs
want time.Duration
}{
{
name: "returns duration",
d: time.Second,
inputs: inputs{
attempt: 1,
},
want: time.Second,
},
{
name: "returns duration with linear backoff",
d: time.Second,
inputs: inputs{
attempt: 3,
},
want: 3 * time.Second,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got := IncrementalBackoff(tt.d)(tt.inputs.attempt, tt.inputs.err)
assert.Equal(t, got, tt.want)
})
}
}
func TestExponentialBackoff(t *testing.T) {
type inputs struct {
attempt uint
err error
}
tests := []struct {
name string
d time.Duration
inputs inputs
want time.Duration
}{
{
name: "returns duration",
d: time.Second,
inputs: inputs{
attempt: 1,
},
want: time.Second,
},
{
name: "returns duration with exponential backoff",
d: time.Second,
inputs: inputs{
attempt: 3,
},
want: 9 * time.Second,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got := ExponentialBackoff(tt.d)(tt.inputs.attempt, tt.inputs.err)
assert.Equal(t, got, tt.want)
})
}
}
func TestDefault(t *testing.T) {
got := Default()
want := &Retriable{
maxAttempts: 3,
waiter: Duration(time.Second),
}
assert.Equal(t, want.maxAttempts, got.maxAttempts)
assert.ObjectsAreEqual(want.waiter, got.waiter)
}
func TestNew(t *testing.T) {
type want struct {
maxAttempts uint
maxDuration time.Duration
waiter Waiter
}
tests := []struct {
name string
opts []Option
want want
}{
{
name: "default",
want: want{
maxAttempts: 3,
waiter: Duration(time.Second),
},
},
{
name: "with max attempts",
opts: []Option{WithMaxAttempts(5)},
want: want{
maxAttempts: 5,
waiter: Duration(time.Second),
},
},
{
name: "with max wait",
opts: []Option{WithMaxWait(5 * time.Second)},
want: want{
maxAttempts: 3,
maxDuration: 5 * time.Second,
waiter: Duration(time.Second),
},
},
{
name: "with waiter",
opts: []Option{WithWaiter(IncrementalBackoff(time.Second))},
want: want{
maxAttempts: 3,
waiter: IncrementalBackoff(time.Second),
},
},
{
name: "with max attempts and waiter",
opts: []Option{WithMaxAttempts(5), WithWaiter(IncrementalBackoff(time.Second))},
want: want{
maxAttempts: 5,
waiter: IncrementalBackoff(time.Second),
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got := New(tt.opts...)
assert.Equal(t, tt.want.maxAttempts, got.maxAttempts)
assert.Equal(t, tt.want.maxDuration, got.maxWait)
assert.ObjectsAreEqual(tt.want.waiter, got.waiter)
})
}
}