forked from gocraft/work
-
Notifications
You must be signed in to change notification settings - Fork 4
/
worker_test.go
732 lines (606 loc) · 19.2 KB
/
worker_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
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
package work
import (
"fmt"
"io"
"strconv"
"sync"
"sync/atomic"
"testing"
"time"
"github.com/gomodule/redigo/redis"
"github.com/stretchr/testify/assert"
)
func TestWorkerBasics(t *testing.T) {
pool := newTestPool(":6379")
ns := "work"
job1 := "job1"
job2 := "job2"
job3 := "job3"
cleanKeyspace(ns, pool)
var arg1 float64
var arg2 float64
var arg3 float64
jobTypes := make(map[string]*jobType)
jobTypes[job1] = &jobType{
Name: job1,
JobOptions: JobOptions{Priority: 1},
isGeneric: true,
genericHandler: func(job *Job) error {
arg1 = job.Args["a"].(float64)
return nil
},
}
jobTypes[job2] = &jobType{
Name: job2,
JobOptions: JobOptions{Priority: 1},
isGeneric: true,
genericHandler: func(job *Job) error {
arg2 = job.Args["a"].(float64)
return nil
},
}
jobTypes[job3] = &jobType{
Name: job3,
JobOptions: JobOptions{Priority: 1},
isGeneric: true,
genericHandler: func(job *Job) error {
arg3 = job.Args["a"].(float64)
return nil
},
}
enqueuer := NewEnqueuer(ns, pool)
_, err := enqueuer.Enqueue(job1, Q{"a": 1})
assert.Nil(t, err)
_, err = enqueuer.Enqueue(job2, Q{"a": 2})
assert.Nil(t, err)
_, err = enqueuer.Enqueue(job3, Q{"a": 3})
assert.Nil(t, err)
w := newWorker(ns, "1", pool, tstCtxType, nil, jobTypes, noopLogger, nil)
w.start()
w.drain()
w.stop()
// make sure the jobs ran (side effect of setting these variables to the job arguments)
assert.EqualValues(t, 1.0, arg1)
assert.EqualValues(t, 2.0, arg2)
assert.EqualValues(t, 3.0, arg3)
// nothing in retries or dead
assert.EqualValues(t, 0, zsetSize(pool, redisKeyRetry(ns)))
assert.EqualValues(t, 0, zsetSize(pool, redisKeyDead(ns)))
// Nothing in the queues or in-progress queues
assert.EqualValues(t, 0, listSize(pool, redisKeyJobs(ns, job1)))
assert.EqualValues(t, 0, listSize(pool, redisKeyJobs(ns, job2)))
assert.EqualValues(t, 0, listSize(pool, redisKeyJobs(ns, job3)))
assert.EqualValues(t, 0, listSize(pool, redisKeyJobsInProgress(ns, "1", job1)))
assert.EqualValues(t, 0, listSize(pool, redisKeyJobsInProgress(ns, "1", job2)))
assert.EqualValues(t, 0, listSize(pool, redisKeyJobsInProgress(ns, "1", job3)))
// nothing in the worker status
h := readHash(pool, redisKeyWorkerObservation(ns, w.workerID))
assert.EqualValues(t, 0, len(h))
}
func TestWorkerInProgress(t *testing.T) {
pool := newTestPool(":6379")
ns := "work"
job1 := "job1"
deleteQueue(pool, ns, job1)
deleteRetryAndDead(pool, ns)
deletePausedAndLockedKeys(ns, job1, pool)
jobTypes := make(map[string]*jobType)
jobTypes[job1] = &jobType{
Name: job1,
JobOptions: JobOptions{Priority: 1},
isGeneric: true,
genericHandler: func(job *Job) error {
time.Sleep(30 * time.Millisecond)
return nil
},
}
enqueuer := NewEnqueuer(ns, pool)
_, err := enqueuer.Enqueue(job1, Q{"a": 1})
assert.Nil(t, err)
w := newWorker(ns, "1", pool, tstCtxType, nil, jobTypes, noopLogger, nil)
w.start()
// instead of w.forceIter(), we'll wait for 10 milliseconds to let the job start
// The job will then sleep for 30ms. In that time, we should be able to see something in the in-progress queue.
time.Sleep(10 * time.Millisecond)
assert.EqualValues(t, 0, listSize(pool, redisKeyJobs(ns, job1)))
assert.EqualValues(t, 1, listSize(pool, redisKeyJobsInProgress(ns, "1", job1)))
assert.EqualValues(t, 1, getInt64(pool, redisKeyJobsLock(ns, job1)))
assert.EqualValues(t, 1, hgetInt64(pool, redisKeyJobsLockInfo(ns, job1), w.poolID))
// nothing in the worker status
w.observer.drain()
h := readHash(pool, redisKeyWorkerObservation(ns, w.workerID))
assert.Equal(t, job1, h["job_name"])
assert.Equal(t, `{"a":1}`, h["args"])
// NOTE: we could check for job_id and started_at, but it's a PITA and it's tested in observer_test.
w.drain()
w.stop()
// At this point, it should all be empty.
assert.EqualValues(t, 0, listSize(pool, redisKeyJobs(ns, job1)))
assert.EqualValues(t, 0, listSize(pool, redisKeyJobsInProgress(ns, "1", job1)))
// nothing in the worker status
h = readHash(pool, redisKeyWorkerObservation(ns, w.workerID))
assert.EqualValues(t, 0, len(h))
}
func TestWorkerRetry(t *testing.T) {
pool := newTestPool(":6379")
ns := "work"
job1 := "job1"
deleteQueue(pool, ns, job1)
deleteRetryAndDead(pool, ns)
deletePausedAndLockedKeys(ns, job1, pool)
jobTypes := make(map[string]*jobType)
jobTypes[job1] = &jobType{
Name: job1,
JobOptions: JobOptions{Priority: 1, MaxFails: 3},
isGeneric: true,
genericHandler: func(job *Job) error {
return fmt.Errorf("sorry kid")
},
}
enqueuer := NewEnqueuer(ns, pool)
_, err := enqueuer.Enqueue(job1, Q{"a": 1})
assert.Nil(t, err)
w := newWorker(ns, "1", pool, tstCtxType, nil, jobTypes, noopLogger, nil)
w.start()
w.drain()
w.stop()
// Ensure the right stuff is in our queues:
assert.EqualValues(t, 1, zsetSize(pool, redisKeyRetry(ns)))
assert.EqualValues(t, 0, zsetSize(pool, redisKeyDead(ns)))
assert.EqualValues(t, 0, listSize(pool, redisKeyJobs(ns, job1)))
assert.EqualValues(t, 0, listSize(pool, redisKeyJobsInProgress(ns, "1", job1)))
assert.EqualValues(t, 0, getInt64(pool, redisKeyJobsLock(ns, job1)))
assert.EqualValues(t, 0, hgetInt64(pool, redisKeyJobsLockInfo(ns, job1), w.poolID))
// Get the job on the retry queue
ts, job := jobOnZset(pool, redisKeyRetry(ns))
assert.True(t, ts > nowEpochSeconds()) // enqueued in the future
assert.True(t, ts < (nowEpochSeconds()+80)) // but less than a minute from now (first failure)
assert.Equal(t, job1, job.Name) // basics are preserved
assert.EqualValues(t, 1, job.Fails)
assert.Equal(t, "sorry kid", job.LastErr)
assert.True(t, (nowEpochSeconds()-job.FailedAt) <= 2)
}
// Check if a custom backoff function functions functionally.
func TestWorkerRetryWithCustomBackoff(t *testing.T) {
pool := newTestPool(":6379")
ns := "work"
job1 := "job1"
deleteQueue(pool, ns, job1)
deleteRetryAndDead(pool, ns)
calledCustom := 0
custombo := func(job *Job) int64 {
calledCustom++
return 5 // Always 5 seconds
}
jobTypes := make(map[string]*jobType)
jobTypes[job1] = &jobType{
Name: job1,
JobOptions: JobOptions{Priority: 1, MaxFails: 3, Backoff: custombo},
isGeneric: true,
genericHandler: func(job *Job) error {
return fmt.Errorf("sorry kid")
},
}
enqueuer := NewEnqueuer(ns, pool)
_, err := enqueuer.Enqueue(job1, Q{"a": 1})
assert.Nil(t, err)
w := newWorker(ns, "1", pool, tstCtxType, nil, jobTypes, noopLogger, nil)
w.start()
w.drain()
w.stop()
// Ensure the right stuff is in our queues:
assert.EqualValues(t, 1, zsetSize(pool, redisKeyRetry(ns)))
assert.EqualValues(t, 0, zsetSize(pool, redisKeyDead(ns)))
assert.EqualValues(t, 0, listSize(pool, redisKeyJobs(ns, job1)))
assert.EqualValues(t, 0, listSize(pool, redisKeyJobsInProgress(ns, "1", job1)))
// Get the job on the retry queue
ts, job := jobOnZset(pool, redisKeyRetry(ns))
assert.True(t, ts > nowEpochSeconds()) // enqueued in the future
assert.True(t, ts < (nowEpochSeconds()+10)) // but less than ten secs in
assert.Equal(t, job1, job.Name) // basics are preserved
assert.EqualValues(t, 1, job.Fails)
assert.Equal(t, "sorry kid", job.LastErr)
assert.True(t, (nowEpochSeconds()-job.FailedAt) <= 2)
assert.Equal(t, 1, calledCustom)
}
func TestWorkerDead(t *testing.T) {
pool := newTestPool(":6379")
ns := "work"
job1 := "job1"
job2 := "job2"
deleteQueue(pool, ns, job1)
deleteQueue(pool, ns, job2)
deleteRetryAndDead(pool, ns)
deletePausedAndLockedKeys(ns, job1, pool)
jobTypes := make(map[string]*jobType)
jobTypes[job1] = &jobType{
Name: job1,
JobOptions: JobOptions{Priority: 1, MaxFails: 0},
isGeneric: true,
genericHandler: func(job *Job) error {
return fmt.Errorf("sorry kid1")
},
}
jobTypes[job2] = &jobType{
Name: job2,
JobOptions: JobOptions{Priority: 1, MaxFails: 0, SkipDead: true},
isGeneric: true,
genericHandler: func(job *Job) error {
return fmt.Errorf("sorry kid2")
},
}
enqueuer := NewEnqueuer(ns, pool)
_, err := enqueuer.Enqueue(job1, nil)
assert.Nil(t, err)
_, err = enqueuer.Enqueue(job2, nil)
assert.Nil(t, err)
w := newWorker(ns, "1", pool, tstCtxType, nil, jobTypes, noopLogger, nil)
w.start()
w.drain()
w.stop()
// Ensure the right stuff is in our queues:
assert.EqualValues(t, 0, zsetSize(pool, redisKeyRetry(ns)))
assert.EqualValues(t, 1, zsetSize(pool, redisKeyDead(ns)))
assert.EqualValues(t, 0, listSize(pool, redisKeyJobs(ns, job1)))
assert.EqualValues(t, 0, listSize(pool, redisKeyJobsInProgress(ns, "1", job1)))
assert.EqualValues(t, 0, getInt64(pool, redisKeyJobsLock(ns, job1)))
assert.EqualValues(t, 0, hgetInt64(pool, redisKeyJobsLockInfo(ns, job1), w.poolID))
assert.EqualValues(t, 0, listSize(pool, redisKeyJobs(ns, job2)))
assert.EqualValues(t, 0, listSize(pool, redisKeyJobsInProgress(ns, "1", job2)))
assert.EqualValues(t, 0, getInt64(pool, redisKeyJobsLock(ns, job2)))
assert.EqualValues(t, 0, hgetInt64(pool, redisKeyJobsLockInfo(ns, job2), w.poolID))
// Get the job on the dead queue
ts, job := jobOnZset(pool, redisKeyDead(ns))
assert.True(t, ts <= nowEpochSeconds())
assert.Equal(t, job1, job.Name) // basics are preserved
assert.EqualValues(t, 1, job.Fails)
assert.Equal(t, "sorry kid1", job.LastErr)
assert.True(t, (nowEpochSeconds()-job.FailedAt) <= 2)
}
func TestWorkersPaused(t *testing.T) {
pool := newTestPool(":6379")
ns := "work"
job1 := "job1"
deleteQueue(pool, ns, job1)
deleteRetryAndDead(pool, ns)
deletePausedAndLockedKeys(ns, job1, pool)
jobTypes := make(map[string]*jobType)
jobTypes[job1] = &jobType{
Name: job1,
JobOptions: JobOptions{Priority: 1},
isGeneric: true,
genericHandler: func(job *Job) error {
time.Sleep(30 * time.Millisecond)
return nil
},
}
enqueuer := NewEnqueuer(ns, pool)
_, err := enqueuer.Enqueue(job1, Q{"a": 1})
assert.Nil(t, err)
w := newWorker(ns, "1", pool, tstCtxType, nil, jobTypes, noopLogger, nil)
// pause the jobs prior to starting
err = pauseJobs(ns, job1, pool)
assert.Nil(t, err)
// reset the backoff times to help with testing
sleepBackoffs = []time.Duration{time.Millisecond * 10}
w.start()
// make sure the jobs stay in the still in the run queue and not moved to in progress
for i := 0; i < 2; i++ {
time.Sleep(10 * time.Millisecond)
assert.EqualValues(t, 1, listSize(pool, redisKeyJobs(ns, job1)))
assert.EqualValues(t, 0, listSize(pool, redisKeyJobsInProgress(ns, "1", job1)))
}
// now unpause the jobs and check that they start
err = unpauseJobs(ns, job1, pool)
assert.Nil(t, err)
// sleep through 2 backoffs to make sure we allow enough time to start running
time.Sleep(20 * time.Millisecond)
assert.EqualValues(t, 0, listSize(pool, redisKeyJobs(ns, job1)))
assert.EqualValues(t, 1, listSize(pool, redisKeyJobsInProgress(ns, "1", job1)))
w.observer.drain()
h := readHash(pool, redisKeyWorkerObservation(ns, w.workerID))
assert.Equal(t, job1, h["job_name"])
assert.Equal(t, `{"a":1}`, h["args"])
w.drain()
w.stop()
// At this point, it should all be empty.
assert.EqualValues(t, 0, listSize(pool, redisKeyJobs(ns, job1)))
assert.EqualValues(t, 0, listSize(pool, redisKeyJobsInProgress(ns, "1", job1)))
// nothing in the worker status
h = readHash(pool, redisKeyWorkerObservation(ns, w.workerID))
assert.EqualValues(t, 0, len(h))
}
// Test that in the case of an unavailable Redis server,
// the worker loop exits in the case of a WorkerPool.Stop
func TestStop(t *testing.T) {
redisPool := &redis.Pool{
Dial: func() (redis.Conn, error) {
c, err := redis.Dial("tcp", "notworking:6379", redis.DialConnectTimeout(1*time.Second))
if err != nil {
return nil, err
}
return c, nil
},
}
wp := NewWorkerPool(TestContext{}, 10, "work", redisPool)
wp.Start()
wp.Stop()
}
func BenchmarkJobProcessing(b *testing.B) {
pool := newTestPool(":6379")
ns := "work"
cleanKeyspace(ns, pool)
enqueuer := NewEnqueuer(ns, pool)
for i := 0; i < b.N; i++ {
_, err := enqueuer.Enqueue("wat", nil)
if err != nil {
panic(err)
}
}
wp := NewWorkerPool(TestContext{}, 10, ns, pool)
wp.Job("wat", func(c *TestContext, job *Job) error {
return nil
})
b.ResetTimer()
wp.Start()
wp.Drain()
wp.Stop()
}
func newTestPool(addr string) *redis.Pool {
return &redis.Pool{
MaxActive: 10,
MaxIdle: 10,
IdleTimeout: 240 * time.Second,
Dial: func() (redis.Conn, error) {
c, err := redis.Dial("tcp", addr)
if err != nil {
return nil, err
}
return c, nil
},
Wait: true,
}
}
func deleteQueue(pool *redis.Pool, namespace, jobName string) {
conn := pool.Get()
defer conn.Close()
_, err := conn.Do("DEL", redisKeyJobs(namespace, jobName), redisKeyJobsInProgress(namespace, "1", jobName))
if err != nil {
panic("could not delete queue: " + err.Error())
}
}
func deleteRetryAndDead(pool *redis.Pool, namespace string) {
conn := pool.Get()
defer conn.Close()
_, err := conn.Do("DEL", redisKeyRetry(namespace), redisKeyDead(namespace))
if err != nil {
panic("could not delete retry/dead queue: " + err.Error())
}
}
func zsetSize(pool *redis.Pool, key string) int64 {
conn := pool.Get()
defer conn.Close()
v, err := redis.Int64(conn.Do("ZCARD", key))
if err != nil {
panic("could not get ZSET size: " + err.Error())
}
return v
}
func listSize(pool *redis.Pool, key string) int64 {
conn := pool.Get()
defer conn.Close()
v, err := redis.Int64(conn.Do("LLEN", key))
if err != nil {
panic("could not get list length: " + err.Error())
}
return v
}
func getInt64(pool *redis.Pool, key string) int64 {
conn := pool.Get()
defer conn.Close()
v, err := redis.Int64(conn.Do("GET", key))
if err != nil {
panic("could not GET int64: " + err.Error())
}
return v
}
func hgetInt64(pool *redis.Pool, redisKey, hashKey string) int64 {
conn := pool.Get()
defer conn.Close()
v, err := redis.Int64(conn.Do("HGET", redisKey, hashKey))
if err != nil {
panic("could not HGET int64: " + err.Error())
}
return v
}
func jobOnZset(pool *redis.Pool, key string) (int64, *Job) {
conn := pool.Get()
defer conn.Close()
v, err := conn.Do("ZRANGE", key, 0, 0, "WITHSCORES")
if err != nil {
panic("ZRANGE error: " + err.Error())
}
vv := v.([]interface{})
job, err := newJob(vv[0].([]byte), nil, nil)
if err != nil {
panic("couldn't get job: " + err.Error())
}
score := vv[1].([]byte)
scoreInt, err := strconv.ParseInt(string(score), 10, 64)
if err != nil {
panic("couldn't parse int: " + err.Error())
}
return scoreInt, job
}
func jobOnQueue(pool *redis.Pool, key string) *Job {
conn := pool.Get()
defer conn.Close()
rawJSON, err := redis.Bytes(conn.Do("RPOP", key))
if err != nil {
panic("could RPOP from job queue: " + err.Error())
}
job, err := newJob(rawJSON, nil, nil)
if err != nil {
panic("couldn't get job: " + err.Error())
}
return job
}
func knownJobs(pool *redis.Pool, key string) []string {
conn := pool.Get()
defer conn.Close()
jobNames, err := redis.Strings(conn.Do("SMEMBERS", key))
if err != nil {
panic(err)
}
return jobNames
}
func cleanKeyspace(namespace string, pool *redis.Pool) {
conn := pool.Get()
defer conn.Close()
keys, err := redis.Strings(conn.Do("KEYS", namespace+"*"))
if err != nil {
panic("could not get keys: " + err.Error())
}
for _, k := range keys {
if _, err := conn.Do("DEL", k); err != nil {
panic("could not del: " + err.Error())
}
}
}
func pauseJobs(namespace, jobName string, pool *redis.Pool) error {
conn := pool.Get()
defer conn.Close()
if _, err := conn.Do("SET", redisKeyJobsPaused(namespace, jobName), "1"); err != nil {
return err
}
return nil
}
func unpauseJobs(namespace, jobName string, pool *redis.Pool) error {
conn := pool.Get()
defer conn.Close()
if _, err := conn.Do("DEL", redisKeyJobsPaused(namespace, jobName)); err != nil {
return err
}
return nil
}
func deletePausedAndLockedKeys(namespace, jobName string, pool *redis.Pool) error {
conn := pool.Get()
defer conn.Close()
if _, err := conn.Do("DEL", redisKeyJobsPaused(namespace, jobName)); err != nil {
return err
}
if _, err := conn.Do("DEL", redisKeyJobsLock(namespace, jobName)); err != nil {
return err
}
if _, err := conn.Do("DEL", redisKeyJobsLockInfo(namespace, jobName)); err != nil {
return err
}
return nil
}
type emptyCtx struct{}
// Starts up a pool with two workers emptying it as fast as they can
// The pool is Stop()ped while jobs are still going on. Tests that the
// pool processing is really stopped and that it's not first completely
// drained before returning.
// https://github.com/gocraft/work/issues/24
func TestWorkerPoolStop(t *testing.T) {
ns := "will_it_end"
pool := newTestPool(":6379")
var started, stopped int32
num_iters := 30
wp := NewWorkerPool(emptyCtx{}, 2, ns, pool)
wp.Job("sample_job", func(c *emptyCtx, job *Job) error {
atomic.AddInt32(&started, 1)
time.Sleep(1 * time.Second)
atomic.AddInt32(&stopped, 1)
return nil
})
var enqueuer = NewEnqueuer(ns, pool)
for i := 0; i <= num_iters; i++ {
enqueuer.Enqueue("sample_job", Q{})
}
// Start the pool and quit before it has had a chance to complete
// all the jobs.
wp.Start()
time.Sleep(5 * time.Second)
wp.Stop()
if started != stopped {
t.Errorf("Expected that jobs were finished and not killed while processing (started=%d, stopped=%d)", started, stopped)
}
if started >= int32(num_iters) {
t.Errorf("Expected that jobs queue was not completely emptied.")
}
}
func TestWorkerRetryRemoveFromInProgress(t *testing.T) {
originPool := newTestPool(":6379")
pool := newSwitchablePool(originPool)
ns := "work"
job1 := "job1"
cleanKeyspace(ns, originPool)
// reset the backoff times to help with testing
sleepBackoffs = []time.Duration{time.Millisecond * 10}
var wg sync.WaitGroup
wg.Add(1)
jobTypes := map[string]*jobType{
job1: {
Name: job1,
JobOptions: JobOptions{Priority: 1},
isGeneric: true,
genericHandler: func(job *Job) error {
defer wg.Done()
// Connection loss emulation.
pool.Off()
return nil
},
},
}
enqueuer := NewEnqueuer(ns, pool)
_, err := enqueuer.Enqueue(job1, Q{"a": 1})
assert.Nil(t, err)
w := newWorker(ns, "1", pool, tstCtxType, nil, jobTypes, noopLogger, nil)
w.start()
defer w.stop()
wg.Wait()
// One job still in progress.
assert.EqualValues(t, 1, listSize(originPool, redisKeyJobsInProgress(ns, "1", job1)))
pool.On()
time.Sleep(time.Millisecond * 10)
// Nothing in retries or dead.
assert.EqualValues(t, 0, zsetSize(originPool, redisKeyRetry(ns)))
assert.EqualValues(t, 0, zsetSize(originPool, redisKeyDead(ns)))
// Nothing in the queues or in-progress queues.
assert.EqualValues(t, 0, listSize(originPool, redisKeyJobs(ns, job1)))
assert.EqualValues(t, 0, listSize(originPool, redisKeyJobsInProgress(ns, "1", job1)))
}
type switchablePool struct {
pool Pool
off atomic.Bool
}
func newSwitchablePool(pool Pool) *switchablePool {
return &switchablePool{pool: pool}
}
func (p *switchablePool) Get() redis.Conn {
return &switchableConn{p.pool.Get(), &p.off}
}
func (p *switchablePool) On() {
p.off.Store(false)
}
func (p *switchablePool) Off() {
p.off.Store(true)
}
type switchableConn struct {
redis.Conn
off *atomic.Bool
}
func (c *switchableConn) Do(commandName string, args ...interface{}) (reply interface{}, err error) {
if !c.off.Load() {
return c.Conn.Do(commandName, args...)
}
return nil, io.EOF
}
func (c *switchableConn) Send(commandName string, args ...interface{}) error {
if !c.off.Load() {
return c.Conn.Send(commandName, args...)
}
return io.EOF
}