-
Notifications
You must be signed in to change notification settings - Fork 8
/
server_test.go
121 lines (100 loc) · 2.95 KB
/
server_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
package gracefulshutdown_test
import (
"context"
"errors"
"os"
"testing"
"time"
gracefulshutdown "github.com/quii/go-graceful-shutdown"
"github.com/quii/go-graceful-shutdown/assert"
)
func TestGracefulShutdownServer_Listen(t *testing.T) {
t.Run("happy path, listen, wait for interrupt, shutdown gracefully", func(t *testing.T) {
var (
interrupt = make(chan os.Signal)
spyServer = NewSpyServer()
server = gracefulshutdown.NewServer(spyServer, gracefulshutdown.WithShutdownSignal(interrupt))
ctx = context.Background()
)
spyServer.ListenAndServeFunc = func() error {
return nil
}
spyServer.ShutdownFunc = func() error {
return nil
}
go func() {
if err := server.ListenAndServe(ctx); err != nil {
t.Error(err)
}
}()
// verify we call listen on the delegate server
spyServer.AssertListened(t)
// verify we call shutdown on the delegate server when an interrupt is made
interrupt <- os.Interrupt
spyServer.AssertShutdown(t)
})
t.Run("when listen fails, return error", func(t *testing.T) {
var (
interrupt = make(chan os.Signal)
spyServer = NewSpyServer()
server = gracefulshutdown.NewServer(spyServer, gracefulshutdown.WithShutdownSignal(interrupt))
err = errors.New("oh no")
ctx = context.Background()
)
spyServer.ListenAndServeFunc = func() error {
return err
}
gotErr := server.ListenAndServe(ctx)
assert.Equal(t, gotErr.Error(), err.Error())
})
t.Run("shutdown error gets propagated", func(t *testing.T) {
var (
interrupt = make(chan os.Signal)
errChan = make(chan error)
spyServer = NewSpyServer()
server = gracefulshutdown.NewServer(spyServer, gracefulshutdown.WithShutdownSignal(interrupt))
err = errors.New("oh no")
ctx = context.Background()
)
spyServer.ListenAndServeFunc = func() error {
return nil
}
spyServer.ShutdownFunc = func() error {
return err
}
go func() {
errChan <- server.ListenAndServe(ctx)
}()
interrupt <- os.Interrupt
select {
case gotErr := <-errChan:
assert.Equal(t, gotErr.Error(), err.Error())
case <-time.After(500 * time.Millisecond):
t.Error("timed out waiting for shutdown error to be propagated")
}
})
t.Run("context passed in can trigger shutdown too", func(t *testing.T) {
var (
interrupt = make(chan os.Signal)
spyServer = NewSpyServer()
server = gracefulshutdown.NewServer(spyServer, gracefulshutdown.WithShutdownSignal(interrupt))
ctx, cancel = context.WithCancel(context.Background())
)
spyServer.ListenAndServeFunc = func() error {
return nil
}
spyServer.ShutdownFunc = func() error {
return nil
}
go func() {
if err := server.ListenAndServe(ctx); err != nil && err != context.Canceled {
t.Error(err)
}
}()
// verify we call listen on the delegate server
spyServer.AssertListened(t)
// verify we call shutdown on the delegate server when an interrupt is made
cancel()
spyServer.AssertShutdown(t)
})
}