-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathactor_test.go
273 lines (226 loc) · 5.94 KB
/
actor_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
// Tideland Go Actor - Unit Tests
//
// Copyright (C) 2019-2023 Frank Mueller / Tideland / Oldenburg / Germany
//
// All rights reserved. Use of this source code is governed
// by the new BSD license.
package actor_test
//--------------------
// IMPORTS
//--------------------
import (
"context"
"errors"
"fmt"
"testing"
"time"
"tideland.dev/go/audit/asserts"
"tideland.dev/go/actor"
)
//--------------------
// TESTS
//--------------------
// TestPureOK verifies the starting and stopping an Actor.
func TestPureOK(t *testing.T) {
assert := asserts.NewTesting(t, asserts.FailStop)
finalized := make(chan struct{})
act, err := actor.Go(actor.WithFinalizer(func(err error) error {
defer close(finalized)
return err
}))
assert.OK(err)
assert.NotNil(act)
act.Stop()
<-finalized
assert.NoError(act.Err())
}
// TestPureDoubleStop verifies stopping an Actor twice.
func TestPureDoubleStop(t *testing.T) {
assert := asserts.NewTesting(t, asserts.FailStop)
finalized := make(chan struct{})
act, err := actor.Go(actor.WithFinalizer(func(err error) error {
defer close(finalized)
return err
}))
assert.OK(err)
assert.NotNil(act)
act.Stop()
act.Stop()
<-finalized
assert.NoError(act.Err())
}
// TestPureError verifies starting and stopping an Actor.
// Returning the stop error.
func TestPureError(t *testing.T) {
assert := asserts.NewTesting(t, asserts.FailStop)
finalized := make(chan struct{})
act, err := actor.Go(actor.WithFinalizer(func(err error) error {
defer close(finalized)
return errors.New("damn")
}))
assert.OK(err)
assert.NotNil(act)
act.Stop()
<-finalized
assert.ErrorMatch(act.Err(), "damn")
}
// TestContext verifies starting and stopping an Actor
// with an external context.
func TestContext(t *testing.T) {
assert := asserts.NewTesting(t, asserts.FailStop)
ctx, cancel := context.WithCancel(context.Background())
act, err := actor.Go(actor.WithContext(ctx))
assert.OK(err)
assert.NotNil(act)
cancel()
assert.NoError(act.Err())
}
// TestSync verifies synchronous calls.
func TestSync(t *testing.T) {
assert := asserts.NewTesting(t, asserts.FailStop)
finalized := make(chan struct{})
act, err := actor.Go(actor.WithFinalizer(func(err error) error {
defer close(finalized)
return err
}))
assert.OK(err)
counter := 0
for i := 0; i < 5; i++ {
assert.OK(act.DoSync(func() {
counter++
}))
}
assert.Equal(counter, 5)
act.Stop()
<-finalized
assert.ErrorMatch(act.DoSync(func() {
counter++
}), "actor is done")
}
// TestTimeout verifies timout error of a synchronous Action.
func TestTimeout(t *testing.T) {
assert := asserts.NewTesting(t, asserts.FailStop)
act, err := actor.Go()
assert.OK(err)
// Scenario: Timeout is shorter than needed time, so error
// is returned.
ctx, cancel := context.WithTimeout(context.Background(), 50*time.Millisecond)
err = act.DoSyncWithContext(ctx, func() {
time.Sleep(25 * time.Millisecond)
})
assert.NoError(err)
cancel()
ctx, cancel = context.WithTimeout(context.Background(), 50*time.Millisecond)
err = act.DoSyncWithContext(ctx, func() {
time.Sleep(100 * time.Millisecond)
})
assert.ErrorMatch(err, "action.*context deadline exceeded.*")
cancel()
time.Sleep(150 * time.Millisecond)
act.Stop()
}
// TestWithTimeoutContext verifies timout error of a synchronous Action
// when the Actor is configured with a context timeout.
func TestWithTimeoutContext(t *testing.T) {
assert := asserts.NewTesting(t, asserts.FailStop)
ctx, cancel := context.WithTimeout(context.Background(), 50*time.Millisecond)
act, err := actor.Go(actor.WithContext(ctx))
assert.OK(err)
// Scenario: Configured timeout is shorter than needed
// time, so error is returned.
err = act.DoSync(func() {
time.Sleep(10 * time.Millisecond)
})
assert.NoError(err)
err = act.DoSync(func() {
time.Sleep(100 * time.Millisecond)
})
assert.ErrorMatch(err, "actor.*context deadline exceeded.*")
act.Stop()
cancel()
}
// TestAsyncWithQueueCap tests running multiple calls asynchronously.
func TestAsyncWithQueueCap(t *testing.T) {
assert := asserts.NewTesting(t, asserts.FailStop)
act, err := actor.Go(actor.WithQueueCap(128))
assert.OK(err)
sigs := make(chan struct{}, 1)
done := make(chan struct{}, 1)
// Start background func waiting for the signals of
// the asynchrounous calls.
go func() {
count := 0
for range sigs {
count++
if count == 128 {
break
}
}
close(done)
}()
// Now start asynchrounous calls.
now := time.Now()
for i := 0; i < 128; i++ {
assert.OK(act.DoAsync(func() {
time.Sleep(2 * time.Millisecond)
sigs <- struct{}{}
}))
}
enqueued := time.Since(now)
// Expect signal done to be sent about one second later.
<-done
duration := time.Since(now)
assert.OK((duration - 250*time.Millisecond) > enqueued)
act.Stop()
}
// TestRecovererOK tests successful handling of panic recoveries.
func TestNotifierOK(t *testing.T) {
assert := asserts.NewTesting(t, asserts.FailStop)
counter := 0
recovered := false
done := make(chan struct{})
recoverer := func(reason any) error {
defer close(done)
recovered = true
return nil
}
act, err := actor.Go(actor.WithRecoverer(recoverer))
assert.OK(err)
act.DoSync(func() {
counter++
// Will crash on first call.
fmt.Printf("%v", counter/(counter-1))
})
<-done
assert.True(recovered)
err = act.DoSync(func() {
counter++
})
assert.OK(err)
assert.Equal(counter, 2)
act.Stop()
}
// TestRecovererFail tests failing handling of panic recoveries.
func TestNotifierFail(t *testing.T) {
assert := asserts.NewTesting(t, asserts.FailStop)
counter := 0
recovered := false
done := make(chan struct{})
recoverer := func(reason any) error {
defer close(done)
recovered = true
return fmt.Errorf("ouch: %v", reason)
}
act, err := actor.Go(actor.WithRecoverer(recoverer))
assert.OK(err)
act.DoSync(func() {
counter++
// Will crash on first call.
fmt.Printf("%v", counter/(counter-1))
})
<-done
assert.True(recovered)
assert.True(act.IsDone())
assert.ErrorMatch(act.Err(), "ouch:.*")
}
// EOF