forked from marselester/gopher-celery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
celery_test.go
369 lines (329 loc) · 7.58 KB
/
celery_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
package celery
import (
"context"
"fmt"
"os"
"strings"
"sync/atomic"
"testing"
"time"
"github.com/go-kit/log"
"github.com/marselester/gopher-celery/goredis"
"github.com/marselester/gopher-celery/protocol"
)
func TestExecuteTaskPanic(t *testing.T) {
app := NewApp()
app.Register(
"myproject.apps.myapp.tasks.mytask",
"important",
func(ctx context.Context, p *TaskParam) error {
_ = p.Args()[100]
return nil
},
)
m := protocol.Task{
ID: "0ad73c66-f4c9-4600-bd20-96746e720eed",
Name: "myproject.apps.myapp.tasks.mytask",
Args: []interface{}{"fizz"},
Kwargs: map[string]interface{}{
"b": "bazz",
},
}
want := "unexpected task error"
err := app.executeTask(context.Background(), &m)
if !strings.HasPrefix(err.Error(), want) {
t.Errorf("expected %q got %q", want, err)
}
}
func TestExecuteTaskMiddlewares(t *testing.T) {
// The middlewares are called in the order they were defined, e.g., A -> B -> task.
tests := map[string]struct {
middlewares []Middleware
want string
}{
"A-B-task": {
middlewares: []Middleware{
func(next TaskF) TaskF {
return func(ctx context.Context, p *TaskParam) error {
err := next(ctx, p)
return fmt.Errorf("A -> %w", err)
}
},
func(next TaskF) TaskF {
return func(ctx context.Context, p *TaskParam) error {
err := next(ctx, p)
return fmt.Errorf("B -> %w", err)
}
},
},
want: "A -> B -> task",
},
"A-task": {
middlewares: []Middleware{
func(next TaskF) TaskF {
return func(ctx context.Context, p *TaskParam) error {
err := next(ctx, p)
return fmt.Errorf("A -> %w", err)
}
},
},
want: "A -> task",
},
"empty chain": {
middlewares: []Middleware{},
want: "task",
},
"nil chain": {
middlewares: nil,
want: "task",
},
"nil middleware panic": {
middlewares: []Middleware{nil},
want: "unexpected task error",
},
}
ctx := context.Background()
m := protocol.Task{
ID: "0ad73c66-f4c9-4600-bd20-96746e720eed",
Name: "myproject.apps.myapp.tasks.mytask",
Args: []interface{}{"fizz"},
Kwargs: map[string]interface{}{
"b": "bazz",
},
}
for name, tc := range tests {
t.Run(name, func(t *testing.T) {
app := NewApp(
WithMiddlewares(tc.middlewares...),
)
app.Register(
"myproject.apps.myapp.tasks.mytask",
"important",
func(ctx context.Context, p *TaskParam) error {
return fmt.Errorf("task")
},
)
err := app.executeTask(ctx, &m)
if !strings.HasPrefix(err.Error(), tc.want) {
t.Errorf("expected %q got %q", tc.want, err)
}
})
}
}
func TestProduceAndConsume(t *testing.T) {
app := NewApp(WithLogger(log.NewJSONLogger(os.Stderr)))
err := app.Delay(
"myproject.apps.myapp.tasks.mytask",
"important",
2,
3,
)
if err != nil {
t.Fatal(err)
}
// The test finishes either when ctx times out or the task finishes.
ctx, cancel := context.WithTimeout(context.Background(), time.Second)
t.Cleanup(cancel)
var sum int
app.Register(
"myproject.apps.myapp.tasks.mytask",
"important",
func(ctx context.Context, p *TaskParam) error {
defer cancel()
p.NameArgs("a", "b")
sum = p.MustInt("a") + p.MustInt("b")
return nil
},
)
if err := app.Run(ctx); err != nil {
t.Error(err)
}
want := 5
if want != sum {
t.Errorf("expected sum %d got %d", want, sum)
}
}
func TestProduceAndConsume100times(t *testing.T) {
app := NewApp(WithLogger(log.NewJSONLogger(os.Stderr)))
for i := 0; i < 100; i++ {
err := app.Delay(
"myproject.apps.myapp.tasks.mytask",
"important",
2,
3,
)
if err != nil {
t.Fatal(err)
}
}
// The test finishes either when ctx times out or all the tasks finish.
ctx, cancel := context.WithTimeout(context.Background(), time.Second)
t.Cleanup(cancel)
var sum int32
app.Register(
"myproject.apps.myapp.tasks.mytask",
"important",
func(ctx context.Context, p *TaskParam) error {
p.NameArgs("a", "b")
atomic.AddInt32(
&sum,
int32(p.MustInt("a")+p.MustInt("b")),
)
return nil
},
)
if err := app.Run(ctx); err != nil {
t.Error(err)
}
var want int32 = 500
if want != sum {
t.Errorf("expected sum %d got %d", want, sum)
}
}
func TestGoredisProduceAndConsume100times(t *testing.T) {
app := NewApp(
WithBroker(goredis.NewBroker()),
WithLogger(log.NewJSONLogger(os.Stderr)),
)
for i := 0; i < 100; i++ {
err := app.Delay(
"myproject.apps.myapp.tasks.mytask",
"important",
2,
3,
)
if err != nil {
t.Fatal(err)
}
}
// The test finishes either when ctx times out or all the tasks finish.
ctx, cancel := context.WithTimeout(context.Background(), time.Second)
t.Cleanup(cancel)
var sum int32
app.Register(
"myproject.apps.myapp.tasks.mytask",
"important",
func(ctx context.Context, p *TaskParam) error {
p.NameArgs("a", "b")
atomic.AddInt32(
&sum,
int32(p.MustInt("a")+p.MustInt("b")),
)
return nil
},
)
if err := app.Run(ctx); err != nil {
t.Error(err)
}
var want int32 = 500
if want != sum {
t.Errorf("expected sum %d got %d", want, sum)
}
}
func TestRunWithBlocking_SingleTask(t *testing.T) {
app := NewApp(
WithLogger(log.NewJSONLogger(os.Stderr)),
WithMaxWorkers(1),
WithBlocking(),
)
var executed bool
app.Register(
"myproject.apps.myapp.tasks.singleTask",
"important",
func(ctx context.Context, p *TaskParam) error {
executed = true
return nil
},
)
err := app.Delay(
"myproject.apps.myapp.tasks.singleTask",
"important",
)
if err != nil {
t.Fatal(err)
}
ctx, cancel := context.WithTimeout(context.Background(), 2*time.Second)
defer cancel()
if err := app.Run(ctx); err != nil {
t.Error(err)
}
if !executed {
t.Error("expected task to be executed but it wasn't")
}
}
func TestRunWithBlocking_MultipleTasksSequentially(t *testing.T) {
app := NewApp(
WithLogger(log.NewJSONLogger(os.Stderr)),
WithMaxWorkers(1),
WithBlocking(),
)
var count int32
app.Register(
"myproject.apps.myapp.tasks.sequentialTask",
"important",
func(ctx context.Context, p *TaskParam) error {
atomic.AddInt32(&count, 1)
// Simulate work to ensure tasks execute sequentially
time.Sleep(100 * time.Millisecond)
return nil
},
)
// Queue multiple tasks
for i := 0; i < 5; i++ {
err := app.Delay(
"myproject.apps.myapp.tasks.sequentialTask",
"important",
)
if err != nil {
t.Fatal(err)
}
}
ctx, cancel := context.WithTimeout(context.Background(), 2*time.Second)
defer cancel()
if err := app.Run(ctx); err != nil {
t.Error(err)
}
if count != 5 {
t.Errorf("expected count 5 got %d", count)
}
}
func TestRunWithBlocking_TaskBlockingBehavior(t *testing.T) {
app := NewApp(
WithLogger(log.NewJSONLogger(os.Stderr)),
WithMaxWorkers(1),
WithBlocking(),
)
var task1Done, task2Started bool
app.Register(
"myproject.apps.myapp.tasks.task1",
"important",
func(ctx context.Context, p *TaskParam) error {
time.Sleep(300 * time.Millisecond)
task1Done = true
return nil
},
)
app.Register(
"myproject.apps.myapp.tasks.task2",
"important",
func(ctx context.Context, p *TaskParam) error {
task2Started = task1Done // Task 2 should only start after Task 1 is complete
return nil
},
)
// Queue two tasks
if err := app.Delay("myproject.apps.myapp.tasks.task1", "important"); err != nil {
t.Fatal(err)
}
if err := app.Delay("myproject.apps.myapp.tasks.task2", "important"); err != nil {
t.Fatal(err)
}
ctx, cancel := context.WithTimeout(context.Background(), 2*time.Second)
defer cancel()
if err := app.Run(ctx); err != nil {
t.Error(err)
}
if !task2Started {
t.Error("expected task2 to start after task1 but it didn't")
}
}