-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
gwp_test.go
285 lines (265 loc) · 8.3 KB
/
gwp_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
package gwp
import (
"context"
"errors"
"fmt"
"github.com/dalmarcogd/gwp/pkg/worker"
"log"
"net/http"
"testing"
"time"
)
func TestNew(t *testing.T) {
s := New()
if s.Configs()["port"] != defaultConfig["port"] {
t.Errorf("Port is different of default port %d != %d", s.Configs()["port"], defaultConfig["port"])
}
if s.Configs()["host"] != defaultConfig["host"] {
t.Errorf("Host is different of default host %s != %s", s.Configs()["host"], defaultConfig["host"])
}
if s.Configs()["basePath"] != defaultConfig["basePath"] {
t.Errorf("BasePath is different of default basePath %s != %s", s.Configs()["basePath"], defaultConfig["basePath"])
}
if s.Configs()["stats"] != defaultConfig["stats"] {
t.Errorf("Stats is different of default stats %t != %t", s.Configs()["stats"], defaultConfig["stats"])
}
if s.Configs()["healthCheck"] != defaultConfig["healthCheck"] {
t.Errorf("HealthCheck is different of default healthCheck %t != %t", s.Configs()["healthCheck"], defaultConfig["healthCheck"])
}
if s.Configs()["debugPprof"] != defaultConfig["debugPprof"] {
t.Errorf("DebugPprof is different of default debugPprof %t != %t", s.Configs()["debugPprof"], defaultConfig["debugPprof"])
}
}
func TestNewWithConfig(t *testing.T) {
config := map[string]interface{}{
"port": 8002,
"host": "google",
"basePath": "/workers/test",
"stats": true,
"healthCheck": true,
"debugPprof": true,
}
s := NewWithConfig(config)
if s.Configs()["port"] != config["port"] {
t.Errorf("Port is different of default port %d != %d", s.Configs()["port"], config["port"])
}
if s.Configs()["host"] != config["host"] {
t.Errorf("Host is different of default host %s != %s", s.Configs()["host"], config["host"])
}
if s.Configs()["basePath"] != config["basePath"] {
t.Errorf("BasePath is different of default basePath %s != %s", s.Configs()["basePath"], config["basePath"])
}
if s.Configs()["stats"] != config["stats"] {
t.Errorf("Stats is different of default stats %t != %t", s.Configs()["stats"], config["stats"])
}
if s.Configs()["healthCheck"] != config["healthCheck"] {
t.Errorf("HealthCheck is different of default healthCheck %t != %t", s.Configs()["healthCheck"], config["healthCheck"])
}
if s.Configs()["debugPprof"] != config["debugPprof"] {
t.Errorf("DebugPprof is different of default debugPprof %t != %t", s.Configs()["debugPprof"], config["debugPprof"])
}
config = map[string]interface{}{
"stats": true,
"healthCheck": true,
"debugPprof": true,
}
s = NewWithConfig(config)
if s.Configs()["port"] != defaultConfig["port"] {
t.Errorf("Port is different of default port %d != %d", s.Configs()["port"], defaultConfig["port"])
}
if s.Configs()["host"] != defaultConfig["host"] {
t.Errorf("Host is different of default host %s != %s", s.Configs()["host"], defaultConfig["host"])
}
if s.Configs()["basePath"] != defaultConfig["basePath"] {
t.Errorf("BasePath is different of default basePath %s != %s", s.Configs()["basePath"], defaultConfig["basePath"])
}
if s.Configs()["stats"] != config["stats"] {
t.Errorf("Stats is different of default stats %t != %t", s.Configs()["stats"], config["stats"])
}
if s.Configs()["healthCheck"] != config["healthCheck"] {
t.Errorf("HealthCheck is different of default healthCheck %t != %t", s.Configs()["healthCheck"], config["healthCheck"])
}
if s.Configs()["debugPprof"] != config["debugPprof"] {
t.Errorf("DebugPprof is different of default debugPprof %t != %t", s.Configs()["debugPprof"], config["debugPprof"])
}
}
func Test_server_HandleError(t *testing.T) {
f := func(w *worker.Worker, err error) {}
s := New().HandleError(f)
if s.handleError != nil && fmt.Sprintf("%p", f) != fmt.Sprintf("%p", s.handleError) {
t.Errorf("HandleError is different of f %v != %v", fmt.Sprintf("%p", f), fmt.Sprintf("%p", s.handleError))
}
}
func Test_server_HealthCheck(t *testing.T) {
s := New().HealthCheck()
if !s.Configs()["healthCheck"].(bool) {
t.Error("HealthCheck setup on WorkerServer and his not enable")
}
}
func Test_server_Stats(t *testing.T) {
s := New().Stats()
if !s.Configs()["stats"].(bool) {
t.Error("Stats setup on WorkerServer and his not enable")
}
}
func Test_server_DebugPprof(t *testing.T) {
s := New().DebugPprof()
if !s.Configs()["debugPprof"].(bool) {
t.Error("DebugPprof setup on WorkerServer and his not enable")
}
}
func Test_server_Run(t *testing.T) {
s := New().Worker("w1", func(ctx context.Context) error { return nil })
go func() {
if err := s.Run(); err != nil {
t.Errorf("Error when run WorkerServer %v", err)
}
}()
s = New().HealthCheck().DebugPprof().Stats().Worker("w2", func(ctx context.Context) error { return nil })
go func() {
if err := s.Run(); err != nil {
t.Errorf("Error when run WorkerServer %v", err)
}
}()
<-time.After(time.Second)
if err := s.GracefulStop(); err != nil {
t.Error(err)
}
}
func Test_server_Run_Error(t *testing.T) {
if err := New().Run(); err != nil {
t.Errorf("Error when run WorkerServer %v", err)
}
}
func Test_server_Worker(t *testing.T) {
nameWorker := "w1"
handleWorker := func(ctx context.Context) error {
<-time.After(3 * time.Second)
return nil
}
concurrencyWorker := 1
s := New().Worker(nameWorker, handleWorker)
workers := s.Workers()
if len(workers) != 1 {
t.Error("Number of workers is different from setup")
}
w := workers[0]
if w.Name != nameWorker {
t.Errorf("Name of worker if different from setup %s != %s", w.Name, nameWorker)
}
if w.Handle != nil && fmt.Sprintf("%p", w.Handle) != fmt.Sprintf("%p", handleWorker) {
t.Errorf("Name of worker if different from setup %p != %p", w.Handle, handleWorker)
}
if w.Concurrency != concurrencyWorker {
t.Errorf("Concurrency of worker if different from setup %d != %d", w.Concurrency, concurrencyWorker)
}
if w.RestartAlways != false {
t.Errorf("RestartAlaways of worker if different from setup %t != false", w.RestartAlways)
}
go func() {
if err := s.Run(); err != nil {
t.Error(err)
}
}()
<-time.After(1 * time.Second)
if !s.Healthy() {
t.Error("Healthy expected is true but returned false")
}
}
func Test_workerServer_StatsFunc(t *testing.T) {
s := New().StatsFunc(func(writer http.ResponseWriter, request *http.Request) {})
if _, ok := s.config["statsFunc"]; !ok {
t.Error("StatsFunc is setup but still nil")
}
}
func Test_workerServer_HealthCheckFunc(t *testing.T) {
s := New().HealthCheckFunc(func(writer http.ResponseWriter, request *http.Request) {})
if _, ok := s.config["healthCheckFunc"]; !ok {
t.Error("HealthCheckFunc is setup but still nil")
}
}
func TestWorkerServer_Healthy(t *testing.T) {
s := New().CheckHealth(func() bool {
return true
})
if !s.Healthy() {
t.Error("Healthy expected is true but returned false")
}
s = New().CheckHealth(func() bool {
return false
})
if s.Healthy() {
t.Error("Healthy expected is false but returned true")
}
s = New()
if !s.Healthy() {
t.Error("Healthy expected is true but returned false")
}
}
func TestWorkerServer_Infos(t *testing.T) {
if infos := New().Infos(); infos == nil {
t.Error("Infos expected is but returned nil")
}
}
func TestWorkerServer_RunFullFeatures(t *testing.T) {
err := New().Worker("test",
func(ctx context.Context) error {
<-time.After(3 * time.Second)
return nil
},
worker.WithTimeout(2*time.Second),
worker.WithDeadline(time.Now().Add(4*time.Second)),
worker.WithConcurrency(2)).Run()
if err != nil {
t.Error(err)
}
}
func TestExample_simpleWorker(t *testing.T) {
server := New().
Stats().
HealthCheck().
DebugPprof().
HandleError(func(w *worker.Worker, err error) {
log.Printf("Worker [%s] error: %s", w.Name, err)
}).
Worker(
"w1",
func(ctx context.Context) error {
select {
case <-time.After(5 * time.Second):
return errors.New("test w1")
case <-ctx.Done():
return nil
}
},
worker.WithRestartAlways()).
Worker(
"w2",
func(ctx context.Context) error {
select {
case <-time.After(10 * time.Second):
return nil
case <-ctx.Done():
return nil
}
}).
Worker(
"w3",
func(ctx context.Context) error {
select {
case <-time.After(15 * time.Second):
return errors.New("test w3")
case <-ctx.Done():
return nil
}
})
go func() {
if err := server.Run(); err != nil {
t.Error(err)
}
}()
time.Sleep(16 * time.Second)
if err := server.GracefulStop(); err != nil {
t.Error(err)
}
}