You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
132 lines
2.4 KiB
Go
132 lines
2.4 KiB
Go
package breaker
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"strconv"
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/zeromicro/go-zero/core/stat"
|
|
)
|
|
|
|
func init() {
|
|
stat.SetReporter(nil)
|
|
}
|
|
|
|
func TestCircuitBreaker_Allow(t *testing.T) {
|
|
b := NewBreaker()
|
|
assert.True(t, len(b.Name()) > 0)
|
|
_, err := b.Allow()
|
|
assert.Nil(t, err)
|
|
}
|
|
|
|
func TestLogReason(t *testing.T) {
|
|
b := NewBreaker()
|
|
assert.True(t, len(b.Name()) > 0)
|
|
|
|
for i := 0; i < 1000; i++ {
|
|
_ = b.Do(func() error {
|
|
return errors.New(strconv.Itoa(i))
|
|
})
|
|
}
|
|
errs := b.(*circuitBreaker).throttle.(loggedThrottle).errWin
|
|
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++ {
|
|
_ = br.Do(func() error {
|
|
return nil
|
|
})
|
|
}
|
|
}
|
|
|
|
type mockedPromise struct{}
|
|
|
|
func (m *mockedPromise) Accept() {
|
|
}
|
|
|
|
func (m *mockedPromise) Reject() {
|
|
}
|