forked from gocraft/work
-
Notifications
You must be signed in to change notification settings - Fork 4
/
worker_pool_test.go
271 lines (230 loc) · 9.05 KB
/
worker_pool_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
package work
import (
"bytes"
"context"
"fmt"
"reflect"
"testing"
"time"
"github.com/gomodule/redigo/redis"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"go.opentelemetry.io/otel/sdk/trace"
"go.opentelemetry.io/otel/sdk/trace/tracetest"
)
type tstCtx struct {
bytes.Buffer
}
func (*tstCtx) genericHandler(*Job) error { return nil }
func (*tstCtx) genericContextHandler(context.Context, *Job) error { return nil }
func (c *tstCtx) record(s string) {
_, _ = c.WriteString(s)
}
var tstCtxType = reflect.TypeOf(tstCtx{})
func TestWorkerPoolHandlerValidations(t *testing.T) {
var cases = []struct {
fn interface{}
good bool
}{
{func(j *Job) error { return nil }, true},
{func(ctx context.Context, j *Job) error { return nil }, true},
{func(c *tstCtx, j *Job) error { return nil }, true},
{func(c *tstCtx, j *Job) {}, false},
{func(c *tstCtx, j *Job) string { return "" }, false},
{func(c *tstCtx, j *Job) (error, string) { return nil, "" }, false},
{func(c *tstCtx) error { return nil }, false},
{func(c tstCtx, j *Job) error { return nil }, false},
{func() error { return nil }, false},
{func(c *tstCtx, j *Job, wat string) error { return nil }, false},
}
for i, testCase := range cases {
r := isValidHandlerType(tstCtxType, reflect.ValueOf(testCase.fn))
if testCase.good != r {
t.Errorf("idx %d: should return %v but returned %v", i, testCase.good, r)
}
}
}
func TestWorkerPoolMiddlewareValidations(t *testing.T) {
var cases = []struct {
fn interface{}
good bool
}{
{func(j *Job, n NextMiddlewareFunc) error { return nil }, true},
{func(ctx context.Context, j *Job, n JobContextHandler) error { return nil }, true},
{func(c *tstCtx, j *Job, n NextMiddlewareFunc) error { return nil }, true},
{func(c *tstCtx, j *Job) error { return nil }, false},
{func(c *tstCtx, j *Job, n NextMiddlewareFunc) {}, false},
{func(c *tstCtx, j *Job, n NextMiddlewareFunc) string { return "" }, false},
{func(c *tstCtx, j *Job, n NextMiddlewareFunc) (error, string) { return nil, "" }, false},
{func(c *tstCtx, n NextMiddlewareFunc) error { return nil }, false},
{func(c tstCtx, j *Job, n NextMiddlewareFunc) error { return nil }, false},
{func() error { return nil }, false},
{func(c *tstCtx, j *Job, wat string) error { return nil }, false},
{func(c *tstCtx, j *Job, n NextMiddlewareFunc, wat string) error { return nil }, false},
}
for i, testCase := range cases {
r := isValidMiddlewareType(tstCtxType, reflect.ValueOf(testCase.fn))
if testCase.good != r {
t.Errorf("idx %d: should return %v but returned %v", i, testCase.good, r)
}
}
}
func TestWorkerPoolStartStop(t *testing.T) {
pool := newTestPool(":6379")
ns := "work"
wp := NewWorkerPool(TestContext{}, 10, ns, pool)
wp.Start()
wp.Start()
wp.Stop()
wp.Stop()
wp.Start()
wp.Stop()
}
func TestWorkerPoolValidations(t *testing.T) {
pool := newTestPool(":6379")
ns := "work"
wp := NewWorkerPool(TestContext{}, 10, ns, pool)
func() {
defer func() {
if panicErr := recover(); panicErr != nil {
assert.Regexp(t, "Your middleware function can have one of these signatures", fmt.Sprintf("%v", panicErr))
} else {
t.Errorf("expected a panic when using bad middleware")
}
}()
wp.Middleware(TestWorkerPoolValidations)
}()
func() {
defer func() {
if panicErr := recover(); panicErr != nil {
assert.Regexp(t, "Your handler function can have one of these signatures", fmt.Sprintf("%v", panicErr))
} else {
t.Errorf("expected a panic when using a bad handler")
}
}()
wp.Job("wat", TestWorkerPoolValidations)
}()
}
func TestWorkersPoolRunSingleThreaded(t *testing.T) {
pool := newTestPool(":6379")
ns := "work"
job1 := "job1"
numJobs, concurrency, sleepTime := 5, 5, 2
wp := setupTestWorkerPool(pool, ns, job1, concurrency, JobOptions{Priority: 1, MaxConcurrency: 1})
wp.Start()
// enqueue some jobs
enqueuer := NewEnqueuer(ns, pool)
for i := 0; i < numJobs; i++ {
_, err := enqueuer.Enqueue(job1, Q{"sleep": sleepTime})
assert.Nil(t, err)
}
// make sure we've enough jobs queued up to make an interesting test
jobsQueued := listSize(pool, redisKeyJobs(ns, job1))
assert.True(t, jobsQueued >= 3, "should be at least 3 jobs queued up, but only found %v", jobsQueued)
// now make sure the during the duration of job execution there is never > 1 job in flight
start := time.Now()
totalRuntime := time.Duration(sleepTime*numJobs) * time.Millisecond
time.Sleep(10 * time.Millisecond)
for time.Since(start) < totalRuntime {
// jobs in progress, lock count for the job and lock info for the pool should never exceed 1
jobsInProgress := listSize(pool, redisKeyJobsInProgress(ns, wp.workerPoolID, job1))
assert.True(t, jobsInProgress <= 1, "jobsInProgress should never exceed 1: actual=%d", jobsInProgress)
jobLockCount := getInt64(pool, redisKeyJobsLock(ns, job1))
assert.True(t, jobLockCount <= 1, "global lock count for job should never exceed 1, got: %v", jobLockCount)
wpLockCount := hgetInt64(pool, redisKeyJobsLockInfo(ns, job1), wp.workerPoolID)
assert.True(t, wpLockCount <= 1, "lock count for the worker pool should never exceed 1: actual=%v", wpLockCount)
time.Sleep(time.Duration(sleepTime) * time.Millisecond)
}
wp.Drain()
wp.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, wp.workerPoolID, job1)))
assert.EqualValues(t, 0, getInt64(pool, redisKeyJobsLock(ns, job1)))
assert.EqualValues(t, 0, hgetInt64(pool, redisKeyJobsLockInfo(ns, job1), wp.workerPoolID))
}
func TestWorkerPoolPauseSingleThreadedJobs(t *testing.T) {
pool := newTestPool(":6379")
ns, job1 := "work", "job1"
numJobs, concurrency, sleepTime := 5, 5, 2
wp := setupTestWorkerPool(pool, ns, job1, concurrency, JobOptions{Priority: 1, MaxConcurrency: 1})
wp.Start()
// enqueue some jobs
enqueuer := NewEnqueuer(ns, pool)
for i := 0; i < numJobs; i++ {
_, err := enqueuer.Enqueue(job1, Q{"sleep": sleepTime})
assert.Nil(t, err)
}
// provide time for jobs to process
time.Sleep(10 * time.Millisecond)
// pause work, provide time for outstanding jobs to finish and queue up another job
pauseJobs(ns, job1, pool)
time.Sleep(2 * time.Millisecond)
_, err := enqueuer.Enqueue(job1, Q{"sleep": sleepTime})
assert.Nil(t, err)
// check that we still have some jobs to process
assert.True(t, listSize(pool, redisKeyJobs(ns, job1)) >= 1)
// now make sure no jobs get started until we unpause
start := time.Now()
totalRuntime := time.Duration(sleepTime*numJobs) * time.Millisecond
for time.Since(start) < totalRuntime {
assert.EqualValues(t, 0, listSize(pool, redisKeyJobsInProgress(ns, wp.workerPoolID, job1)))
// lock count for the job and lock info for the pool should both be at 1 while job is running
assert.EqualValues(t, 0, getInt64(pool, redisKeyJobsLock(ns, job1)))
assert.EqualValues(t, 0, hgetInt64(pool, redisKeyJobsLockInfo(ns, job1), wp.workerPoolID))
time.Sleep(time.Duration(sleepTime) * time.Millisecond)
}
// unpause work and get past the backoff time
unpauseJobs(ns, job1, pool)
time.Sleep(10 * time.Millisecond)
wp.Drain()
wp.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, wp.workerPoolID, job1)))
assert.EqualValues(t, 0, getInt64(pool, redisKeyJobsLock(ns, job1)))
assert.EqualValues(t, 0, hgetInt64(pool, redisKeyJobsLockInfo(ns, job1), wp.workerPoolID))
}
func TestWorkerPoolTracing(t *testing.T) {
pool := newTestPool(":6379")
ns := "work"
jobName := "jobName"
cleanKeyspace(ns, pool)
exp := tracetest.NewInMemoryExporter()
tp := trace.NewTracerProvider(trace.WithSyncer(exp))
ctx, span := tp.Tracer("").Start(context.Background(), "enqueue")
span.End()
enqueuer := NewEnqueuer(ns, pool)
_, err := enqueuer.EnqueueContext(ctx, jobName, Q{"a": "b"})
require.NoError(t, err)
wp := NewWorkerPool(struct{}{}, 2, ns, pool)
wp.Job(jobName, func(ctx context.Context, j *Job) error {
_, span := tp.Tracer("lib").Start(ctx, "exec")
defer span.End()
return nil
})
wp.Start()
wp.Drain()
wp.Stop()
finishedSpans := exp.GetSpans()
require.Len(t, finishedSpans, 2)
assert.Equal(t, "enqueue", finishedSpans[0].Name)
assert.Equal(t, "exec", finishedSpans[1].Name)
assert.Equal(t, finishedSpans[0].SpanContext.TraceID(), finishedSpans[1].SpanContext.TraceID())
}
// Test Helpers
func (t *TestContext) SleepyJob(job *Job) error {
sleepTime := time.Duration(job.ArgInt64("sleep"))
time.Sleep(sleepTime * time.Millisecond)
return nil
}
func setupTestWorkerPool(pool *redis.Pool, namespace, jobName string, concurrency int, jobOpts JobOptions) *WorkerPool {
deleteQueue(pool, namespace, jobName)
deleteRetryAndDead(pool, namespace)
_ = deletePausedAndLockedKeys(namespace, jobName, pool)
wp := NewWorkerPool(TestContext{}, uint(concurrency), namespace, pool)
wp.JobWithOptions(jobName, jobOpts, (*TestContext).SleepyJob)
// reset the backoff times to help with testing
sleepBackoffs = []time.Duration{time.Millisecond * 10}
return wp
}