-
Notifications
You must be signed in to change notification settings - Fork 16
/
first-success_test.go
227 lines (217 loc) · 5.5 KB
/
first-success_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
package main
import (
"context"
"errors"
"sync/atomic"
"testing"
"time"
)
func TestFirstSuccess(t *testing.T) {
{
jobGroup := NewJobGroup[int]()
jobGroup.Add(func(context.Context) (int, error) {
return 1, nil
})
val, err := jobGroup.Run(context.Background())
if err != nil {
t.Errorf("expected no error, got %v", err)
}
if val != 1 {
t.Errorf("expected 1, got %v", val)
}
}
{
jobGroup := NewJobGroup[int]()
jobGroup.Add(func(context.Context) (int, error) {
time.Sleep(1 * time.Second)
return 1, nil
})
jobGroup.Add(func(context.Context) (int, error) {
return 2, nil
})
val, err := jobGroup.Run(context.Background())
if err != nil {
t.Errorf("expected no error, got %v", err)
}
if val != 2 {
t.Errorf("expected 2, got %v", val)
}
}
{
jobGroup := NewJobGroup[int]()
jobGroup.Add(func(context.Context) (int, error) {
time.Sleep(1 * time.Second)
return 1, nil
})
jobGroup.Add(func(context.Context) (int, error) {
time.Sleep(2 * time.Second)
return 2, nil
})
jobGroup.Add(func(context.Context) (int, error) {
return 3, nil
})
startedAt := time.Now()
val, err := jobGroup.Run(context.Background())
if err != nil {
t.Errorf("expected no error, got %v", err)
}
if val != 3 {
t.Errorf("expected 3, got %v", val)
}
if time.Since(startedAt) > time.Second {
t.Errorf("expected less than 1 second, got %v", time.Since(startedAt))
}
}
{
// all functions fail
jobGroup := NewJobGroup[int]()
jobGroup.Add(func(context.Context) (int, error) {
return -1, errors.New("error 1")
})
jobGroup.Add(func(context.Context) (int, error) {
return -1, errors.New("error 2")
})
jobGroup.Add(func(context.Context) (int, error) {
return -1, errors.New("error 3")
})
val, err := jobGroup.Run(context.Background())
if err == nil {
t.Errorf("expected error, got nil")
}
if val != 0 {
t.Errorf("expected 0, got %v", val)
}
if !IsErrorSlice(err) {
t.Errorf("expected error slice, got %v", err)
}
slice := err.(ErrorSlice)
if len(slice) != 3 {
t.Errorf("expected 3 errors, got %v", len(slice))
}
{
// Cannot know the order of errors
if slice.Filter(func(err error) bool {
return err.Error() == "error 1"
}).Error() != "ErrorSlice{\"error 1\"}" {
t.Errorf("unexpected filtered error message")
}
if slice.Filter(func(err error) bool {
return err.Error() == "error 2"
}).Error() != "ErrorSlice{\"error 2\"}" {
t.Errorf("unexpected filtered error message")
}
if slice.Filter(func(err error) bool {
return err.Error() == "error 3"
}).Error() != "ErrorSlice{\"error 3\"}" {
t.Errorf("unexpected filtered error message")
}
}
}
{
// some functions fail
jobGroup := NewJobGroup[int]()
jobGroup.Add(func(context.Context) (int, error) {
return -1, errors.New("error 1")
})
jobGroup.Add(func(context.Context) (int, error) {
return 2, nil
})
jobGroup.Add(func(context.Context) (int, error) {
return -1, errors.New("error 3")
})
val, err := jobGroup.Run(context.Background())
if err != nil {
t.Errorf("expected no error, got %v", err)
}
if val != 2 {
t.Errorf("expected 2, got %v", val)
}
}
{
// two fail, two succeed at different times
jobGroup := NewJobGroup[int]()
jobGroup.Add(func(context.Context) (int, error) {
time.Sleep(time.Millisecond * 100)
return -1, errors.New("error 1")
})
jobGroup.Add(func(context.Context) (int, error) {
time.Sleep(time.Millisecond * 200)
return -1, errors.New("error 2")
})
jobGroup.Add(func(context.Context) (int, error) {
time.Sleep(time.Millisecond * 300)
return 3, nil
})
jobGroup.Add(func(context.Context) (int, error) {
time.Sleep(time.Millisecond * 400)
return 4, nil
})
startedAt := time.Now()
val, err := jobGroup.Run(context.Background())
if err != nil {
t.Errorf("expected no error, got %v", err)
}
if val != 3 {
t.Errorf("expected 3, got %v", val)
}
if time.Since(startedAt) > time.Millisecond*350 {
t.Errorf("expected less than 300ms, got %v", time.Since(startedAt))
}
}
{
// make sure that even if there is a success, the other functions still get executed
jobGroup := NewJobGroup[int]()
numCalled := new(atomic.Uint64)
jobGroup.Add(func(context.Context) (int, error) {
numCalled.Add(1)
return 1, nil
})
jobGroup.Add(func(context.Context) (int, error) {
numCalled.Add(1)
return -1, errors.New("error 2")
})
jobGroup.Add(func(context.Context) (int, error) {
numCalled.Add(1)
time.Sleep(time.Millisecond * 100)
return 123, nil
})
jobGroup.Add(func(context.Context) (int, error) {
numCalled.Add(1)
time.Sleep(time.Second)
return 123, nil
})
startedAt := time.Now()
val, err := jobGroup.Run(context.Background())
if err != nil {
t.Errorf("expected no error, got %v", err)
}
if val != 1 {
t.Errorf("expected 1, got %v", val)
}
if time.Since(startedAt) > time.Millisecond*100 {
t.Errorf("expected less than 100ms, got %v", time.Since(startedAt))
}
time.Sleep(time.Second * 2)
if numCalled.Load() != 4 {
t.Errorf("expected 4, got %v", numCalled.Load())
}
}
{
// try with base valie of int
jobGroup := NewJobGroup[int]()
jobGroup.Add(func(context.Context) (int, error) {
return 0, nil
})
jobGroup.Add(func(context.Context) (int, error) {
time.Sleep(1 * time.Second)
return 33, nil
})
val, err := jobGroup.Run(context.Background())
if err != nil {
t.Errorf("expected no error, got %v", err)
}
if val != 0 {
t.Errorf("expected 0, got %v", val)
}
}
}