1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-10 09:56:55 +00:00
kyverno/pkg/d4f/breaker_test.go
Charles-Edouard Brétéché 018d45cb29
feat: add reports circuit breaker (#10499)
* feat: add reports circuit breaker

Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com>

* improve metrics and granularity

Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com>

---------

Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com>
2024-06-25 11:16:30 +08:00

77 lines
1.3 KiB
Go

package d4f
import (
"context"
"errors"
"testing"
"github.com/stretchr/testify/assert"
)
func Test_breaker_Do(t *testing.T) {
type args struct {
inner func(context.Context) error
}
tests := []struct {
name string
subject *breaker
args args
wantErr bool
}{{
name: "empty",
subject: NewBreaker("", nil),
wantErr: false,
}, {
name: "no error",
subject: NewBreaker("", nil),
args: args{
inner: func(context.Context) error {
return nil
},
},
wantErr: false,
}, {
name: "with error",
subject: NewBreaker("", nil),
args: args{
inner: func(context.Context) error {
return errors.New("foo")
},
},
wantErr: true,
}, {
name: "with break",
subject: NewBreaker("", func(context.Context) bool {
return true
}),
args: args{
inner: func(context.Context) error {
return errors.New("foo")
},
},
wantErr: false,
}, {
name: "with metrics",
subject: &breaker{
open: func(context.Context) bool {
return true
},
},
args: args{
inner: func(context.Context) error {
return errors.New("foo")
},
},
wantErr: false,
}}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
err := tt.subject.Do(context.TODO(), tt.args.inner)
if tt.wantErr {
assert.Error(t, err)
} else {
assert.NoError(t, err)
}
})
}
}