-
Notifications
You must be signed in to change notification settings - Fork 1
/
batcher_test.go
141 lines (134 loc) · 2.65 KB
/
batcher_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
package batchy
import (
"errors"
"sync"
"sync/atomic"
"testing"
"time"
)
func processorFailsEven(items []interface{}) (resp []error) {
resp = make([]error, len(items))
for i, v := range items {
if v.(int)%2 == 0 {
resp[i] = errors.New("even")
}
}
return
}
// Batch should process when full
func TestBatcherFullBatch(t *testing.T) {
b := New(4, time.Second, processorFailsEven)
var errors int64
wg := sync.WaitGroup{}
for i := 0; i < 4; i++ {
wg.Add(1)
go func(i int) {
err := b.Add(i)
if err != nil {
atomic.AddInt64(&errors, 1)
}
wg.Done()
}(i)
}
wg.Wait()
if errors != 2 {
t.Fatal("Expected 2 errors")
}
}
// Batch should process after timeout
func TestBatcherTimeout(t *testing.T) {
b := New(4, 10*time.Millisecond, processorFailsEven)
var errors int64
wg := sync.WaitGroup{}
for i := 0; i < 2; i++ {
wg.Add(1)
go func(i int) {
err := b.Add(i)
if err != nil {
atomic.AddInt64(&errors, 1)
}
wg.Done()
}(i)
}
wg.Wait()
if errors != 1 {
t.Fatal("Expected 1 error")
}
}
// Batch should immediately process after call to Stop
func TestBatcherStop(t *testing.T) {
start := time.Now()
b := New(4, time.Second, processorFailsEven)
var errors int64
wg := sync.WaitGroup{}
for i := 0; i < 6; i++ {
wg.Add(1)
go func(i int) {
err := b.Add(i)
if err != nil {
atomic.AddInt64(&errors, 1)
}
wg.Done()
}(i)
}
time.Sleep(10 * time.Millisecond)
b.Stop()
wg.Wait()
if time.Now().Sub(start) >= time.Second {
t.Fatal("Expected stop to work")
}
if errors != 3 {
t.Fatal("Expected 3 errors")
}
b.Stop()
err := b.Add(1)
if err.Error() != ErrBatcherStopped.Error() {
t.Fatal("Expected " + ErrBatcherStopped.Error())
}
}
// Batch should Stop cleanly even with no outstanding batches
func TestBatcherStopEmpty(t *testing.T) {
start := time.Now()
b := New(4, time.Second, processorFailsEven)
var errors int64
wg := sync.WaitGroup{}
for i := 0; i < 8; i++ {
wg.Add(1)
go func(i int) {
err := b.Add(i)
if err != nil {
atomic.AddInt64(&errors, 1)
}
wg.Done()
}(i)
}
time.Sleep(10 * time.Millisecond)
b.Stop()
wg.Wait()
if time.Now().Sub(start) >= time.Second {
t.Fatal("Expected stop to work")
}
if errors != 4 {
t.Fatal("Expected 4 errors")
}
}
// Batcher should handle thousands of jobs efficiently
func TestBatcherStress(t *testing.T) {
b := New(1000, 10*time.Millisecond, processorFailsEven)
var errors int64
wg := sync.WaitGroup{}
for i := 0; i < 100001; i++ {
wg.Add(1)
go func(i int) {
err := b.Add(i)
if err != nil {
atomic.AddInt64(&errors, 1)
}
wg.Done()
}(i)
}
wg.Wait()
if errors != 50001 {
t.Fatal("Expected 50001 errors")
}
}