-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun_test.go
237 lines (210 loc) · 4.45 KB
/
run_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
package daemon
import (
"context"
"errors"
"fmt"
"syscall"
"testing"
"time"
)
func TestRun(t *testing.T) {
// avoid run sub tests in parallel
t.Run("Context", run_context)
t.Run("Signal", run_signal)
t.Run("Job-Error", run_job_error)
t.Run("Job-Panic", run_job_panic)
}
func run_context(t *testing.T) {
if IsStarted() {
t.Fatal("started unexpectedly")
}
done := struct {
run chan error
service1, service2 bool
}{
run: make(chan error, 1),
}
ctx, cancel := context.WithCancel(context.Background())
timeout := 5 * time.Second
go func() {
defer close(done.run)
done.run <- Run(
ctx,
WithJob(func(ctx context.Context) error {
select {
case <-time.After(timeout):
return fmt.Errorf("service 1: timeout expired")
case <-ctx.Done():
done.service1 = true
return nil
}
}),
WithJob(func(ctx context.Context) error {
select {
case <-time.After(timeout):
return fmt.Errorf("service 2: timeout expired")
case <-ctx.Done():
done.service2 = true
return nil
}
}),
)
}()
go func() {
time.Sleep(250 * time.Millisecond)
cancel()
}()
time.Sleep(50 * time.Millisecond)
if !IsStarted() {
t.Fatal("not started")
}
select {
case err := <-done.run:
switch {
case err != nil:
t.Fatal(err)
case !done.service1:
t.Fatal("service 1: not done")
case !done.service2:
t.Fatal("service 2: not done")
case IsStarted():
t.Fatal("daemon is still running")
}
case <-time.After(timeout):
t.Fatalf("timeout expired: not done in %s", timeout)
}
}
func run_signal(t *testing.T) {
if IsStarted() {
t.Fatal("started unexpectedly")
}
done := struct {
run chan error
service1, service2 bool
}{
run: make(chan error, 1),
}
timeout := 5 * time.Second
go func() {
defer close(done.run)
done.run <- Run(
context.Background(),
WithJob(func(ctx context.Context) error {
select {
case <-time.After(timeout):
return fmt.Errorf("service 1: timeout expired")
case <-ctx.Done():
done.service1 = true
return nil
}
}),
WithJob(func(ctx context.Context) error {
select {
case <-time.After(timeout):
return fmt.Errorf("service 2: timeout expired")
case <-ctx.Done():
done.service2 = true
return nil
}
}),
)
}()
go func() {
time.Sleep(250 * time.Millisecond)
signals <- syscall.SIGINT
}()
time.Sleep(50 * time.Millisecond)
if !IsStarted() {
t.Fatal("not started")
}
select {
case err := <-done.run:
switch {
case err != nil:
t.Fatal(err)
case !done.service1:
t.Fatal("service 1: not done")
case !done.service2:
t.Fatal("service 2: not done")
case IsStarted():
t.Fatal("daemon is still running")
}
case <-time.After(timeout):
t.Fatalf("timeout expired: not done in %s", timeout)
}
}
func run_job_error(t *testing.T) {
done := struct {
run chan error
service1, service2 bool
}{
run: make(chan error, 1),
}
errFailure := errors.New("failure")
go func() {
defer close(done.run)
done.run <- Run(
context.Background(),
WithJob(func(ctx context.Context) error {
time.Sleep(250 * time.Millisecond)
return fmt.Errorf("service 1: %w", errFailure)
}),
WithJob(func(ctx context.Context) error {
<-ctx.Done()
done.service2 = true
return nil
}),
)
}()
timeout := 5 * time.Second
select {
case err := <-done.run:
switch {
case !errors.Is(err, errFailure):
t.Fatalf("unexpected error: %s", err)
case !done.service2:
t.Fatal("service 2: not done")
case IsStarted():
t.Fatal("daemon is still running")
}
case <-time.After(timeout):
t.Fatalf("timeout expired: not done in %s", timeout)
}
}
func run_job_panic(t *testing.T) {
done := struct {
run chan error
service1, service2 bool
}{
run: make(chan error, 1),
}
go func() {
defer close(done.run)
done.run <- Run(
context.Background(),
WithJob(func(ctx context.Context) error {
<-ctx.Done()
done.service1 = true
return nil
}),
WithJob(func(ctx context.Context) error {
time.Sleep(250 * time.Millisecond)
panic("service 2 panic")
}),
)
}()
timeout := 5 * time.Second
select {
case err := <-done.run:
switch {
case err == nil:
t.Fatalf("error expected got nil")
case !done.service1:
t.Fatal("service 1: not done")
case IsStarted():
t.Fatal("daemon is still running")
}
case <-time.After(timeout):
t.Fatalf("timeout expired: not done in %s", timeout)
}
}