-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathiterator_state_test.go
308 lines (249 loc) · 7.3 KB
/
iterator_state_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
package gronos
import (
"context"
"errors"
"sync/atomic"
"testing"
"time"
)
type testState struct {
Counter int32
}
func TestIteratorStateHOF(t *testing.T) {
t.Run("Basic functionality", func(t *testing.T) {
state := &testState{}
tasks := []CancellableStateTask[testState]{
func(ctx context.Context, s *testState) 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()
shutdown := make(chan struct{})
errChan := make(chan error, 1)
go func() {
errChan <- iterApp(ctx, shutdown)
}()
time.Sleep(100 * time.Millisecond)
close(shutdown)
err := <-errChan
if err != nil {
t.Errorf("Unexpected error: %v", err)
}
if atomic.LoadInt32(&state.Counter) == 0 {
t.Error("Expected at least one iteration")
}
})
t.Run("Context cancellation", func(t *testing.T) {
state := &testState{}
tasks := []CancellableStateTask[testState]{
func(ctx context.Context, s *testState) error {
atomic.AddInt32(&s.Counter, 1)
time.Sleep(10 * time.Millisecond)
return nil
},
}
iterApp := IteratorState(tasks, WithInitialState(state))
ctx, cancel := context.WithCancel(context.Background())
shutdown := make(chan struct{})
errChan := make(chan error, 1)
go func() {
errChan <- iterApp(ctx, shutdown)
}()
time.Sleep(50 * time.Millisecond)
cancel()
err := <-errChan
if err != context.Canceled {
t.Errorf("Expected context.Canceled, got: %v", err)
}
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 := &testState{}
tasks := []CancellableStateTask[testState]{
func(ctx context.Context, s *testState) error {
atomic.AddInt32(&s.Counter, 1)
return expectedError
},
}
iterApp := IteratorState(tasks, WithInitialState(state),
WithLoopableIteratorStateOptions(
WithOnErrorState[testState](func(err error) error {
return errors.Join(err, ErrLoopCritical)
}),
),
)
ctx := context.Background()
shutdown := make(chan struct{})
errChan := make(chan error, 1)
go func() {
errChan <- iterApp(ctx, shutdown)
}()
select {
case err := <-errChan:
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")
}
if atomic.LoadInt32(&state.Counter) == 0 {
t.Error("Expected error to occur at least once")
}
})
t.Run("Shutdown signal", func(t *testing.T) {
state := &testState{}
tasks := []CancellableStateTask[testState]{
func(ctx context.Context, s *testState) error {
atomic.AddInt32(&s.Counter, 1)
time.Sleep(10 * time.Millisecond)
return nil
},
}
iterApp := IteratorState(tasks, WithInitialState(state))
ctx := context.Background()
shutdown := make(chan struct{})
errChan := make(chan error, 1)
go func() {
errChan <- iterApp(ctx, shutdown)
}()
time.Sleep(50 * time.Millisecond)
close(shutdown)
err := <-errChan
if err != nil {
t.Errorf("Expected nil error on shutdown, got: %v", err)
}
if atomic.LoadInt32(&state.Counter) == 0 {
t.Error("Expected at least one iteration before shutdown")
}
})
t.Run("Critical error handling", func(t *testing.T) {
criticalErr := errors.New("critical error")
state := &testState{}
tasks := []CancellableStateTask[testState]{
func(ctx context.Context, s *testState) error {
atomic.AddInt32(&s.Counter, 1)
return errors.Join(criticalErr, ErrLoopCritical)
},
}
iterApp := IteratorState(tasks, WithInitialState(state))
ctx := context.Background()
shutdown := make(chan struct{})
errChan := make(chan error, 1)
go func() {
errChan <- iterApp(ctx, shutdown)
}()
err := <-errChan
if !errors.Is(err, ErrLoopCritical) {
t.Errorf("Expected ErrLoopCritical, got: %v", err)
}
if atomic.LoadInt32(&state.Counter) != 1 {
t.Error("Expected exactly one iteration before critical error")
}
})
t.Run("Error handling and graceful shutdown", func(t *testing.T) {
expectedError := errors.New("expected error")
state := &testState{}
var cleanupExecuted int32
cleanup := context.CancelFunc(func() {
atomic.AddInt32(&cleanupExecuted, 1)
})
tasks := []CancellableStateTask[testState]{
func(ctx context.Context, s *testState) error {
atomic.AddInt32(&s.Counter, 1)
return expectedError
},
}
iterApp := IteratorState(tasks, WithInitialState(state),
WithLoopableIteratorStateOptions(
WithOnErrorState[testState](func(err error) error {
return errors.Join(ErrLoopCritical, err)
}),
WithExtraCancelState[testState](cleanup),
),
)
ctx, cancel := context.WithCancel(context.Background())
g, errChan := New[string](ctx, map[string]RuntimeApplication{
"iterator": iterApp,
})
// Wait a bit to ensure the task has a chance to execute
time.Sleep(50 * time.Millisecond)
// Cancel the context to trigger shutdown
cancel()
// Wait for Gronos to finish
g.Wait()
select {
case err := <-errChan:
if !errors.Is(err, ErrLoopCritical) || !errors.Is(err, expectedError) {
t.Errorf("Expected ErrLoopCritical and %v, got: %v", expectedError, err)
}
case <-time.After(1 * time.Second):
t.Error("Timeout waiting for error")
}
if atomic.LoadInt32(&state.Counter) == 0 {
t.Error("Expected error to occur at least once")
}
if atomic.LoadInt32(&cleanupExecuted) == 0 {
t.Error("Expected cleanup (extraCancel) to be executed")
}
})
t.Run("BeforeLoop and AfterLoop hooks", func(t *testing.T) {
state := &testState{}
var beforeLoopCount, afterLoopCount int32
tasks := []CancellableStateTask[testState]{
func(ctx context.Context, s *testState) error {
atomic.AddInt32(&s.Counter, 1)
time.Sleep(10 * time.Millisecond)
return nil
},
}
iterApp := IteratorState(
tasks,
WithInitialState(state),
WithLoopableIteratorStateOptions(
WithBeforeLoopState[testState](func(ctx context.Context, s *testState) error {
atomic.AddInt32(&beforeLoopCount, 1)
return nil
}),
WithAfterLoopState[testState](func(ctx context.Context, s *testState) error {
atomic.AddInt32(&afterLoopCount, 1)
return nil
}),
),
)
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
shutdown := make(chan struct{})
errChan := make(chan error, 1)
go func() {
errChan <- iterApp(ctx, shutdown)
}()
time.Sleep(100 * time.Millisecond)
close(shutdown)
err := <-errChan
if err != nil {
t.Errorf("Unexpected error: %v", err)
}
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")
}
})
}