forked from alibaba/sentinel-golang
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtracer_test.go
51 lines (45 loc) · 918 Bytes
/
tracer_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
package api
import (
"errors"
"testing"
"time"
"github.com/alibaba/sentinel-golang/core/base"
"github.com/stretchr/testify/assert"
)
var (
testRes = base.NewResourceWrapper("a", base.ResTypeCommon, base.Inbound)
)
func TestTraceErrorToEntry(t *testing.T) {
type args struct {
entry *base.SentinelEntry
err error
}
te := errors.New("biz error")
tests := []struct {
name string
args args
want error
}{
{
name: "TestTraceErrorToEntry",
args: args{
entry: nil,
err: nil,
},
want: te,
},
}
ctx := &base.EntryContext{
Resource: testRes,
Input: nil,
}
tests[0].args.entry = base.NewSentinelEntry(ctx, testRes, nil)
tests[0].args.err = te
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
TraceError(tt.args.entry, tt.args.err)
time.Sleep(time.Millisecond * 10)
assert.Equal(t, tests[0].args.entry.Context().Err(), tt.want)
})
}
}