-
Notifications
You must be signed in to change notification settings - Fork 78
/
baseplate_test.go
398 lines (333 loc) · 7.85 KB
/
baseplate_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
393
394
395
396
397
398
package baseplate_test
import (
"context"
"errors"
"fmt"
"io"
"os"
"path/filepath"
"reflect"
"sync"
"syscall"
"testing"
"time"
"github.com/reddit/baseplate.go"
"github.com/reddit/baseplate.go/configbp"
"github.com/reddit/baseplate.go/ecinterface"
"github.com/reddit/baseplate.go/log"
"github.com/reddit/baseplate.go/runtimebp"
"github.com/reddit/baseplate.go/secrets"
"github.com/reddit/baseplate.go/tracing"
)
const (
testTimeout = time.Millisecond * 100
)
func newSecretsStore(t testing.TB) *secrets.Store {
t.Helper()
store, _, err := secrets.NewTestSecrets(
context.Background(),
make(map[string]secrets.GenericSecret),
)
if err != nil {
t.Fatal(err)
}
return store
}
func newWaitServer(t testing.TB, bp baseplate.Baseplate, duration time.Duration) baseplate.Server {
t.Helper()
wg := sync.WaitGroup{}
wg.Add(1)
return &testServer{
bp: bp,
waitDuration: duration,
wg: &wg,
}
}
func newErrorServer(t testing.TB, bp baseplate.Baseplate, closeErr error) baseplate.Server {
t.Helper()
wg := sync.WaitGroup{}
wg.Add(1)
return &testServer{
bp: bp,
closeErr: closeErr,
wg: &wg,
}
}
type testServer struct {
bp baseplate.Baseplate
closeErr error
waitDuration time.Duration
wg *sync.WaitGroup
}
func (s *testServer) Baseplate() baseplate.Baseplate {
return s.bp
}
func (s *testServer) Serve() error {
s.wg.Wait()
return nil
}
func (s *testServer) Close() error {
if s.waitDuration != 0 {
time.Sleep(s.waitDuration)
}
s.wg.Done()
return s.closeErr
}
var _ baseplate.Server = (*testServer)(nil)
func TestServe(t *testing.T) {
t.Parallel()
store := newSecretsStore(t)
defer store.Close()
bp := baseplate.NewTestBaseplate(baseplate.NewTestBaseplateArgs{
Config: baseplate.Config{
StopTimeout: testTimeout,
StopDelay: -1,
},
Store: store,
EdgeContextImpl: ecinterface.Mock(),
})
closeError := errors.New("test close error")
cases := []struct {
name string
server baseplate.Server
errExpected error
}{
{
name: "fast",
server: newWaitServer(t, bp, time.Millisecond),
errExpected: nil,
},
{
name: "timeout",
server: newWaitServer(t, bp, bp.GetConfig().StopTimeout*2),
errExpected: context.DeadlineExceeded,
},
{
name: "close-error",
server: newErrorServer(t, bp, closeError),
errExpected: closeError,
},
}
for _, _c := range cases {
c := _c
t.Run(
c.name,
func(t *testing.T) {
ch := make(chan error)
go func() {
// Run Serve in a goroutine since it is blocking
ch <- baseplate.Serve(
context.Background(),
baseplate.ServeArgs{Server: c.server},
)
}()
time.Sleep(time.Millisecond)
p, err := os.FindProcess(syscall.Getpid())
if err != nil {
t.Fatal(err)
}
p.Signal(os.Interrupt)
err = <-ch
if !errors.Is(err, c.errExpected) {
t.Fatalf("error mismatch, expected %#v, got %#v", c.errExpected, err)
}
},
)
}
}
func TestServeStopDelay(t *testing.T) {
t.Parallel()
const delay = 20 * time.Millisecond
store := newSecretsStore(t)
defer store.Close()
bp := baseplate.NewTestBaseplate(baseplate.NewTestBaseplateArgs{
Config: baseplate.Config{
StopTimeout: testTimeout,
StopDelay: delay,
},
Store: store,
EdgeContextImpl: ecinterface.Mock(),
})
ch := make(chan error)
go func() {
// Run Serve in a goroutine since it is blocking
ch <- baseplate.Serve(
context.Background(),
baseplate.ServeArgs{Server: newWaitServer(t, bp, time.Millisecond)},
)
}()
time.Sleep(time.Millisecond)
p, err := os.FindProcess(syscall.Getpid())
if err != nil {
t.Fatal(err)
}
before := time.Now()
p.Signal(os.Interrupt)
<-ch
duration := time.Since(before)
if duration < delay {
t.Errorf("Expected graceful shutdown to take at least %v, got %v", delay, duration)
}
}
type timestampCloser struct {
lock sync.Mutex
ts []time.Time
}
func (c *timestampCloser) Close() error {
c.lock.Lock()
defer c.lock.Unlock()
c.ts = append(c.ts, time.Now())
return nil
}
func (c *timestampCloser) get() []time.Time {
c.lock.Lock()
defer c.lock.Unlock()
if len(c.ts) == 0 {
return nil
}
ret := make([]time.Time, len(c.ts))
copy(ret, c.ts)
return ret
}
func (c *timestampCloser) GoString() string {
return fmt.Sprintf("timestampCloser:%#v", c.get())
}
func TestServeClosers(t *testing.T) {
t.Parallel()
store := newSecretsStore(t)
defer store.Close()
bp := baseplate.NewTestBaseplate(baseplate.NewTestBaseplateArgs{
Config: baseplate.Config{StopTimeout: testTimeout},
Store: store,
EdgeContextImpl: ecinterface.Mock(),
})
pre := ×tampCloser{}
post := ×tampCloser{}
args := baseplate.ServeArgs{
Server: newWaitServer(t, bp, time.Millisecond),
PreShutdown: []io.Closer{pre},
PostShutdown: []io.Closer{post},
}
ch := make(chan error)
p, err := os.FindProcess(syscall.Getpid())
if err != nil {
t.Fatal(err)
}
go func() {
// Run Serve in a goroutine since it is blocking
ch <- baseplate.Serve(context.Background(), args)
}()
time.Sleep(time.Millisecond)
p.Signal(os.Interrupt)
<-ch
if got := pre.get(); len(got) != 1 {
t.Fatalf("Unexpected number of PreShutdown calls: expected 1, got %v", len(got))
}
if got := post.get(); len(got) != 1 {
t.Fatalf("Unexpected number of PostShutdown calls: expected 1, got %v", len(got))
}
if !pre.ts[0].Before(post.ts[0]) {
t.Errorf(
"PreShutdown finished after PostShutdown: pre: %v, post: %v",
pre.ts[0],
post.ts[0],
)
}
}
type serviceConfig struct {
baseplate.Config `yaml:",inline"`
Redis struct {
Addrs []string
} `yaml:"redis"`
}
func TestParseConfigYAML(t *testing.T) {
t.Cleanup(func() { configbp.BaseplateConfigPath = os.Getenv("BASEPLATE_CONFIG_PATH") })
useConfig := func(configYAML string) {
path := filepath.Join(t.TempDir(), "config.yaml")
if err := os.WriteFile(path, []byte(configYAML), 0666); err != nil {
t.Fatalf("Failed to write to tmp config file %q: %v", path, err)
}
configbp.BaseplateConfigPath = path
}
const validConfigYAML = `
addr: :8080
timeout: 30s
stopTimeout: 30s
log:
level: info
runtime:
numProcesses:
max: 100
secrets:
path: /tmp/secrets.json
tracing:
namespace: baseplate-test
queueName: test
recordTimeout: 1ms
sampleRate: 0.01
redis:
addrs:
- redis:8000
- redis:8001
`
validConfigBaseplate := baseplate.Config{
Addr: ":8080",
Timeout: time.Second * 30,
StopTimeout: time.Second * 30,
Log: log.Config{
Level: "info",
},
Runtime: runtimebp.Config{
NumProcesses: struct {
Max int `yaml:"max"`
Min int `yaml:"min"`
}{
Max: 100,
Min: 0,
},
},
Secrets: secrets.Config{
Path: "/tmp/secrets.json",
},
Tracing: tracing.Config{
Namespace: "baseplate-test",
QueueName: "test",
MaxRecordTimeout: time.Millisecond,
SampleRate: 0.01,
},
}
validConfigService := struct{ Addrs []string }{
Addrs: []string{
"redis:8000",
"redis:8001",
},
}
t.Run("valid_config", func(t *testing.T) {
useConfig(validConfigYAML)
var cfg serviceConfig
if err := baseplate.ParseConfigYAML(&cfg); err != nil {
t.Fatalf("valid config failed to parse: %s", err)
}
if !reflect.DeepEqual(cfg.GetConfig(), validConfigBaseplate) {
t.Errorf("config mismatch, expected %#v, got %#v", validConfigBaseplate, cfg.GetConfig())
}
if !reflect.DeepEqual(cfg.Redis, validConfigService) {
t.Errorf(
"service config mismatch, expected %#v, got %#v",
validConfigService,
cfg.Redis,
)
}
})
t.Run("extra_params", func(t *testing.T) {
const configWithExtraParams = validConfigYAML + `
anotherbackend:
addr: someservice:9090
`
useConfig(configWithExtraParams)
var cfg serviceConfig
if err := baseplate.ParseConfigYAML(&cfg); err == nil {
t.Error("Expected error when yaml has extra content, did not happen.")
}
})
}