-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservice_test.go
177 lines (158 loc) · 3.57 KB
/
service_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
package srvc_test
import (
"context"
"errors"
"testing"
"time"
"github.com/go-srvc/srvc"
)
const (
errInit = srvc.ErrStr("init error")
errRun = srvc.ErrStr("run error")
errStop = srvc.ErrStr("stop error")
)
func TestRun(t *testing.T) {
tests := []struct {
name string
mods []srvc.Module
expectedErr error
}{
{
name: "NoError",
mods: nil,
expectedErr: nil,
},
{
name: "NoError_MultipleModules",
mods: []srvc.Module{SuccessMod(), SuccessMod(), SuccessMod()},
expectedErr: nil,
},
{
name: "InitError",
mods: []srvc.Module{InitErrMod()},
expectedErr: errInit,
},
{
name: "InitError_and_StopError_Different_Modules",
mods: []srvc.Module{StopErrMod(), InitErrMod()},
expectedErr: errStop,
},
{
name: "RunError",
mods: []srvc.Module{RunErrMod()},
expectedErr: errRun,
},
{
name: "StopError",
mods: []srvc.Module{StopErrMod()},
expectedErr: errStop,
},
{
name: "InitPanic",
mods: []srvc.Module{InitPanicMod()},
expectedErr: srvc.ErrModulePanic,
},
{
name: "RunPanic",
mods: []srvc.Module{RunPanicMod()},
expectedErr: srvc.ErrModulePanic,
},
{
name: "StopPanic",
mods: []srvc.Module{StopPanicMod()},
expectedErr: srvc.ErrModulePanic,
},
}
for _, tc := range tests {
t.Run(tc.name, func(t *testing.T) {
stopMod, stop := StopMod()
tc.mods = append(tc.mods, stopMod)
go func() {
time.Sleep(time.Second)
stop()
}()
err := srvc.Run(tc.mods...)
if !errors.Is(err, tc.expectedErr) {
t.Errorf("expected to found error %v from %v", tc.expectedErr, err)
}
})
}
}
func TestRun_NoModules(t *testing.T) {
err := srvc.Run()
if err != nil {
t.Errorf("expected no error but got %v", err)
}
}
// StopMod can be used to trigger stop sequence for srvc.Run in tests.
func StopMod() (srvc.Module, func()) {
ctx, stop := context.WithCancel(context.Background())
return &TestMod{
init: func() error {
return nil
},
run: func() error {
<-ctx.Done()
return nil
},
stop: func() error {
stop()
return nil
},
}, stop
}
func InitErrMod() srvc.Module {
return &TestMod{
init: func() error { return errInit },
run: func() error { return nil },
stop: func() error { return nil },
}
}
func InitPanicMod() srvc.Module {
return &TestMod{
run: func() error { return nil },
stop: func() error { return nil },
}
}
func RunErrMod() srvc.Module {
return &TestMod{
init: func() error { return nil },
run: func() error { return errRun },
stop: func() error { return nil },
}
}
func RunPanicMod() srvc.Module {
return &TestMod{
init: func() error { return nil },
stop: func() error { return nil },
}
}
func StopErrMod() srvc.Module {
return &TestMod{
init: func() error { return nil },
run: func() error { return nil },
stop: func() error { return errStop },
}
}
func InitStopErrMod() srvc.Module {
return &TestMod{
init: func() error { return errInit },
run: func() error { return nil },
stop: func() error { return errStop },
}
}
func StopPanicMod() srvc.Module {
return &TestMod{
init: func() error { return nil },
run: func() error { return nil },
}
}
func SuccessMod() srvc.Module {
mod, _ := StopMod()
return mod
}
type TestMod struct{ init, run, stop func() error }
func (m *TestMod) ID() string { return "TestMod" }
func (m *TestMod) Init() error { return m.init() }
func (m *TestMod) Run() error { return m.run() }
func (m *TestMod) Stop() error { return m.stop() }