-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherrors_test.go
51 lines (44 loc) · 948 Bytes
/
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
51
package squeue
import (
"errors"
"testing"
"github.com/stretchr/testify/suite"
)
type ErrorTestSuite struct {
suite.Suite
}
func (suite *ErrorTestSuite) TestWrapError() {
err := errors.New("test error")
tests := []struct {
code int
expectedMessage string
}{
{
code: ErrUnmarshal,
expectedMessage: "unmarshalling error",
},
{
code: ErrMarshal,
expectedMessage: "marshalling error",
},
{
code: ErrDriver,
expectedMessage: "driver error",
},
{
code: 100,
expectedMessage: "unknown error",
},
}
errData := []byte("test")
for _, t := range tests {
wrapped := wrapErr(err, t.code, errData)
suite.Contains(wrapped.Error(), t.expectedMessage)
suite.Equal(t.code, wrapped.Code())
suite.Equal(errData, wrapped.Data())
suite.Equal(err, wrapped.Unwrap())
}
}
func TestErrorsSuite(t *testing.T) {
suite.Run(t, new(ErrorTestSuite))
}