-
Notifications
You must be signed in to change notification settings - Fork 0
/
background_test.go
426 lines (368 loc) · 9.26 KB
/
background_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
package background_test
import (
"context"
"fmt"
"sync"
"testing"
"time"
"github.com/kamilsk/retry/v5/strategy"
"github.com/stretchr/testify/assert"
"go.strv.io/background"
"go.strv.io/background/observer"
"go.strv.io/background/task"
)
func Test_NewManager(t *testing.T) {
m := background.NewManager()
assert.NotNil(t, m)
assert.IsType(t, &background.Manager{}, m)
assert.EqualValues(t, 0, m.CountOf(task.TypeOneOff))
assert.EqualValues(t, 0, m.CountOf(task.TypeLoop))
}
func Test_RunTaskExecutesInGoroutine(t *testing.T) {
m := background.NewManager()
proceed := make(chan bool, 1)
m.Run(context.Background(), func(ctx context.Context) error {
// Let the main thread advance a bit
<-proceed
proceed <- true
return nil
})
// If the func is not executed in a goroutine the main thread will not be able to advance and the test will time out
assert.Empty(t, proceed)
proceed <- true
m.Wait()
assert.True(t, <-proceed)
}
func Test_WaitWaitsForPendingTasks(t *testing.T) {
m := background.NewManager()
proceed := make(chan bool, 1)
done := make(chan bool, 1)
var waited bool
m.Run(context.Background(), func(ctx context.Context) error {
// Let the main thread advance a bit
<-proceed
return nil
})
go func() {
m.Wait()
waited = true
done <- true
}()
assert.False(t, waited)
proceed <- true
<-done
assert.True(t, waited)
}
func Test_RunTaskCancelledParentContext(t *testing.T) {
m := background.NewManager()
ctx, cancel := context.WithCancel(context.Background())
proceed := make(chan bool, 1)
m.Run(ctx, func(ctx context.Context) error {
<-proceed
assert.Nil(t, ctx.Err())
return nil
})
cancel()
proceed <- true
m.Wait()
}
func Test_OnTaskAdded(t *testing.T) {
metadata := task.Metadata{"test": "value"}
executed := false
var wg sync.WaitGroup
m := background.NewManagerWithOptions(background.Options{
Observer: observer.Default{
HandleOnTaskAdded: func(ctx context.Context, definition task.Task) {
assert.Equal(t, metadata, definition.Meta)
executed = true
wg.Done()
},
},
})
wg.Add(1)
def := task.Task{
Fn: func(ctx context.Context) error {
return nil
},
Meta: metadata,
}
m.RunTask(context.Background(), def)
wg.Wait()
assert.True(t, executed)
}
func Test_OnTaskSucceeded(t *testing.T) {
metadata := task.Metadata{"test": "value"}
executed := false
var wg sync.WaitGroup
m := background.NewManagerWithOptions(background.Options{
Observer: observer.Default{
HandleOnTaskSucceeded: func(ctx context.Context, definition task.Task) {
assert.Equal(t, metadata, definition.Meta)
executed = true
wg.Done()
},
},
})
wg.Add(1)
def := task.Task{
Fn: func(ctx context.Context) error {
return nil
},
Meta: metadata,
}
m.RunTask(context.Background(), def)
wg.Wait()
assert.True(t, executed)
}
func Test_OnTaskFailed(t *testing.T) {
metadata := task.Metadata{"test": "value"}
executed := false
var wg sync.WaitGroup
m := background.NewManagerWithOptions(background.Options{
Observer: observer.Default{
HandleOnTaskFailed: func(ctx context.Context, definition task.Task, err error) {
assert.Equal(t, metadata, definition.Meta)
assert.Error(t, err)
executed = true
wg.Done()
},
},
})
wg.Add(1)
def := task.Task{
Fn: func(ctx context.Context) error {
return assert.AnError
},
Meta: metadata,
}
m.RunTask(context.Background(), def)
wg.Wait()
assert.True(t, executed)
}
func Test_OnTaskStalled(t *testing.T) {
tests := []struct {
duration time.Duration
shouldExecute bool
}{
{1 * time.Millisecond, false},
{3 * time.Millisecond, false},
{6 * time.Millisecond, true},
{7 * time.Millisecond, true},
}
for _, test := range tests {
t.Run(fmt.Sprintf("duration of %s)", test.duration.String()), func(t *testing.T) {
metadata := task.Metadata{"test": "value"}
executed := false
var wg sync.WaitGroup
if test.shouldExecute == true {
wg.Add(1)
}
m := background.NewManagerWithOptions(background.Options{
StalledThreshold: time.Millisecond * 5,
Observer: observer.Default{
HandleOnTaskStalled: func(ctx context.Context, definition task.Task) {
assert.Equal(t, metadata, definition.Meta)
executed = true
wg.Done()
},
},
})
def := task.Task{
Fn: func(ctx context.Context) error {
<-time.After(test.duration)
return nil
},
Meta: metadata,
}
m.RunTask(context.Background(), def)
m.Run(context.Background(), func(ctx context.Context) error {
return nil
})
wg.Wait()
assert.Equal(t, test.shouldExecute, executed)
})
}
}
func Test_StalledTaskStillCallsOnTaskSucceeded(t *testing.T) {
executed := false
var wg sync.WaitGroup
m := background.NewManagerWithOptions(background.Options{
StalledThreshold: time.Millisecond,
Observer: observer.Default{
HandleOnTaskSucceeded: func(ctx context.Context, definition task.Task) {
executed = true
wg.Done()
},
},
})
wg.Add(1)
m.Run(context.Background(), func(ctx context.Context) error {
<-time.After(time.Millisecond * 3)
return nil
})
wg.Wait()
assert.True(t, executed)
}
func Test_TaskRetryStrategies(t *testing.T) {
var limit uint = 5
var count uint = 0
m := background.NewManager()
def := task.Task{
Fn: func(ctx context.Context) error {
count++
return assert.AnError
},
Retry: []strategy.Strategy{
strategy.Limit(limit),
},
}
m.RunTask(context.Background(), def)
m.Wait()
assert.Equal(t, limit, count)
}
func Test_ManagerRetryStrategies(t *testing.T) {
var limit uint = 5
var count uint = 0
m := background.NewManagerWithOptions(background.Options{
Retry: []strategy.Strategy{
strategy.Limit(limit),
},
})
m.Run(context.Background(), func(ctx context.Context) error {
count++
return assert.AnError
})
m.Wait()
assert.Equal(t, limit, count)
}
func Test_RunTaskTypeLoop(t *testing.T) {
loops := 0
m := background.NewManager()
def := task.Task{
Type: task.TypeLoop,
Fn: func(ctx context.Context) error {
loops++
return nil
},
}
m.RunTask(context.Background(), def)
<-time.After(time.Microsecond * 500)
m.Cancel()
assert.GreaterOrEqual(t, loops, 100)
}
func Test_RunTaskTypeLoop_RetryStrategies(t *testing.T) {
done := make(chan error, 1)
count := 0
m := background.NewManagerWithOptions(background.Options{
Observer: observer.Default{
HandleOnTaskFailed: func(ctx context.Context, definition task.Task, err error) {
done <- err
},
},
})
def := task.Task{
Type: task.TypeLoop,
Fn: func(ctx context.Context) error {
count++
// TODO: Figure out why we need to wait here to avoid test timeout
<-time.After(time.Millisecond)
return assert.AnError
},
Retry: []strategy.Strategy{
strategy.Limit(2),
},
}
m.RunTask(context.Background(), def)
err := <-done
m.Cancel()
assert.Equal(t, assert.AnError, err)
// We cannot guarantee exact count of executions because by the time we cancel the task the loop might have made
// several additional iterations.
assert.GreaterOrEqual(t, count, 2)
}
func Test_RunTaskTypeLoop_CancelledParentContext(t *testing.T) {
m := background.NewManager()
cancellable, cancel := context.WithCancel(context.Background())
proceed := make(chan bool, 1)
done := make(chan error, 1)
var once sync.Once
def := task.Task{
Type: task.TypeLoop,
Fn: func(ctx context.Context) error {
once.Do(func() {
proceed <- true
// Cancel the parent context and send the child context's error out to the test
// The expectation is that the child context will not be cancelled
cancel()
done <- ctx.Err()
})
return nil
},
}
m.RunTask(cancellable, def)
// Make sure we wait for the loop to run at least one iteration before cancelling it
<-proceed
m.Cancel()
err := <-done
assert.Equal(t, nil, err)
}
func Test_CountOf(t *testing.T) {
m := background.NewManager()
assert.Equal(t, 0, m.CountOf(task.TypeOneOff))
assert.Equal(t, 0, m.CountOf(task.TypeLoop))
assert.Equal(t, 0, m.CountOf(task.Type(3)))
def := task.Task{
Type: task.TypeOneOff,
Fn: func(ctx context.Context) error {
return nil
},
}
m.RunTask(context.Background(), def)
assert.Equal(t, 1, m.CountOf(task.TypeOneOff))
assert.Equal(t, 0, m.CountOf(task.TypeLoop))
assert.Equal(t, 0, m.CountOf(task.Type(3)))
m.Wait()
def = task.Task{
Type: task.TypeLoop,
Fn: func(ctx context.Context) error {
return nil
},
}
m.RunTask(context.Background(), def)
assert.Equal(t, 0, m.CountOf(task.TypeOneOff))
assert.Equal(t, 1, m.CountOf(task.TypeLoop))
assert.Equal(t, 0, m.CountOf(task.Type(3)))
m.Cancel()
assert.Equal(t, 0, m.CountOf(task.TypeOneOff))
assert.Equal(t, 0, m.CountOf(task.TypeLoop))
assert.Equal(t, 0, m.CountOf(task.Type(3)))
}
func Test_Close(t *testing.T) {
m := background.NewManager()
proceed := make(chan bool, 1)
def := task.Task{
Type: task.TypeLoop,
Fn: func(ctx context.Context) error {
<-proceed
return nil
},
}
m.RunTask(context.Background(), def)
def = task.Task{
Type: task.TypeOneOff,
Fn: func(ctx context.Context) error {
<-proceed
return nil
},
}
m.RunTask(context.Background(), def)
assert.Equal(t, 1, m.CountOf(task.TypeOneOff))
assert.Equal(t, 1, m.CountOf(task.TypeLoop))
go func() {
proceed <- true
proceed <- true
}()
m.Close()
assert.Equal(t, 0, m.CountOf(task.TypeOneOff))
assert.Equal(t, 0, m.CountOf(task.TypeLoop))
}