-
Notifications
You must be signed in to change notification settings - Fork 2
/
breaker_test.go
946 lines (823 loc) · 26.4 KB
/
breaker_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
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
package circuit
import (
"context"
"errors"
"reflect"
"regexp"
"sync"
"sync/atomic"
"testing"
"time"
)
func TestBreaker(t *testing.T) {
t.Parallel()
t.Run("NewBreaker", func(t *testing.T) {
t.Parallel()
t.Run("defaults", func(t *testing.T) {
t.Parallel()
breaker := NewBreaker(BreakerOptions{})
// name
nameRx := regexp.MustCompile(`func_circuit_TestBreaker_func[\d_]+file_breaker_test_line_\d+`)
if !nameRx.Match([]byte(breaker.name)) {
t.Fatalf("expected regex to match for default name: %s", breaker.name)
}
// timeout
if breaker.timeout != DefaultTimeout {
t.Fatalf("expected default timeout, got %v", breaker.timeout)
}
// baudrate
if breaker.baudrate != DefaultBaudRate {
t.Fatalf("expected default baudrate, got %v", breaker.baudrate)
}
// backoff
if breaker.backoff != DefaultBackOff {
t.Fatalf("expected default backoff, got %v", breaker.backoff)
}
// window
if breaker.window != DefaultWindow {
t.Fatalf("expected default window, got %v", breaker.window)
}
// estimate
if breaker.estimate == nil {
t.Fatalf("estimation func cannot be nil")
}
for i := 1; i < 100; i++ {
if breaker.estimate(i) != uint32(100-i) {
t.Fatalf("linear estimation was expected")
}
}
})
t.Run("illegal options", func(t *testing.T) {
t.Parallel()
breaker := NewBreaker(BreakerOptions{
BaudRate: time.Millisecond,
BackOff: time.Millisecond,
Window: time.Millisecond,
})
// baudrate
if breaker.baudrate != minimumBaudRate {
t.Fatalf("expected default baudrate, got %v", breaker.baudrate)
}
// backoff
if breaker.backoff != minimumBackoff {
t.Fatalf("expected default backoff, got %v", breaker.backoff)
}
// window
if breaker.window != minimumWindow {
t.Fatalf("expected default window, got %v", breaker.window)
}
})
})
t.Run("locks", func(t *testing.T) {
t.Parallel()
t.Run("new breaker", func(t *testing.T) {
t.Parallel()
breaker := NewBreaker(BreakerOptions{})
_, lockedSince, _, isLocked := breaker.openAndLockedStatus()
if !lockedSince.IsZero() || isLocked {
t.Fatalf("the lock status of a new breaker is incorrect")
}
})
t.Run("set locked", func(t *testing.T) {
t.Parallel()
breaker := NewBreaker(BreakerOptions{
LockOut: time.Second,
})
breaker.setOpen(true)
_, lockedSince, _, isLocked := breaker.openAndLockedStatus()
if lockedSince.IsZero() || !isLocked {
t.Fatalf("the circuit breaker should be locked")
}
time.Sleep(1100 * time.Millisecond)
_, lockedSince, _, isLocked = breaker.openAndLockedStatus()
if !lockedSince.IsZero() || isLocked {
t.Fatalf("the breaker should have unlocked")
}
})
t.Run("set open to false", func(t *testing.T) {
t.Parallel()
breaker := NewBreaker(BreakerOptions{
LockOut: time.Second,
})
breaker.setOpen(true)
openSince, lockedSince, isOpen, isLocked := breaker.openAndLockedStatus()
if openSince.IsZero() || !isOpen {
t.Fatalf("the circuit breaker should be open")
}
if lockedSince.IsZero() || !isLocked {
t.Fatalf("the circuit breaker should be locked")
}
breaker.setOpen(false)
openSince, lockedSince, isOpen, isLocked = breaker.openAndLockedStatus()
if !openSince.IsZero() || isOpen {
t.Fatalf("the circuit breaker should not be open")
}
if lockedSince.IsZero() || !isLocked {
t.Fatalf("the breaker should still be locked")
}
})
})
t.Run("throttles", func(t *testing.T) {
t.Parallel()
t.Run("new breaker", func(t *testing.T) {
t.Parallel()
breaker := NewBreaker(BreakerOptions{})
throttledSince, isThrottled := breaker.throttledStatus()
if !throttledSince.IsZero() || isThrottled {
t.Fatalf("the throttle status of a new breaker is incorrect")
}
})
t.Run("set throttled", func(t *testing.T) {
t.Parallel()
breaker := NewBreaker(BreakerOptions{BackOff: minimumBackoff})
breaker.changeStateTo(internalThrottled)
throttledSince, isThrottled := breaker.throttledStatus()
if throttledSince.IsZero() || !isThrottled {
t.Fatalf("the circuit breaker should be throttled")
}
time.Sleep(1100 * time.Millisecond)
throttledSince, isThrottled = breaker.throttledStatus()
if !throttledSince.IsZero() || isThrottled {
t.Fatalf("the breaker should not be throttled")
}
if breaker.State() != Closed {
t.Fatalf("the breaker should be closed")
}
})
t.Run("calls to estimation", func(t *testing.T) {
t.Parallel()
var count uint32
breaker := NewBreaker(BreakerOptions{
BackOff: minimumBackoff,
EstimationFunc: func(int) uint32 {
atomic.AddUint32(&count, 1)
return 0
},
})
breaker.setThrottled(true)
time.Sleep(1100 * time.Millisecond)
if atomic.LoadUint32(&count) != 100 {
t.Fatalf("expected the estimation func to run 100 times. It ran %d times", count)
}
})
t.Run("cancelling estimation", func(t *testing.T) {
t.Parallel()
var count uint32
breaker := NewBreaker(BreakerOptions{
BackOff: minimumBackoff,
EstimationFunc: func(int) uint32 {
atomic.AddUint32(&count, 1)
return 0
},
})
breaker.setThrottled(true)
time.Sleep(500 * time.Millisecond)
breaker.setThrottled(false)
time.Sleep(600 * time.Millisecond)
t.Log("count", atomic.LoadUint32(&count))
if count > 50 {
t.Fatalf("expected the estimation func to cancel half way through. It ran %d times", count)
}
})
})
t.Run("closed", func(t *testing.T) {
t.Parallel()
t.Run("new breaker", func(t *testing.T) {
t.Parallel()
breaker := NewBreaker(BreakerOptions{})
closedSince, isClosed := breaker.closedStatus()
if closedSince.IsZero() || !isClosed {
t.Fatalf("the closed status of a new breaker is incorrect")
}
})
t.Run("set manually", func(t *testing.T) {
t.Parallel()
breaker := NewBreaker(BreakerOptions{})
breaker.setClosed(false)
closedSince, isClosed := breaker.closedStatus()
if !closedSince.IsZero() || isClosed {
t.Fatalf("the circuit breaker should not be closed")
}
breaker.setClosed(true)
closedSince, isClosed = breaker.closedStatus()
if closedSince.IsZero() || !isClosed {
t.Fatalf("the circuit breaker should be closed")
}
})
})
t.Run("changeStateTo", func(t *testing.T) {
t.Parallel()
t.Run("closed to open", func(t *testing.T) {
t.Parallel()
breaker := NewBreaker(BreakerOptions{LockOut: time.Second})
breaker.changeStateTo(internalOpen)
closedSince, isClosed := breaker.closedStatus()
throttledSince, isThrottled := breaker.throttledStatus()
_, lockedSince, _, isLocked := breaker.openAndLockedStatus()
if !closedSince.IsZero() || isClosed {
t.Fatalf("the circuit breaker should not be closed")
}
if !throttledSince.IsZero() || isThrottled {
t.Fatalf("the circuit breaker should not be throttled")
}
if lockedSince.IsZero() || !isLocked {
t.Fatalf("the circuit breaker should be locked")
}
})
t.Run("open to throttled implicitly", func(t *testing.T) {
t.Parallel()
breaker := NewBreaker(BreakerOptions{LockOut: time.Second})
breaker.changeStateTo(internalOpen)
// 1 second plus baudrate + cushion
time.Sleep(1500 * time.Millisecond)
closedSince, isClosed := breaker.closedStatus()
throttledSince, isThrottled := breaker.throttledStatus()
_, lockedSince, _, isLocked := breaker.openAndLockedStatus()
if !closedSince.IsZero() || isClosed {
t.Fatalf("the circuit breaker should not be closed")
}
if throttledSince.IsZero() || !isThrottled {
t.Fatalf("the circuit breaker should be throttled")
}
if !lockedSince.IsZero() || isLocked {
t.Fatalf("the circuit breaker should not be locked")
}
})
t.Run("open to any other state keeps lock", func(t *testing.T) {
t.Parallel()
breaker := NewBreaker(BreakerOptions{LockOut: time.Second})
breaker.changeStateTo(internalOpen)
breaker.changeStateTo(internalThrottled)
closedSince, isClosed := breaker.closedStatus()
throttledSince, isThrottled := breaker.throttledStatus()
openSince, lockedSince, isOpen, isLocked := breaker.openAndLockedStatus()
if !closedSince.IsZero() || isClosed {
t.Fatalf("the circuit breaker should not be closed")
}
if !openSince.IsZero() || isOpen {
t.Fatalf("the circuit breaker should not be open")
}
if throttledSince.IsZero() || !isThrottled {
t.Fatalf("the circuit breaker should be throttled")
}
if lockedSince.IsZero() || !isLocked {
t.Fatalf("the circuit breaker should be locked")
}
})
t.Run("throttled to open", func(t *testing.T) {
t.Parallel()
var count uint32
breaker := NewBreaker(BreakerOptions{
LockOut: time.Second,
BackOff: minimumBackoff,
EstimationFunc: func(int) uint32 {
atomic.AddUint32(&count, 1)
return 0
},
})
breaker.changeStateTo(internalOpen)
breaker.changeStateTo(internalThrottled)
time.Sleep(500 * time.Millisecond)
breaker.changeStateTo(internalOpen)
closedSince, isClosed := breaker.closedStatus()
throttledSince, isThrottled := breaker.throttledStatus()
_, lockedSince, _, isLocked := breaker.openAndLockedStatus()
if !closedSince.IsZero() || isClosed {
t.Fatalf("the circuit breaker should not be closed")
}
if !throttledSince.IsZero() || isThrottled {
t.Fatalf("the circuit breaker should not be throttled")
}
if lockedSince.IsZero() || !isLocked {
t.Fatalf("the circuit breaker should be locked")
}
t.Log("count", atomic.LoadUint32(&count))
if atomic.LoadUint32(&count) > 50 {
t.Fatalf("the throttle should have canceled half way through")
}
})
t.Run("throttled to closed implicitly", func(t *testing.T) {
t.Parallel()
breaker := NewBreaker(BreakerOptions{
LockOut: time.Second,
BackOff: time.Second,
})
breaker.changeStateTo(internalOpen)
breaker.changeStateTo(internalThrottled)
time.Sleep(1500 * time.Millisecond)
closedSince, isClosed := breaker.closedStatus()
throttledSince, isThrottled := breaker.throttledStatus()
_, lockedSince, _, isLocked := breaker.openAndLockedStatus()
if closedSince.IsZero() || !isClosed {
t.Fatalf("the circuit breaker should be closed")
}
if !throttledSince.IsZero() || isThrottled {
t.Fatalf("the circuit breaker should not be throttled")
}
if !lockedSince.IsZero() || isLocked {
t.Fatalf("the circuit breaker should not be locked")
}
})
t.Run("change listener", func(t *testing.T) {
t.Parallel()
quit := make(chan struct{}, 1)
states := make([]string, 0)
breaker := NewBreaker(BreakerOptions{LockOut: time.Second, BackOff: minimumBackoff})
var wg sync.WaitGroup
wg.Add(1)
go func(stateChange <-chan BreakerState, quit chan struct{}) {
for {
select {
case <-quit:
wg.Done()
return
case state := <-stateChange:
states = append(states, state.String())
}
}
}(breaker.StateChange(), quit)
time.Sleep(time.Millisecond)
breaker.changeStateTo(internalOpen)
time.Sleep(1500 * time.Millisecond)
breaker.changeStateTo(internalOpen)
time.Sleep(2500 * time.Millisecond)
quit <- struct{}{}
wg.Wait()
if !reflect.DeepEqual(states, []string{"closed", "open", "throttled", "open", "throttled", "closed"}) {
t.Fatalf("state changes are not registering properly")
}
})
})
t.Run("calc", func(t *testing.T) {
t.Parallel()
t.Run("default to open", func(t *testing.T) {
t.Parallel()
breaker := NewBreaker(BreakerOptions{LockOut: time.Second, BackOff: minimumBackoff})
closedSince, isClosed := breaker.closedStatus()
throttledSince, isThrottled := breaker.throttledStatus()
_, lockedSince, _, isLocked := breaker.openAndLockedStatus()
if closedSince.IsZero() || !isClosed {
t.Fatalf("the circuit breaker should be closed")
}
if !throttledSince.IsZero() || isThrottled {
t.Fatalf("the circuit breaker should not be throttled")
}
if !lockedSince.IsZero() || isLocked {
t.Fatalf("the circuit breaker should not be locked")
}
breaker.tracker.incr()
time.Sleep(DefaultBaudRate + 10*time.Millisecond)
closedSince, isClosed = breaker.closedStatus()
throttledSince, isThrottled = breaker.throttledStatus()
_, lockedSince, _, isLocked = breaker.openAndLockedStatus()
if !closedSince.IsZero() || isClosed {
t.Fatalf("the circuit breaker should not be closed")
}
if !throttledSince.IsZero() || isThrottled {
t.Fatalf("the circuit breaker should not be throttled")
}
if lockedSince.IsZero() || !isLocked {
t.Fatalf("the circuit breaker should be locked")
}
})
t.Run("throttled to open", func(t *testing.T) {
t.Parallel()
breaker := NewBreaker(BreakerOptions{LockOut: time.Second, BackOff: minimumBackoff})
breaker.changeStateTo(internalThrottled)
closedSince, isClosed := breaker.closedStatus()
throttledSince, isThrottled := breaker.throttledStatus()
_, lockedSince, _, isLocked := breaker.openAndLockedStatus()
if !closedSince.IsZero() || isClosed {
t.Fatalf("the circuit breaker should not be closed")
}
if throttledSince.IsZero() || !isThrottled {
t.Fatalf("the circuit breaker should be throttled")
}
if !lockedSince.IsZero() || isLocked {
t.Fatalf("the circuit breaker should not be locked")
}
breaker.tracker.incr()
time.Sleep(DefaultBaudRate + 10*time.Millisecond)
closedSince, isClosed = breaker.closedStatus()
throttledSince, isThrottled = breaker.throttledStatus()
_, lockedSince, _, isLocked = breaker.openAndLockedStatus()
if !closedSince.IsZero() || isClosed {
t.Fatalf("the circuit breaker should not be closed")
}
if !throttledSince.IsZero() || isThrottled {
t.Fatalf("the circuit breaker should not be throttled")
}
if lockedSince.IsZero() || !isLocked {
t.Fatalf("the circuit breaker should be locked")
}
})
t.Run("open to throttled", func(t *testing.T) {
t.Parallel()
breaker := NewBreaker(BreakerOptions{LockOut: time.Second, BackOff: minimumBackoff})
breaker.changeStateTo(internalOpen)
closedSince, isClosed := breaker.closedStatus()
throttledSince, isThrottled := breaker.throttledStatus()
_, lockedSince, _, isLocked := breaker.openAndLockedStatus()
if !closedSince.IsZero() || isClosed {
t.Fatalf("the circuit breaker should not be closed")
}
if !throttledSince.IsZero() || isThrottled {
t.Fatalf("the circuit breaker should not be throttled")
}
if lockedSince.IsZero() || !isLocked {
t.Fatalf("the circuit breaker should be locked")
}
time.Sleep(DefaultBaudRate + 10*time.Millisecond)
time.Sleep(minimumBackoff)
closedSince, isClosed = breaker.closedStatus()
throttledSince, isThrottled = breaker.throttledStatus()
_, lockedSince, _, isLocked = breaker.openAndLockedStatus()
if !closedSince.IsZero() || isClosed {
t.Fatalf("the circuit breaker should not be closed")
}
if throttledSince.IsZero() || !isThrottled {
t.Fatalf("the circuit breaker should be throttled")
}
if !lockedSince.IsZero() || isLocked {
t.Fatalf("the circuit breaker should not be locked")
}
})
})
t.Run("apply throttle", func(t *testing.T) {
t.Parallel()
t.Run("100% throttle chance", func(t *testing.T) {
t.Parallel()
breaker := NewBreaker(BreakerOptions{})
breaker.throttleChance = 100
if err := breaker.applyThrottle(); err == nil {
t.Fatal("applying the throttle with 100% throttle chance should always return an error")
}
})
t.Run("0% throttle chance", func(t *testing.T) {
t.Parallel()
breaker := NewBreaker(BreakerOptions{})
breaker.throttleChance = 0
if err := breaker.applyThrottle(); err != nil {
t.Fatal("applying the throttle with 0% throttle chance should never return an error")
}
})
})
t.Run("preprocessors", func(t *testing.T) {
t.Parallel()
t.Run("block run", func(t *testing.T) {
t.Parallel()
theError := errors.New("you shall not pass")
breaker := NewBreaker(BreakerOptions{
PreProcessors: []PreProcessor{
func(ctx context.Context, runner Runner) (context.Context, Runner, error) {
return ctx, nil, theError
},
},
})
_, err := breaker.Run(context.Background(), func(ctx context.Context) (interface{}, error) {
return true, nil
})
if !errors.Is(err, theError) {
t.Fatal("the preprocessor should have blocked execution and returned a specific error")
}
})
t.Run("replace run", func(t *testing.T) {
t.Parallel()
breaker := NewBreaker(BreakerOptions{
PreProcessors: []PreProcessor{
func(ctx context.Context, runner Runner) (context.Context, Runner, error) {
return ctx, func(ctx context.Context) (interface{}, error) {
return true, nil
}, nil
},
},
})
_result, err := breaker.Run(context.Background(), func(ctx context.Context) (interface{}, error) {
return nil, errors.New("i should be overridden")
})
if err != nil {
t.Fatal("the error should have been overridden by the preprocessor")
}
result, _ := _result.(bool)
if !result {
t.Fatal("the result should have been true")
}
})
})
t.Run("postprocessors", func(t *testing.T) {
t.Parallel()
t.Run("override output", func(t *testing.T) {
t.Parallel()
breaker := NewBreaker(BreakerOptions{
PostProcessors: []PostProcessor{
func(ctx context.Context, i interface{}, err error) (interface{}, error) {
return true, nil
},
},
})
_result, err := breaker.Run(context.Background(), func(ctx context.Context) (interface{}, error) {
return nil, errors.New("i should be overridden")
})
if err != nil {
t.Fatal("the error should have been overridden by the postprocessor")
}
result, _ := _result.(bool)
if !result {
t.Fatal("the result should have been true")
}
})
t.Run("override output with error", func(t *testing.T) {
t.Parallel()
theError := errors.New("you shall not pass")
breaker := NewBreaker(BreakerOptions{
PostProcessors: []PostProcessor{
func(ctx context.Context, i interface{}, err error) (interface{}, error) {
return nil, theError
},
},
})
_, err := breaker.Run(context.Background(), func(ctx context.Context) (interface{}, error) {
return true, nil
})
if !errors.Is(err, theError) {
t.Fatal("postprocessor should have returned an error")
}
})
})
t.Run("check fitness", func(t *testing.T) {
t.Parallel()
t.Run("with a canceled context", func(t *testing.T) {
t.Parallel()
ctx, cancel := context.WithCancel(context.Background())
cancel()
breaker := NewBreaker(BreakerOptions{})
err := breaker.checkFitness(ctx)
if !errors.Is(err, context.Canceled) {
t.Fatal("expected a context.Canceled error")
}
})
t.Run("open breaker", func(t *testing.T) {
t.Parallel()
breaker := NewBreaker(BreakerOptions{LockOut: time.Second})
breaker.changeStateTo(internalOpen)
err := breaker.checkFitness(context.Background())
if !errors.Is(err, StateOpenError) {
t.Fatal("expected StateOpenError")
}
})
t.Run("throttled breaker", func(t *testing.T) {
t.Parallel()
breaker := NewBreaker(BreakerOptions{
BackOff: minimumBackoff,
EstimationFunc: func(int) uint32 {
return 100
},
})
breaker.changeStateTo(internalThrottled)
err := breaker.checkFitness(context.Background())
if !errors.Is(err, StateThrottledError) {
t.Fatal("expected StateThrottledError")
}
})
t.Run("closed breaker", func(t *testing.T) {
t.Parallel()
breaker := NewBreaker(BreakerOptions{})
if err := breaker.checkFitness(context.Background()); err != nil {
t.Fatal("the error should have been nil")
}
})
t.Run("unknown state (PEBKAC edge case)", func(t *testing.T) {
t.Parallel()
breaker := NewBreaker(BreakerOptions{})
atomic.SwapUint32(&breaker.state, 100)
err := breaker.checkFitness(context.Background())
if !errors.Is(err, StateUnknownError) {
t.Fatal("expected StateUnknownError")
}
})
})
t.Run("snapshot", func(t *testing.T) {
t.Parallel()
t.Run("new breaker", func(t *testing.T) {
t.Parallel()
breaker := NewBreaker(BreakerOptions{Name: "foo"})
snap := breaker.Snapshot()
if snap.Name != "foo" {
t.Fatal("snapshot is not capturing breaker name")
}
if snap.String() != "closed" {
t.Fatalf("the stringer for snap returned wrong value: %s", snap.String())
}
if snap.State != Closed {
t.Fatal("state should be Closed")
}
if snap.ClosedSince == nil {
t.Fatal("the ClosedSince property should not be nil")
}
if snap.Throttled != nil {
t.Fatal("the Throttled property should not be set")
}
if snap.BackOffEnds != nil {
t.Fatal("the BackOffEnds property should not be set")
}
if snap.Opened != nil {
t.Fatal("the Opened property should not be set")
}
if snap.LockoutEnds != nil {
t.Fatal("the LockoutEnds property should not be set")
}
})
t.Run("throttled breaker", func(t *testing.T) {
t.Parallel()
breaker := NewBreaker(BreakerOptions{Name: "foo"})
breaker.changeStateTo(internalThrottled)
snap := breaker.Snapshot()
if snap.Name != "foo" {
t.Fatal("snapshot is not capturing breaker name")
}
if snap.String() != "throttled" {
t.Fatalf("the stringer for snap returned wrong value: %s", snap.String())
}
if snap.State != Throttled {
t.Fatal("state should be Throttled")
}
if snap.ClosedSince != nil {
t.Fatal("the ClosedSince property should not be set")
}
if snap.Throttled == nil {
t.Fatal("the Throttled property should not be nil")
}
if snap.BackOffEnds == nil {
t.Fatal("the BackOffEnds property should not be nil")
}
if snap.Opened != nil {
t.Fatal("the Opened property should not be set")
}
if snap.LockoutEnds != nil {
t.Fatal("the LockoutEnds property should not be set")
}
})
t.Run("open breaker", func(t *testing.T) {
t.Parallel()
breaker := NewBreaker(BreakerOptions{Name: "foo", LockOut: time.Second})
breaker.changeStateTo(internalOpen)
snap := breaker.Snapshot()
if snap.Name != "foo" {
t.Fatal("snapshot is not capturing breaker name")
}
if snap.String() != "open" {
t.Fatalf("the stringer for snap returned wrong value: %s", snap.String())
}
if snap.State != Open {
t.Fatal("state should be Open")
}
if snap.ClosedSince != nil {
t.Fatal("the ClosedSince property should not be set")
}
if snap.Throttled != nil {
t.Fatal("the Throttled property should not be set")
}
if snap.BackOffEnds != nil {
t.Fatal("the BackOffEnds property should not be set")
}
if snap.Opened == nil {
t.Fatal("the Opened property should not be nil")
}
if snap.LockoutEnds == nil {
t.Fatal("the LockoutEnds property should not be nil")
}
})
})
t.Run("size", func(t *testing.T) {
t.Parallel()
t.Run("new breaker", func(t *testing.T) {
t.Parallel()
breaker := NewBreaker(BreakerOptions{})
if sz := breaker.Size(); sz != 0 {
t.Fatal("a new breaker should have size 0")
}
})
t.Run("three errors", func(t *testing.T) {
t.Parallel()
breaker := NewBreaker(BreakerOptions{})
breaker.tracker.incr()
breaker.tracker.incr()
breaker.tracker.incr()
time.Sleep(time.Millisecond)
if sz := breaker.Size(); sz != 3 {
t.Fatal("breaker should be size 3")
}
})
})
t.Run("edge cases for Run", func(t *testing.T) {
t.Parallel()
t.Run("breaker times out", func(t *testing.T) {
t.Parallel()
breaker := NewBreaker(BreakerOptions{
Timeout: 10 * time.Millisecond,
})
_, err := breaker.Run(context.Background(), func(ctx context.Context) (interface{}, error) {
time.Sleep(20 * time.Millisecond)
return true, nil
})
if !errors.Is(err, TimeoutError) {
t.Fatal("the circuit breaker should have timed out")
}
})
t.Run("canceled context propagation", func(t *testing.T) {
t.Parallel()
t.Run("default behavior", func(t *testing.T) {
t.Parallel()
breaker := NewBreaker(BreakerOptions{
Timeout: 10 * time.Millisecond,
})
var tick uint32
_, _ = breaker.Run(context.Background(), func(ctx context.Context) (interface{}, error) {
time.Sleep(20 * time.Millisecond)
if ctx.Err() != nil {
atomic.AddUint32(&tick, 1)
return true, nil
}
atomic.AddUint32(&tick, 2)
return true, nil
})
time.Sleep(30 * time.Millisecond)
t.Log("tick", atomic.LoadUint32(&tick))
if tick != 1 {
t.Fatal("context error didnt propagate")
}
})
t.Run("no propagation ", func(t *testing.T) {
t.Parallel()
breaker := NewBreaker(BreakerOptions{
Timeout: 10 * time.Millisecond,
IgnoreContext: true,
})
var tick uint32
_, _ = breaker.Run(context.Background(), func(ctx context.Context) (interface{}, error) {
time.Sleep(20 * time.Millisecond)
if ctx.Err() != nil {
atomic.AddUint32(&tick, 1)
return true, nil
}
atomic.AddUint32(&tick, 2)
return true, nil
})
time.Sleep(30 * time.Millisecond)
t.Log("tick", atomic.LoadUint32(&tick))
if tick != 2 {
t.Fatal("context error didnt propagate")
}
})
})
t.Run("improperly initialized", func(t *testing.T) {
t.Parallel()
breaker := Breaker{}
_, err := breaker.Run(context.Background(), func(ctx context.Context) (interface{}, error) {
return true, nil
})
if !errors.Is(err, NotInitializedError) {
t.Fatal("expected the improper initialization error")
}
})
t.Run("unfit because open", func(t *testing.T) {
t.Parallel()
breaker := NewBreaker(BreakerOptions{LockOut: time.Second})
breaker.changeStateTo(internalOpen)
_, err := breaker.Run(context.Background(), func(ctx context.Context) (interface{}, error) {
return true, nil
})
if !errors.Is(err, StateOpenError) {
t.Fatal("fitness chack failed")
}
})
t.Run("unfit because throttled", func(t *testing.T) {
t.Parallel()
breaker := NewBreaker(BreakerOptions{
BackOff: minimumBackoff,
EstimationFunc: func(int) uint32 {
return 100
},
})
breaker.changeStateTo(internalThrottled)
_, err := breaker.Run(context.Background(), func(ctx context.Context) (interface{}, error) {
return true, nil
})
if !errors.Is(err, StateThrottledError) {
t.Fatal("fitness check failed")
}
})
t.Run("unfit because context canceled", func(t *testing.T) {
t.Parallel()
breaker := NewBreaker(BreakerOptions{})
ctx, cancel := context.WithCancel(context.Background())
cancel()
_, err := breaker.Run(ctx, func(ctx context.Context) (interface{}, error) {
return true, nil
})
if !errors.Is(err, context.Canceled) {
t.Fatal("fitness check failed")
}
})
})
}