-
Notifications
You must be signed in to change notification settings - Fork 0
/
servicing_test.go
executable file
·392 lines (307 loc) · 8.52 KB
/
servicing_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
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
package goservicing_test
import (
"context"
"errors"
"os"
"syscall"
"testing"
"time"
"github.com/dohernandez/goservicing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
type service struct {
name string
addr string
// Simulate servicing
serve chan struct{}
err error
shutdownSignal <-chan struct{}
shutdownDone chan<- struct{}
WithShutdownSignalOK bool
StartOK bool
ServiceShutdownOK bool
sleepOnShutdownFunc func()
}
func newService(err error) *service {
return &service{
name: "service",
addr: "::0",
err: err,
serve: make(chan struct{}),
}
}
func (s *service) WithSleepOnShutdown(sleepOnShutdownFunc func()) *service {
s.sleepOnShutdownFunc = sleepOnShutdownFunc
return s
}
func (s *service) WithShutdownSignal(shutdown <-chan struct{}, done chan<- struct{}) {
s.shutdownSignal = shutdown
s.shutdownDone = done
s.WithShutdownSignalOK = true
}
func (s *service) Start() error {
if s.err != nil {
return s.err
}
s.StartOK = true
go s.handleShutdown()
<-s.serve
return nil
}
func (s *service) handleShutdown() {
if s.shutdownSignal == nil {
return
}
defer func() {
close(s.shutdownDone)
close(s.serve)
}()
<-s.shutdownSignal
if s.sleepOnShutdownFunc != nil {
s.sleepOnShutdownFunc()
// to avoid WARNING: DATA RACE during. The intent is to simulate that the shutdown is taking more than expected
return
}
s.ServiceShutdownOK = true
}
func (s *service) Name() string {
return s.name
}
func (s *service) Addr() string {
return s.addr
}
var errFailedStart = errors.New("service failed to start")
func TestServiceGroup_Start(t *testing.T) {
type args struct {
log func(ctx context.Context, msg string)
srv goservicing.Service
}
tests := []struct {
name string
args args
syscallKill syscall.Signal
wantErr bool
err error
}{
{
name: "start successfully, killed SIGINT",
args: args{
log: func(_ context.Context, msg string) {
assert.Equal(t, "start service server at addr ::0", msg)
},
srv: newService(nil),
},
syscallKill: syscall.SIGINT,
wantErr: false,
err: nil,
},
{
name: "start successfully, killed SIGTERM",
args: args{
log: func(_ context.Context, msg string) {
assert.Equal(t, "start service server at addr ::0", msg)
},
srv: newService(nil),
},
syscallKill: syscall.SIGTERM,
wantErr: false,
err: nil,
},
{
name: "start failed",
args: args{
log: func(_ context.Context, msg string) {
assert.Contains(t,
[]string{
"start service server at addr ::0",
"failed to start service server at addr ::0: service failed to start",
}, msg)
},
srv: newService(errFailedStart),
},
syscallKill: 0,
wantErr: true,
err: errFailedStart,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
sg := &goservicing.ServiceGroup{}
done := make(chan error, 1)
go func() {
err := sg.Start(context.Background(), time.Minute, tt.args.log, tt.args.srv)
if (err != nil) != tt.wantErr {
t.Errorf("Start() error = %v, wantErr %v", err, tt.wantErr)
}
assert.ErrorIsf(t, err, tt.err, "Start() error = %v, want %v", err, tt.err)
close(done)
}()
srv := tt.args.srv.(*service) //nolint:errcheck
// wait for the service start
select {
case <-done:
// Start failed with error
assert.Truef(t, srv.WithShutdownSignalOK, "Start() WithShutdownSignalOK got = %t, want true", srv.WithShutdownSignalOK)
assert.Falsef(t, srv.StartOK, "Start() StartOK got = %t, want false", srv.StartOK)
assert.Falsef(t, srv.ServiceShutdownOK, "Start() ServiceShutdownOK got = %t, want false", srv.ServiceShutdownOK)
return
case <-time.After(time.Millisecond * 100):
// Start successfully, proceed to kill
require.NoError(t, syscall.Kill(os.Getpid(), tt.syscallKill))
}
select {
case <-done:
case <-time.After(time.Second):
assert.Fail(t, "Start() failed to shutdown in reasonable time")
}
assert.Truef(t, srv.WithShutdownSignalOK, "Start() WithShutdownSignalOK got = %t, want true", srv.WithShutdownSignalOK)
assert.Truef(t, srv.StartOK, "Start() StartOK got = %t, want true", srv.StartOK)
assert.Truef(t, srv.ServiceShutdownOK, "Start() ServiceShutdownOK got = %t, want true", srv.ServiceShutdownOK)
})
}
}
func TestServiceGroup_Start_shutdown_timeout(t *testing.T) {
srv := newService(nil).WithSleepOnShutdown(func() {
time.Sleep(time.Millisecond * 500)
})
sg := &goservicing.ServiceGroup{}
done := make(chan error, 1)
go func() {
err := sg.Start(context.Background(), time.Millisecond, nil, srv)
assert.EqualError(t, err, "shutdown deadline exceeded while waiting for service to shutdown: service")
close(done)
}()
// wait for the service start
select {
case <-done:
// Start failed with error
assert.Fail(t, "failed to start")
return
case <-time.After(time.Millisecond * 300):
// Start successfully, proceed to close
_ = sg.Close() //nolint:errcheck
}
select {
case <-done:
case <-time.After(time.Second):
assert.Fail(t, "Start_shutdown_timeout() failed to shutdown in timeout")
}
assert.Truef(t, srv.WithShutdownSignalOK, "Start_shutdown_timeout() WithShutdownSignalOK got = %t, want true", srv.WithShutdownSignalOK)
assert.Truef(t, srv.StartOK, "Start_shutdown_timeout() StartOK got = %t, want true", srv.StartOK)
assert.Falsef(t, srv.ServiceShutdownOK, "Start_shutdown_timeout() ServiceShutdownOK got = %t, want false", srv.ServiceShutdownOK)
}
func TestServiceGroup_Close(t *testing.T) {
srv := newService(nil)
sg := &goservicing.ServiceGroup{}
done := make(chan error, 1)
go func() {
err := sg.Start(context.Background(), time.Minute, nil, srv)
assert.NoError(t, err, "Close() got error = %v", err)
close(done)
}()
// wait for the service start
select {
case <-done:
// Start failed with error
assert.Fail(t, "failed to start")
return
case <-time.After(time.Second):
// Start successfully, proceed to close
_ = sg.Close() //nolint:errcheck
}
select {
case <-done:
case <-time.After(time.Second):
assert.Fail(t, "Close() failed to shutdown in reasonable time")
}
assert.Truef(t, srv.WithShutdownSignalOK, "Close() WithShutdownSignalOK got = %t, want true", srv.WithShutdownSignalOK)
assert.Truef(t, srv.StartOK, "Close() StartOK got = %t, want true", srv.StartOK)
assert.Truef(t, srv.ServiceShutdownOK, "Close() ServiceShutdownOK got = %t, want true", srv.ServiceShutdownOK)
}
func TestWithGracefulSutDown(t *testing.T) {
srv := newService(nil)
var gracefulShutdownOK bool
gracefulShutdownFunc := func(_ context.Context) {
gracefulShutdownOK = true
}
sg := goservicing.WithGracefulShutDown(gracefulShutdownFunc)
done := make(chan error, 1)
go func() {
err := sg.Start(context.Background(), time.Minute, nil, srv)
assert.NoError(t, err, "Close() got error = %v", err)
close(done)
}()
// wait for the service start
select {
case <-done:
// Start failed with error
assert.Fail(t, "failed to start")
return
case <-time.After(time.Second):
// Start successfully, proceed to close
require.NoError(t, syscall.Kill(os.Getpid(), syscall.SIGTERM))
}
select {
case <-done:
case <-time.After(time.Second):
assert.Fail(t, "failed to shutdown in reasonable time")
}
assert.Truef(t, gracefulShutdownOK, "Close() gracefulShutdownOK got = %t, want true", gracefulShutdownOK)
}
type standAlongService struct {
started bool
serve chan struct{}
closed bool
}
func (srv *standAlongService) Run() error {
srv.started = true
<-srv.serve
return nil
}
func (srv *standAlongService) Stop() {
srv.closed = true
if srv.serve == nil {
return
}
close(srv.serve)
}
func TestNewService(t *testing.T) {
srv := &standAlongService{serve: make(chan struct{})}
sg := &goservicing.ServiceGroup{}
done := make(chan error, 1)
go func() {
err := sg.Start(
context.Background(),
time.Minute,
nil,
goservicing.NewService(
"standAlongService",
func() error {
return srv.Run()
},
func() { srv.Stop() },
),
)
done <- err
close(done)
}()
// wait for the service start
select {
case err := <-done:
// Start failed with error
require.Error(t, err)
assert.Fail(t, "failed to start")
return
case <-time.After(time.Millisecond * 300):
// Start successfully, proceed to close
_ = sg.Close() //nolint:errcheck
}
select {
case <-done:
case <-time.After(time.Second):
assert.Fail(t, "failed to shutdown in reasonable time")
}
assert.True(t, srv.started)
assert.True(t, srv.closed)
}