|
@@ -2,7 +2,9 @@ package breaker
|
|
|
|
|
|
import (
|
|
|
"errors"
|
|
|
+ "fmt"
|
|
|
"strconv"
|
|
|
+ "strings"
|
|
|
"testing"
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
@@ -33,6 +35,84 @@ func TestLogReason(t *testing.T) {
|
|
|
assert.Equal(t, numHistoryReasons, errs.count)
|
|
|
}
|
|
|
|
|
|
+func TestErrorWindow(t *testing.T) {
|
|
|
+ tests := []struct {
|
|
|
+ name string
|
|
|
+ reasons []string
|
|
|
+ }{
|
|
|
+ {
|
|
|
+ name: "no error",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ name: "one error",
|
|
|
+ reasons: []string{"foo"},
|
|
|
+ },
|
|
|
+ {
|
|
|
+ name: "two errors",
|
|
|
+ reasons: []string{"foo", "bar"},
|
|
|
+ },
|
|
|
+ {
|
|
|
+ name: "five errors",
|
|
|
+ reasons: []string{"first", "second", "third", "fourth", "fifth"},
|
|
|
+ },
|
|
|
+ {
|
|
|
+ name: "six errors",
|
|
|
+ reasons: []string{"first", "second", "third", "fourth", "fifth", "sixth"},
|
|
|
+ },
|
|
|
+ }
|
|
|
+
|
|
|
+ for _, test := range tests {
|
|
|
+ t.Run(test.name, func(t *testing.T) {
|
|
|
+ var ew errorWindow
|
|
|
+ for _, reason := range test.reasons {
|
|
|
+ ew.add(reason)
|
|
|
+ }
|
|
|
+ var reasons []string
|
|
|
+ if len(test.reasons) > numHistoryReasons {
|
|
|
+ reasons = test.reasons[len(test.reasons)-numHistoryReasons:]
|
|
|
+ } else {
|
|
|
+ reasons = test.reasons
|
|
|
+ }
|
|
|
+ for _, reason := range reasons {
|
|
|
+ assert.True(t, strings.Contains(ew.String(), reason), fmt.Sprintf("actual: %s", ew.String()))
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+func TestPromiseWithReason(t *testing.T) {
|
|
|
+ tests := []struct {
|
|
|
+ name string
|
|
|
+ reason string
|
|
|
+ expect string
|
|
|
+ }{
|
|
|
+ {
|
|
|
+ name: "success",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ name: "success",
|
|
|
+ reason: "fail",
|
|
|
+ expect: "fail",
|
|
|
+ },
|
|
|
+ }
|
|
|
+
|
|
|
+ for _, test := range tests {
|
|
|
+ t.Run(test.name, func(t *testing.T) {
|
|
|
+ promise := promiseWithReason{
|
|
|
+ promise: new(mockedPromise),
|
|
|
+ errWin: new(errorWindow),
|
|
|
+ }
|
|
|
+ if len(test.reason) == 0 {
|
|
|
+ promise.Accept()
|
|
|
+ } else {
|
|
|
+ promise.Reject(test.reason)
|
|
|
+ }
|
|
|
+
|
|
|
+ assert.True(t, strings.Contains(promise.errWin.String(), test.expect))
|
|
|
+ })
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
func BenchmarkGoogleBreaker(b *testing.B) {
|
|
|
br := NewBreaker()
|
|
|
for i := 0; i < b.N; i++ {
|
|
@@ -41,3 +121,12 @@ func BenchmarkGoogleBreaker(b *testing.B) {
|
|
|
})
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+type mockedPromise struct {
|
|
|
+}
|
|
|
+
|
|
|
+func (m *mockedPromise) Accept() {
|
|
|
+}
|
|
|
+
|
|
|
+func (m *mockedPromise) Reject() {
|
|
|
+}
|