-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherrors_test.go
50 lines (44 loc) · 1.04 KB
/
errors_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
package huwlte
import (
"context"
"testing"
"github.com/stretchr/testify/assert"
)
func TestErrorCode_String(t *testing.T) {
for _, test := range []struct {
Code ErrorCode
Str string
}{
{ErrorCodeInternal, "internal"},
{ErrorCodeNotSupported, "not supported"},
{ErrorCodeNoRights, "no rights"},
{ErrorCodeBusy, "busy"},
{ErrorCodeCSRF, "csrf"},
{ErrorCode(123), "unknown(123)"},
} {
assert.Equal(t, test.Str, test.Code.String())
}
}
func TestError_Error(t *testing.T) {
for _, test := range []struct {
Err *Error
Str string
}{
{
&Error{Code: ErrorCodeInternal, Message: "shit happens"},
"100001: internal (shit happens)",
},
{
&Error{Code: ErrorCodeNotSupported},
"100002: not supported",
},
} {
assert.Equal(t, test.Str, test.Err.Error())
}
}
func TestIsError(t *testing.T) {
err := newError(int(ErrorCodeInternal), "shit happens")
assert.True(t, IsError(err, ErrorCodeInternal))
assert.False(t, IsError(err, ErrorCodeNotSupported))
assert.False(t, IsError(context.Canceled, ErrorCodeInternal))
}