This repository has been archived by the owner on Feb 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
workers_test.go
354 lines (301 loc) · 7.75 KB
/
workers_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
package workers
import (
"context"
"errors"
"fmt"
"math/rand"
"os"
"runtime"
"runtime/debug"
"sync"
"testing"
"time"
)
const (
workerCount = 100000
workerTimeout = time.Millisecond * 300
runTimes = 100000
)
type WorkerOne struct {
Count int
sync.Mutex
}
type WorkerTwo struct {
Count int
sync.Mutex
}
func NewWorkerOne() *WorkerOne {
return &WorkerOne{}
}
func NewWorkerTwo() *WorkerTwo {
return &WorkerTwo{}
}
func (wo *WorkerOne) CurrentCount() int {
wo.Lock()
defer wo.Unlock()
return wo.Count
}
func (wo *WorkerOne) Work(in interface{}, out chan<- interface{}) error {
mut.Lock()
wo.Count = wo.Count + 1
mut.Unlock()
total := in.(int) * 2
out <- total
return nil
}
func (wt *WorkerTwo) CurrentCount() int {
wt.Lock()
defer wt.Unlock()
return wt.Count
}
func (wt *WorkerTwo) Work(in interface{}, out chan<- interface{}) error {
mut.Lock()
wt.Count = wt.Count + 1
mut.Unlock()
return nil
}
var (
mut = sync.RWMutex{}
err = errors.New("test error")
deadline = func() time.Time { return time.Now().Add(workerTimeout) }
workerTestScenarios = []workerTest{
{
name: "work basic",
worker: NewTestWorkerObject(workBasic()),
numWorkers: workerCount,
},
{
name: "work basic with timeout",
timeout: workerTimeout,
worker: NewTestWorkerObject(workBasic()),
numWorkers: workerCount,
},
{
name: "work basic with deadline",
deadline: deadline,
worker: NewTestWorkerObject(workBasic()),
numWorkers: workerCount,
},
{
name: "work with return of error",
worker: NewTestWorkerObject(workWithError(err)),
errExpected: true,
numWorkers: workerCount,
},
{
name: "work with return of error with timeout",
timeout: workerTimeout,
worker: NewTestWorkerObject(workWithError(err)),
errExpected: true,
numWorkers: workerCount,
},
{
name: "work with return of error with deadline",
deadline: deadline,
worker: NewTestWorkerObject(workWithError(err)),
errExpected: true,
numWorkers: workerCount,
},
}
getWorker = func(ctx context.Context, wt workerTest) Runner {
worker := NewRunner(ctx, wt.worker, wt.numWorkers)
if wt.timeout > 0 {
worker.SetTimeout(wt.timeout)
}
if wt.deadline != nil {
worker.SetDeadline(wt.deadline())
}
return worker
}
)
type workerTest struct {
name string
timeout time.Duration
deadline func() time.Time
worker Worker
numWorkers int64
testSignal bool
errExpected bool
}
type TestWorkerObject struct {
workFunc func(in interface{}, out chan<- interface{}) error
}
func NewTestWorkerObject(wf func(in interface{}, out chan<- interface{}) error) Worker {
return &TestWorkerObject{wf}
}
func (tw *TestWorkerObject) Work(in interface{}, out chan<- interface{}) error {
return tw.workFunc(in, out)
}
func workBasicNoOut() func(in interface{}, out chan<- interface{}) error {
return func(in interface{}, out chan<- interface{}) error {
_ = in.(int)
return nil
}
}
func workBasic() func(in interface{}, out chan<- interface{}) error {
return func(in interface{}, out chan<- interface{}) error {
i := in.(int)
out <- i
return nil
}
}
func workWithError(err error) func(in interface{}, out chan<- interface{}) error {
return func(in interface{}, out chan<- interface{}) error {
i := in.(int)
total := i * rand.Intn(1000)
if i == 100 {
return err
}
out <- total
return nil
}
}
func TestMain(m *testing.M) {
debug.SetGCPercent(500)
runtime.GOMAXPROCS(2)
code := m.Run()
os.Exit(code)
}
func TestWorkers(t *testing.T) {
for _, tt := range workerTestScenarios {
t.Run(tt.name, func(t *testing.T) {
ctx := context.Background()
workerOne := getWorker(ctx, tt).Start()
// always need a consumer for the out tests so using basic here.
workerTwo := NewRunner(ctx, NewTestWorkerObject(workBasicNoOut()), workerCount).InFrom(workerOne).Start()
for i := 0; i < runTimes; i++ {
workerOne.Send(i)
}
if err := workerOne.Wait(); err != nil && (!tt.errExpected) {
t.Error(err)
}
if err := workerTwo.Wait(); err != nil && !tt.errExpected {
t.Error(err)
}
})
}
}
func TestWorkersFinish100(t *testing.T) {
const workCount = 100
ctx := context.Background()
w1 := NewWorkerOne()
w2 := NewWorkerTwo()
workerOne := NewRunner(ctx, w1, 1000).Start()
workerTwo := NewRunner(ctx, w2, 1000).InFrom(workerOne).Start()
for i := 0; i < workCount; i++ {
workerOne.Send(rand.Intn(100))
}
if err := workerOne.Wait(); err != nil {
fmt.Println(err)
}
if err := workerTwo.Wait(); err != nil {
fmt.Println(err)
}
if w1.CurrentCount() != workCount {
t.Log("worker one failed to finish,", "worker_one count", w1.CurrentCount(), "/ 100000")
t.Fail()
}
if w2.CurrentCount() != workCount {
t.Log("worker two failed to finish,", "worker_two count", w2.CurrentCount(), "/ 100000")
t.Fail()
}
t.Logf("worker_one count: %d, worker_two count: %d", w1.CurrentCount(), w2.CurrentCount())
}
func TestWorkersFinish100000(t *testing.T) {
const workCount = 100000
ctx := context.Background()
w1 := NewWorkerOne()
w2 := NewWorkerTwo()
workerOne := NewRunner(ctx, w1, 1000).Start()
workerTwo := NewRunner(ctx, w2, 1000).InFrom(workerOne).Start()
for i := 0; i < workCount; i++ {
workerOne.Send(rand.Intn(100))
}
if err := workerOne.Wait(); err != nil {
fmt.Println(err)
}
if err := workerTwo.Wait(); err != nil {
fmt.Println(err)
}
if w1.CurrentCount() != workCount {
t.Log("worker one failed to finish,", "worker_one count", w1.CurrentCount(), "/ 100000")
t.Fail()
}
if w2.CurrentCount() != workCount {
t.Log("worker two failed to finish,", "worker_two count", w2.CurrentCount(), "/ 100000")
t.Fail()
}
t.Logf("worker_one count: %d, worker_two count: %d", w1.CurrentCount(), w2.CurrentCount())
}
func TestWorkersFinish1000000(t *testing.T) {
const workCount = 1000000
ctx := context.Background()
w1 := NewWorkerOne()
w2 := NewWorkerTwo()
workerOne := NewRunner(ctx, w1, 1000).Start()
workerTwo := NewRunner(ctx, w2, 1000).InFrom(workerOne).Start()
for i := 0; i < workCount; i++ {
workerOne.Send(rand.Intn(100))
}
if err := workerOne.Wait(); err != nil {
fmt.Println(err)
}
if err := workerTwo.Wait(); err != nil {
fmt.Println(err)
}
if w1.CurrentCount() != workCount {
t.Log("worker one failed to finish,", "worker_one count", w1.CurrentCount(), "/ 100000")
t.Fail()
}
if w2.CurrentCount() != workCount {
t.Log("worker two failed to finish,", "worker_two count", w2.CurrentCount(), "/ 100000")
t.Fail()
}
t.Logf("worker_one count: %d, worker_two count: %d", w1.CurrentCount(), w2.CurrentCount())
}
func BenchmarkGoWorkers1to1(b *testing.B) {
worker := NewRunner(context.Background(), NewTestWorkerObject(workBasicNoOut()), 1000).Start()
b.ResetTimer()
for i := 0; i < b.N; i++ {
for j := 0; j < 1000; j++ {
worker.Send(j)
}
}
b.StopTimer()
if err := worker.Wait(); err != nil {
b.Error(err)
}
}
func Benchmark100GoWorkers(b *testing.B) {
b.ReportAllocs()
worker := NewRunner(context.Background(), NewTestWorkerObject(workBasicNoOut()), 100).Start()
b.ResetTimer()
for i := 0; i < b.N; i++ {
worker.Send(i)
}
if err := worker.Wait(); err != nil {
b.Error(err)
}
}
func Benchmark1000GoWorkers(b *testing.B) {
b.ReportAllocs()
worker := NewRunner(context.Background(), NewTestWorkerObject(workBasicNoOut()), 1000).Start()
b.ResetTimer()
for i := 0; i < b.N; i++ {
worker.Send(i)
}
if err := worker.Wait(); err != nil {
b.Error(err)
}
}
func Benchmark10000GoWorkers(b *testing.B) {
b.ReportAllocs()
worker := NewRunner(context.Background(), NewTestWorkerObject(workBasicNoOut()), 10000).Start()
b.ResetTimer()
for i := 0; i < b.N; i++ {
worker.Send(i)
}
if err := worker.Wait(); err != nil {
b.Error(err)
}
}