-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathiterator_state_gronos_test.go
327 lines (271 loc) · 7.8 KB
/
iterator_state_gronos_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
package gronos
import (
"context"
"errors"
"fmt"
"sync/atomic"
"testing"
"time"
)
type testStateIteratorGronos struct {
Counter int32
}
func TestIteratorStateWithGronos(t *testing.T) {
t.Run("Basic functionality", func(t *testing.T) {
state := &testStateIteratorGronos{}
tasks := []CancellableStateTask[testStateIteratorGronos]{
func(ctx context.Context, s *testStateIteratorGronos) error {
atomic.AddInt32(&s.Counter, 1)
time.Sleep(10 * time.Millisecond)
return nil
},
}
iterApp := IteratorState(tasks, WithInitialState(state))
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
g, errChan := New[string](ctx, map[string]RuntimeApplication{
"iterator": iterApp,
})
time.Sleep(100 * time.Millisecond)
g.Shutdown()
g.Wait()
select {
case err := <-errChan:
if err != nil {
t.Errorf("Unexpected error: %v", err)
}
default:
}
if atomic.LoadInt32(&state.Counter) == 0 {
t.Error("Expected at least one iteration")
}
})
t.Run("Context cancellation", func(t *testing.T) {
state := &testStateIteratorGronos{}
tasks := []CancellableStateTask[testStateIteratorGronos]{
func(ctx context.Context, s *testStateIteratorGronos) error {
atomic.AddInt32(&s.Counter, 1)
time.Sleep(10 * time.Millisecond)
return nil
},
}
iterApp := IteratorState(tasks, WithInitialState(state))
ctx, cancel := context.WithCancel(context.Background())
g, errChan := New[string](ctx, map[string]RuntimeApplication{
"iterator": iterApp,
})
time.Sleep(50 * time.Millisecond)
cancel()
g.Wait()
select {
case err := <-errChan:
if err != context.Canceled {
t.Errorf("Expected context.Canceled, got: %v", err)
}
case <-time.After(1 * time.Second):
t.Error("Timeout waiting for error")
}
if atomic.LoadInt32(&state.Counter) == 0 {
t.Error("Expected at least one iteration before cancellation")
}
})
t.Run("Error handling", func(t *testing.T) {
expectedError := errors.New("expected error")
state := &testStateIteratorGronos{}
tasks := []CancellableStateTask[testStateIteratorGronos]{
func(ctx context.Context, s *testStateIteratorGronos) error {
atomic.AddInt32(&s.Counter, 1)
return expectedError
},
}
iterApp := IteratorState(tasks, WithInitialState(state),
WithLoopableIteratorStateOptions(
WithOnErrorState[testStateIteratorGronos](func(err error) error {
return errors.Join(err, ErrLoopCritical)
}),
),
)
ctx := context.Background()
g, errChan := New[string](ctx, map[string]RuntimeApplication{
"iterator": iterApp,
})
select {
case err := <-errChan:
fmt.Println("unit test error:", err)
if !errors.Is(err, ErrLoopCritical) {
t.Errorf("Expected ErrLoopCritical, got: %v", err)
}
if !errors.Is(err, expectedError) {
t.Errorf("Expected error to contain %v, got: %v", expectedError, err)
}
case <-time.After(1 * time.Second):
t.Error("Timeout waiting for error")
}
g.Shutdown()
g.Wait()
if atomic.LoadInt32(&state.Counter) == 0 {
t.Error("Expected error to occur at least once")
}
})
t.Run("Graceful shutdown", func(t *testing.T) {
state := &testStateIteratorGronos{}
tasks := []CancellableStateTask[testStateIteratorGronos]{
func(ctx context.Context, s *testStateIteratorGronos) error {
atomic.AddInt32(&s.Counter, 1)
time.Sleep(10 * time.Millisecond)
return nil
},
}
iterApp := IteratorState(tasks, WithInitialState(state))
ctx := context.Background()
g, errChan := New[string](ctx, map[string]RuntimeApplication{
"iterator": iterApp,
})
time.Sleep(50 * time.Millisecond)
g.Shutdown()
g.Wait()
select {
case err := <-errChan:
if err != nil {
t.Errorf("Expected nil error on shutdown, got: %v", err)
}
case <-time.After(1 * time.Second):
t.Error("Timeout waiting for graceful shutdown")
}
if atomic.LoadInt32(&state.Counter) == 0 {
t.Error("Expected at least one iteration before shutdown")
}
})
t.Run("Multiple iterators", func(t *testing.T) {
state1 := &testStateIteratorGronos{}
state2 := &testStateIteratorGronos{}
tasks1 := []CancellableStateTask[testStateIteratorGronos]{
func(ctx context.Context, s *testStateIteratorGronos) error {
atomic.AddInt32(&s.Counter, 1)
time.Sleep(10 * time.Millisecond)
return nil
},
}
tasks2 := []CancellableStateTask[testStateIteratorGronos]{
func(ctx context.Context, s *testStateIteratorGronos) error {
atomic.AddInt32(&s.Counter, 2)
time.Sleep(15 * time.Millisecond)
return nil
},
}
iterApp1 := IteratorState(tasks1, WithInitialState(state1))
iterApp2 := IteratorState(tasks2, WithInitialState(state2))
ctx := context.Background()
g, errChan := New[string](ctx, map[string]RuntimeApplication{
"iterator1": iterApp1,
"iterator2": iterApp2,
})
time.Sleep(100 * time.Millisecond)
g.Shutdown()
g.Wait()
select {
case err := <-errChan:
if err != nil {
t.Errorf("Unexpected error: %v", err)
}
default:
}
if atomic.LoadInt32(&state1.Counter) == 0 {
t.Error("Expected at least one iteration for iterator1")
}
if atomic.LoadInt32(&state2.Counter) == 0 {
t.Error("Expected at least one iteration for iterator2")
}
})
t.Run("BeforeLoop and AfterLoop hooks", func(t *testing.T) {
state := &testStateIteratorGronos{}
var beforeLoopCount, afterLoopCount int32
tasks := []CancellableStateTask[testStateIteratorGronos]{
func(ctx context.Context, s *testStateIteratorGronos) error {
atomic.AddInt32(&s.Counter, 1)
time.Sleep(10 * time.Millisecond)
return nil
},
}
iterApp := IteratorState(
tasks,
WithInitialState(state),
WithLoopableIteratorStateOptions(
WithBeforeLoopState[testStateIteratorGronos](func(ctx context.Context, s *testStateIteratorGronos) error {
atomic.AddInt32(&beforeLoopCount, 1)
return nil
}),
WithAfterLoopState[testStateIteratorGronos](func(ctx context.Context, s *testStateIteratorGronos) error {
atomic.AddInt32(&afterLoopCount, 1)
return nil
}),
),
)
ctx := context.Background()
g, errChan := New[string](ctx, map[string]RuntimeApplication{
"iterator": iterApp,
})
time.Sleep(100 * time.Millisecond)
g.Shutdown()
g.Wait()
select {
case err := <-errChan:
if err != nil {
t.Errorf("Unexpected error: %v", err)
}
default:
}
if atomic.LoadInt32(&beforeLoopCount) == 0 {
t.Error("Expected BeforeLoop to be executed at least once")
}
if atomic.LoadInt32(&afterLoopCount) == 0 {
t.Error("Expected AfterLoop to be executed at least once")
}
if atomic.LoadInt32(&state.Counter) == 0 {
t.Error("Expected at least one iteration")
}
if atomic.LoadInt32(&beforeLoopCount) != atomic.LoadInt32(&afterLoopCount) {
t.Error("Expected BeforeLoop and AfterLoop to be executed the same number of times")
}
})
t.Run("OnInit hook", func(t *testing.T) {
state := &testStateIteratorGronos{}
var initCalled bool
tasks := []CancellableStateTask[testStateIteratorGronos]{
func(ctx context.Context, s *testStateIteratorGronos) error {
atomic.AddInt32(&s.Counter, 1)
return nil
},
}
iterApp := IteratorState(
tasks,
WithInitialState(state),
WithLoopableIteratorStateOptions(
WithOnInitState[testStateIteratorGronos](func(ctx context.Context, s *testStateIteratorGronos) (context.Context, error) {
initCalled = true
return ctx, nil
}),
),
)
ctx := context.Background()
g, errChan := New[string](ctx, map[string]RuntimeApplication{
"iterator": iterApp,
})
time.Sleep(50 * time.Millisecond)
g.Shutdown()
g.Wait()
select {
case err := <-errChan:
if err != nil {
t.Errorf("Unexpected error: %v", err)
}
default:
}
if !initCalled {
t.Error("Expected OnInit to be called")
}
if atomic.LoadInt32(&state.Counter) == 0 {
t.Error("Expected at least one iteration")
}
})
}