-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcelery_test.go
284 lines (256 loc) · 5.9 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
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 TestConsumeSequentially(t *testing.T) {
app := NewApp(
WithLogger(log.NewJSONLogger(os.Stderr)),
WithMaxWorkers(1),
)
if err := app.Delay("t1", "q"); err != nil {
t.Fatal(err)
}
if err := app.Delay("t2", "q"); 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 t1Done, t2Done atomic.Bool
app.Register("t1", "q", func(ctx context.Context, p *TaskParam) error {
time.Sleep(100 * time.Millisecond)
if t2Done.Load() {
t.Error("t2 finished before t1")
}
t1Done.Store(true)
return nil
})
app.Register("t2", "q", func(ctx context.Context, p *TaskParam) error {
if !t1Done.Load() {
t.Error("t2 started before t1 finished")
}
t2Done.Store(true)
return nil
})
if err := app.Run(ctx); err != nil {
t.Error(err)
}
}