-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathprocess_batch_test.go
340 lines (323 loc) · 8.21 KB
/
process_batch_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
package pipeline
import (
"context"
"reflect"
"testing"
"time"
)
func TestProcessBatch(t *testing.T) {
t.Parallel()
const maxTestDuration = time.Second
type args struct {
ctxTimeout time.Duration
maxSize int
maxDuration time.Duration
processor *mockProcessor[[]int]
in <-chan int
}
tests := []struct {
name string
args args
wantOpen bool
}{{
name: "out stays open if in is open",
args: args{
// Cancel the pipeline context half way through the test
ctxTimeout: maxTestDuration / 2,
maxDuration: maxTestDuration,
// Process 2 elements 33% of the total test duration
maxSize: 2,
processor: &mockProcessor[[]int]{
processDuration: maxTestDuration / 3,
cancelDuration: maxTestDuration / 3,
},
// * 10 elements = 165% of the test duration
in: Emit(1, 2, 3, 4, 5, 6, 7, 8, 9, 10),
},
// Therefore the out chan should still be open when the test times out
wantOpen: true,
}, {
name: "out closes if in is closed",
args: args{
// Cancel the pipeline context half way through the test
ctxTimeout: maxTestDuration / 2,
maxDuration: maxTestDuration,
// Process 5 elements 33% of the total test duration
maxSize: 5,
processor: &mockProcessor[[]int]{
processDuration: maxTestDuration / 3,
cancelDuration: maxTestDuration / 3,
},
// * 10 elements = 66% of the test duration
in: Emit(1, 2, 3, 4, 5, 6, 7, 8, 9, 10),
},
// Therefore the out channel should be closed when the test ends
wantOpen: false,
}}
for i := range tests {
tt := tests[i]
t.Run(tt.name, func(t *testing.T) {
t.Parallel()
ctx, cancel := context.WithTimeout(context.Background(), tt.args.ctxTimeout)
defer cancel()
// Process the batch with a timeout of maxTestDuration
open := true
outChan := ProcessBatch[int, int](ctx, tt.args.maxSize, tt.args.maxDuration, tt.args.processor, tt.args.in)
timeout := time.After(maxTestDuration)
loop:
for {
select {
case <-timeout:
break loop
case _, ok := <-outChan:
if !ok {
open = false
break loop
}
}
}
// Expecting the channels open state
if open != tt.wantOpen {
t.Errorf("open = %t, wanted %t", open, tt.wantOpen)
}
})
}
}
func TestProcessBatchConcurrently(t *testing.T) {
t.Parallel()
const maxTestDuration = time.Second
type args struct {
ctxTimeout time.Duration
concurrently int
maxSize int
maxDuration time.Duration
processor *mockProcessor[[]int]
in <-chan int
}
tests := []struct {
name string
args args
wantOpen bool
}{{
name: "out stays open if in is open",
args: args{
ctxTimeout: maxTestDuration / 2,
maxDuration: maxTestDuration,
// Process 1 element for 33% of the total test duration
maxSize: 1,
// * 2x concurrently
concurrently: 2,
processor: &mockProcessor[[]int]{
processDuration: maxTestDuration / 3,
cancelDuration: maxTestDuration / 3,
},
// * 10 elements = 165% of the test duration
in: Emit(1, 2, 3, 4, 5, 6, 7, 8, 9, 10),
},
// Therefore the out chan should still be open when the test times out
wantOpen: true,
}, {
name: "out closes if in is closed",
args: args{
ctxTimeout: maxTestDuration / 2,
maxDuration: maxTestDuration,
// Process 1 element for 33% of the total test duration
maxSize: 1,
// * 5x concurrently
concurrently: 5,
processor: &mockProcessor[[]int]{
processDuration: maxTestDuration / 3,
cancelDuration: maxTestDuration / 3,
},
// * 10 elements = 66% of the test duration
in: Emit(1, 2, 3, 4, 5, 6, 7, 8, 9, 10),
},
// Therefore the out channel should be closed by the end of the test
wantOpen: false,
}}
for i := range tests {
tt := tests[i]
t.Run(tt.name, func(t *testing.T) {
t.Parallel()
ctx, cancel := context.WithTimeout(context.Background(), tt.args.ctxTimeout)
defer cancel()
// Process the batch with a timeout of maxTestDuration
open := true
out := ProcessBatchConcurrently[int, int](ctx, tt.args.concurrently, tt.args.maxSize, tt.args.maxDuration, tt.args.processor, tt.args.in)
timeout := time.After(maxTestDuration)
loop:
for {
select {
case <-timeout:
break loop
case _, ok := <-out:
if !ok {
open = false
break loop
}
}
}
// Expecting the channels open state
if open != tt.wantOpen {
t.Errorf("open = %t, wanted %t", open, tt.wantOpen)
}
})
}
}
func Test_processBatch(t *testing.T) {
t.Parallel()
drain := make(chan int, 10000)
const maxTestDuration = time.Second
type args struct {
ctxTimeout time.Duration
maxSize int
maxDuration time.Duration
processor *mockProcessor[[]int]
in <-chan int
out chan<- int
}
type want struct {
open bool
processed [][]int
canceled [][]int
errs []string
}
tests := []struct {
name string
args args
want want
}{{
name: "returns instantly if in is closed",
args: args{
ctxTimeout: maxTestDuration,
maxSize: 20,
maxDuration: maxTestDuration,
processor: new(mockProcessor[[]int]),
in: func() <-chan int {
in := make(chan int)
close(in)
return in
}(),
out: drain,
},
want: want{
open: false,
},
}, {
name: "processes slices of inputs",
args: args{
ctxTimeout: maxTestDuration,
maxSize: 2,
maxDuration: maxTestDuration,
processor: new(mockProcessor[[]int]),
in: Emit(1, 2, 3, 4, 5, 6, 7, 8, 9, 10),
out: drain,
},
want: want{
open: false,
processed: [][]int{{
1, 2,
}, {
3, 4,
}, {
5, 6,
}, {
7, 8,
}, {
9, 10,
}},
},
}, {
name: "cancels slices of inputs if process returns an error",
args: args{
ctxTimeout: maxTestDuration / 2,
maxSize: 5,
maxDuration: maxTestDuration,
processor: &mockProcessor[[]int]{
processReturnsErrs: true,
},
in: Emit(1, 2, 3, 4, 5, 6, 7, 8, 9, 10),
out: drain,
},
want: want{
open: false,
canceled: [][]int{{
1, 2, 3, 4, 5,
}, {
6, 7, 8, 9, 10,
}},
errs: []string{
"process error: [1 2 3 4 5]",
"process error: [6 7 8 9 10]",
},
},
}, {
name: "cancels slices of inputs when the context is canceled",
args: args{
ctxTimeout: maxTestDuration / 2,
maxSize: 1,
maxDuration: maxTestDuration,
processor: &mockProcessor[[]int]{
// this will take longer to complete than the maxTestDuration by a few micro seconds
processDuration: maxTestDuration / 10, // 5 calls to Process > maxTestDuration / 2
cancelDuration: maxTestDuration/10 + 25*time.Millisecond, // 5 calls to Cancel > maxTestDuration / 2
},
in: Emit(1, 2, 3, 4, 5, 6, 7, 8, 9, 10),
out: drain,
},
want: want{
open: true,
processed: [][]int{
{1}, {2}, {3}, {4},
},
canceled: [][]int{
{5}, {6}, {7}, {8},
},
errs: []string{
"context deadline exceeded",
"context deadline exceeded",
"context deadline exceeded",
"context deadline exceeded",
},
},
}}
for i := range tests {
tt := tests[i]
t.Run(tt.name, func(t *testing.T) {
t.Parallel()
ctx, cancel := context.WithTimeout(context.Background(), tt.args.ctxTimeout)
defer cancel()
// Process the batch with a timeout of maxTestDuration
timeout := time.After(maxTestDuration)
open := true
loop:
for {
select {
case <-timeout:
break loop
default:
open = processOneBatch[int, int](ctx, tt.args.maxSize, tt.args.maxDuration, tt.args.processor, tt.args.in, tt.args.out)
if !open {
break loop
}
}
}
// Processing took longer than expected
if open != tt.want.open {
t.Errorf("open = %t, wanted %t", open, tt.want.open)
}
// Expecting processed inputs
if !reflect.DeepEqual(tt.args.processor.processed, tt.want.processed) {
t.Errorf("processed = %+v, want %+v", tt.args.processor.processed, tt.want.processed)
}
// Expecting canceled inputs
if !reflect.DeepEqual(tt.args.processor.canceled, tt.want.canceled) {
t.Errorf("canceled = %+v, want %+v", tt.args.processor.canceled, tt.want.canceled)
}
// Expecting canceled errors
if !reflect.DeepEqual(tt.args.processor.errs, tt.want.errs) {
t.Errorf("errs = %+v, want %+v", tt.args.processor.errs, tt.want.errs)
}
})
}
}