-
Notifications
You must be signed in to change notification settings - Fork 0
/
shift_test.go
497 lines (406 loc) · 12.3 KB
/
shift_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
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
package shift
import (
"context"
"testing"
"time"
"github.com/golang/mock/gomock"
"github.com/mustafaturan/shift/mock"
"github.com/mustafaturan/shift/restrictor"
"github.com/stretchr/testify/assert"
)
const (
name = "test"
)
func TestVersion(t *testing.T) {
assert.Equal(t, Version, "1.0.0")
}
func TestNew(t *testing.T) {
ctrl := gomock.NewController(t)
defer ctrl.Finish()
timer := mock.NewMockTimer(ctrl)
counter := mock.NewMockCounter(ctrl)
t.Run("without optional reset timer", func(t *testing.T) {
s, err := New(name)
assert.NoError(t, err)
assert.NotNil(t, s)
assert.NotNil(t, s.resetTimer)
})
t.Run("without optional counter", func(t *testing.T) {
s, err := New(name)
assert.NoError(t, err)
assert.NotNil(t, s)
assert.NotNil(t, s.counter)
})
t.Run("with required options", func(t *testing.T) {
s, err := New(name, WithCounter(counter), WithResetTimer(timer))
assert.NoError(t, err)
assert.NotNil(t, s)
assert.IsType(t, &Shift{}, s)
t.Run("name", func(t *testing.T) {
assert.Equal(t, name, s.name)
})
t.Run("initial state", func(t *testing.T) {
assert.Equal(t, StateClose, s.state)
})
t.Run("initial reset at", func(t *testing.T) {
assert.NotNil(t, s.resetter)
assert.False(t, s.resetter.Stop())
})
t.Run("invokers", func(t *testing.T) {
t.Run("close state", func(t *testing.T) {
invoker, ok := s.invokers[StateClose].(*onCloseInvoker)
assert.True(t, ok)
assert.NotNil(t, invoker)
assert.Equal(t, optionDefaultInvocationTimeout, invoker.timeout)
assert.NotNil(t, invoker.timeoutCallback)
})
t.Run("half-open state", func(t *testing.T) {
invoker, ok := s.invokers[StateHalfOpen].(*onHalfOpenInvoker)
assert.True(t, ok)
assert.NotNil(t, invoker)
assert.Equal(t, optionDefaultInvocationTimeout, invoker.timeout)
assert.NotNil(t, invoker.timeoutCallback)
})
t.Run("open state", func(t *testing.T) {
invoker, ok := s.invokers[StateOpen].(*onOpenInvoker)
assert.True(t, ok)
assert.NotNil(t, invoker)
assert.NotNil(t, invoker.rejectCallback)
})
})
t.Run("restrictors", func(t *testing.T) {
assert.Equal(t, 0, len(s.restrictors))
})
t.Run("state change handlers", func(t *testing.T) {
assert.Equal(t, 0, len(s.stateChangeHandlers))
})
})
}
func TestWithInitialState(t *testing.T) {
ctrl := gomock.NewController(t)
defer ctrl.Finish()
timer := mock.NewMockTimer(ctrl)
counter := mock.NewMockCounter(ctrl)
state := StateOpen
s, err := New(
name,
WithCounter(counter),
WithResetTimer(timer),
WithInitialState(state),
)
assert.NoError(t, err)
assert.Equal(t, state, s.state)
}
func TestWithInvocationTimeout(t *testing.T) {
ctrl := gomock.NewController(t)
defer ctrl.Finish()
timer := mock.NewMockTimer(ctrl)
counter := mock.NewMockCounter(ctrl)
duration := 90 * time.Second
s, err := New(
name,
WithCounter(counter),
WithResetTimer(timer),
WithInvocationTimeout(duration),
)
assert.NoError(t, err)
assert.Equal(t, duration, s.invokers[StateClose].(*deadlineInvoker).timeout)
assert.Equal(t, duration, s.invokers[StateHalfOpen].(*deadlineInvoker).timeout)
}
func TestWithRestrictors(t *testing.T) {
ctrl := gomock.NewController(t)
defer ctrl.Finish()
timer := mock.NewMockTimer(ctrl)
counter := mock.NewMockCounter(ctrl)
t.Run("with a nil restrictor", func(t *testing.T) {
var restrictor Restrictor
s, err := New(
name,
WithCounter(counter),
WithResetTimer(timer),
WithRestrictors(restrictor),
)
assert.Error(t, err)
assert.IsType(t, &InvalidOptionError{}, err)
assert.Nil(t, s)
})
t.Run("with valid options", func(t *testing.T) {
restrictor := &restrictor.ConcurrentRunRestrictor{}
s, err := New(
name,
WithCounter(counter),
WithResetTimer(timer),
WithRestrictors(restrictor),
)
assert.NoError(t, err)
assert.Equal(t, 1, len(s.restrictors))
assert.Equal(t, restrictor, s.restrictors[0])
})
}
func TestWithOnStateChangeHandlers(t *testing.T) {
ctrl := gomock.NewController(t)
defer ctrl.Finish()
timer := mock.NewMockTimer(ctrl)
counter := mock.NewMockCounter(ctrl)
t.Run("with a nil state change handler", func(t *testing.T) {
var validHandler OnStateChange = func(_, _ State, _ Stats) {}
var nilHandler StateChangeHandler
s, err := New(
name,
WithCounter(counter),
WithResetTimer(timer),
WithStateChangeHandlers(validHandler, nilHandler),
)
assert.Error(t, err)
assert.IsType(t, &InvalidOptionError{}, err)
assert.Nil(t, s)
})
t.Run("with valid options", func(t *testing.T) {
var handler1 OnStateChange = func(_, _ State, _ Stats) {}
var handler2 OnStateChange = func(_, _ State, _ Stats) {}
var handler3 OnStateChange = func(_, _ State, _ Stats) {}
s, err := New(
name,
WithCounter(counter),
WithResetTimer(timer),
WithStateChangeHandlers(handler1, handler2, handler3),
)
assert.NoError(t, err)
assert.Equal(t, 3, len(s.stateChangeHandlers))
})
}
func TestWithSuccessHandlers(t *testing.T) {
ctrl := gomock.NewController(t)
defer ctrl.Finish()
timer := mock.NewMockTimer(ctrl)
counter := mock.NewMockCounter(ctrl)
t.Run("with a nil state change handler", func(t *testing.T) {
var validHandler OnSuccess = func(context.Context, interface{}) {}
var nilHandler SuccessHandler
s, err := New(
name,
WithCounter(counter),
WithResetTimer(timer),
WithSuccessHandlers(StateClose, validHandler, nilHandler),
)
assert.Error(t, err)
assert.IsType(t, &InvalidOptionError{}, err)
assert.Nil(t, s)
})
t.Run("with valid options", func(t *testing.T) {
var handler1 OnSuccess = func(context.Context, interface{}) {}
var handler2 OnSuccess = func(context.Context, interface{}) {}
s, err := New(
name,
WithCounter(counter),
WithResetTimer(timer),
WithSuccessHandlers(StateClose, handler1, handler2),
WithSuccessHandlers(StateHalfOpen, handler1),
)
assert.NoError(t, err)
assert.Equal(t, 2, len(s.successHandlers[StateClose]))
// Additional one from trippers
assert.Equal(t, 1+1, len(s.successHandlers[StateHalfOpen]))
assert.Equal(t, 0, len(s.successHandlers[StateOpen]))
})
}
func TestWithFailureHandlers(t *testing.T) {
ctrl := gomock.NewController(t)
defer ctrl.Finish()
timer := mock.NewMockTimer(ctrl)
counter := mock.NewMockCounter(ctrl)
t.Run("with a nil state change handler", func(t *testing.T) {
var validHandler OnFailure = func(context.Context, error) {}
var nilHandler FailureHandler
s, err := New(
name,
WithCounter(counter),
WithResetTimer(timer),
WithFailureHandlers(StateClose, validHandler, nilHandler),
)
assert.Error(t, err)
assert.IsType(t, &InvalidOptionError{}, err)
assert.Nil(t, s)
})
t.Run("with valid options", func(t *testing.T) {
var handler1 OnFailure = func(context.Context, error) {}
var handler2 OnFailure = func(context.Context, error) {}
s, err := New(
name,
WithCounter(counter),
WithResetTimer(timer),
WithFailureHandlers(StateClose, handler1, handler2),
WithFailureHandlers(StateHalfOpen, handler2),
WithFailureHandlers(StateOpen, handler1),
)
assert.NoError(t, err)
// Additional one from trippers
assert.Equal(t, 2+1, len(s.failureHandlers[StateClose]))
// Additional one from trippers
assert.Equal(t, 1+1, len(s.failureHandlers[StateHalfOpen]))
assert.Equal(t, 1, len(s.failureHandlers[StateOpen]))
})
}
func TestWithOpener(t *testing.T) {
ctrl := gomock.NewController(t)
defer ctrl.Finish()
timer := mock.NewMockTimer(ctrl)
counter := mock.NewMockCounter(ctrl)
t.Run("with invalid state", func(t *testing.T) {
s, err := New(
name,
WithCounter(counter),
WithResetTimer(timer),
WithOpener(StateOpen, -1.0, 100),
)
assert.Error(t, err)
assert.IsType(t, &InvalidOptionError{}, err)
assert.Nil(t, s)
})
t.Run("with invalid threshold", func(t *testing.T) {
s, err := New(
name,
WithCounter(counter),
WithResetTimer(timer),
WithOpener(StateClose, -1.0, 100),
)
assert.Error(t, err)
assert.IsType(t, &InvalidOptionError{}, err)
assert.Nil(t, s)
})
t.Run("with invalid min requests", func(t *testing.T) {
s, err := New(
name,
WithCounter(counter),
WithResetTimer(timer),
WithOpener(StateHalfOpen, 0.5, 0),
)
assert.Error(t, err)
assert.IsType(t, &InvalidOptionError{}, err)
assert.Nil(t, s)
})
t.Run("with valid options", func(t *testing.T) {
s, err := New(
name,
WithCounter(counter),
WithResetTimer(timer),
WithOpener(StateClose, 98.5, 100),
)
assert.NoError(t, err)
assert.NotNil(t, s)
assert.Equal(t, 1, len(s.failureHandlers[StateClose]))
handler := s.failureHandlers[StateClose][0]
t.Run("execute without matching the min requests criteria", func(t *testing.T) {
stats := Stats{SuccessCount: 95, FailureCount: 2, RejectCount: 1}
ctx := context.WithValue(context.Background(), CtxStats, stats)
handler.Handle(ctx, nil)
assert.Equal(t, StateClose, s.currentState())
})
t.Run("execute without matching the success threshold criteria", func(t *testing.T) {
stats := Stats{SuccessCount: 998, FailureCount: 2, RejectCount: 0}
ctx := context.WithValue(context.Background(), CtxStats, stats)
handler.Handle(ctx, nil)
assert.Equal(t, StateClose, s.currentState())
})
t.Run("execute with matched criteria", func(t *testing.T) {
stats := Stats{SuccessCount: 984, FailureCount: 16}
ctx := context.WithValue(context.Background(), CtxStats, stats)
counter.
EXPECT().
Stats(metricSuccess, metricFailure, metricTimeout, metricReject).
Return(map[string]uint32{"success": stats.SuccessCount, "failure": stats.FailureCount})
counter.
EXPECT().
Reset()
timer.
EXPECT().
Next(gomock.Any()).
Return(60 * time.Second)
// Trips to open state on matched criteria
handler.Handle(ctx, nil)
assert.Equal(t, StateOpen, s.currentState())
})
})
}
func TestWithCloser(t *testing.T) {
ctrl := gomock.NewController(t)
defer ctrl.Finish()
timer := mock.NewMockTimer(ctrl)
counter := mock.NewMockCounter(ctrl)
t.Run("with invalid threshold", func(t *testing.T) {
s, err := New(
name,
WithCounter(counter),
WithResetTimer(timer),
WithCloser(-1.0, 100),
)
assert.Error(t, err)
assert.IsType(t, &InvalidOptionError{}, err)
assert.Nil(t, s)
})
t.Run("with invalid min requests", func(t *testing.T) {
s, err := New(
name,
WithCounter(counter),
WithResetTimer(timer),
WithCloser(98.0, 0),
)
assert.Error(t, err)
assert.IsType(t, &InvalidOptionError{}, err)
assert.Nil(t, s)
})
t.Run("with valid options", func(t *testing.T) {
s, err := New(
name,
WithCounter(counter),
WithResetTimer(timer),
WithInitialState(StateHalfOpen),
WithCloser(98.0, 100),
)
assert.NoError(t, err)
assert.NotNil(t, s)
assert.Equal(t, 1, len(s.successHandlers[StateHalfOpen]))
handler := s.successHandlers[StateHalfOpen][0]
t.Run("execute without matching the min requests criteria", func(t *testing.T) {
stats := Stats{SuccessCount: 98, FailureCount: 2, RejectCount: 1}
ctx := context.WithValue(context.Background(), CtxStats, stats)
handler.Handle(ctx, nil)
assert.Equal(t, StateHalfOpen, s.currentState())
})
t.Run("execute without matching the min success ratio criteria", func(t *testing.T) {
stats := Stats{SuccessCount: 97, FailureCount: 3, RejectCount: 0}
ctx := context.WithValue(context.Background(), CtxStats, stats)
handler.Handle(ctx, nil)
assert.Equal(t, StateHalfOpen, s.currentState())
})
t.Run("execute with matched criteria", func(t *testing.T) {
stats := Stats{SuccessCount: 98, FailureCount: 2}
ctx := context.WithValue(context.Background(), CtxStats, stats)
counter.
EXPECT().
Stats(metricSuccess, metricFailure, metricTimeout, metricReject).
Return(map[string]uint32{"success": stats.SuccessCount, "failure": stats.FailureCount})
counter.
EXPECT().
Reset()
timer.
EXPECT().
Reset()
// Trips to close state on success criteria
handler.Handle(ctx, nil)
assert.Equal(t, StateClose, s.currentState())
})
})
}
func TestNilOnStateChange(t *testing.T) {
var fn OnStateChange
assert.Panics(t, func() { fn.Handle(StateOpen, StateHalfOpen, Stats{}) })
}
func TestNilOnFailure(t *testing.T) {
var fn OnFailure
assert.Panics(t, func() { fn.Handle(context.Background(), nil) })
}
func TestNilOnSuccess(t *testing.T) {
var fn OnSuccess
assert.Panics(t, func() { fn.Handle(context.Background(), nil) })
}