-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherror_test.go
222 lines (178 loc) · 4.07 KB
/
error_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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
package errorx
import (
"errors"
"fmt"
"testing"
"github.com/stretchr/testify/assert"
)
func TestNew(t *testing.T) {
err := New("oops")
t.Log(err)
}
func TestTrace(t *testing.T) {
assert := assert.New(t)
t.Run("nil", func(t *testing.T) {
var err error = nil
assert.Nil(Trace(err))
assert.Nil(Tracef(err, "something happened"))
})
t.Run("standard error", func(t *testing.T) {
errNotFound := errors.New("not found")
err := Tracef(errNotFound, "something happened")
assert.True(errors.Is(err, errNotFound))
t.Logf("\n%+v", err)
got := errors.Unwrap(err)
t.Log(got)
errNone := errors.New("none")
assert.False(errors.Is(err, errNone))
})
t.Run("this error", func(t *testing.T) {
errNotFound := New("not found")
err := Tracef(errNotFound, "something happened")
t.Logf("\n%+v", err)
})
}
func TestCause(t *testing.T) {
assert := assert.New(t)
tds := []struct {
name string
err error
want error
}{
{
name: "nil",
err: nil,
want: nil,
},
{
name: "standard error",
err: errors.New("err1"),
want: errors.New("err1"),
},
{
name: "trace err",
err: Trace(errors.New("err1")),
want: errors.New("err1"),
},
{
name: "more trace err",
err: Trace(Trace(errors.New("err1"))),
want: errors.New("err1"),
},
{
name: "tracef err",
err: Tracef(errors.New("err1"), "description"),
want: errors.New("err1"),
},
}
for _, td := range tds {
t.Run(td.name, func(t *testing.T) {
got := Cause(td.err)
assert.Equal(td.want, got)
})
}
}
type PointerError struct {
code int32
msg string
}
func (e *PointerError) Error() string {
return fmt.Sprintf("%d %s", e.code, e.msg)
}
type ValueError struct {
code int32
msg string
}
func (e ValueError) Error() string {
return fmt.Sprintf("%d %s", e.code, e.msg)
}
func TestPointerAndValueError(t *testing.T) {
assert := assert.New(t)
t.Run("pointer", func(t *testing.T) {
errNotFound := &PointerError{
code: -1,
msg: "not found",
}
err := Trace(errNotFound)
err = Tracef(err, "more")
assert.True(errors.Is(err, errNotFound))
var myErr *PointerError
assert.True(errors.As(err, &myErr))
errNone := &PointerError{
code: -2,
msg: "none",
}
assert.False(errors.Is(err, errNone))
})
t.Run("value", func(t *testing.T) {
errNotFound := ValueError{
code: -1,
msg: "not found",
}
err := Trace(errNotFound)
err = Tracef(err, "more")
assert.True(errors.Is(err, errNotFound))
var myErr ValueError
assert.True(errors.As(err, &myErr))
errNone := ValueError{
code: -2,
}
assert.False(errors.Is(err, errNone))
})
}
// https://go.dev/ref/spec#Comparison_operators
// Slice, map, and function values are not comparable.
type PointerErrorWithMap struct {
code int32
msg string
extra map[string]string
}
func (e *PointerErrorWithMap) Error() string {
return fmt.Sprintf("%d %s %v", e.code, e.msg, e.extra)
}
type ValueErrorWithMap struct {
code int32
msg string
extra map[string]string
}
func (e ValueErrorWithMap) Error() string {
return fmt.Sprintf("%d %s %v", e.code, e.msg, e.extra)
}
func TestNotComparableError(t *testing.T) {
assert := assert.New(t)
t.Run("pointer", func(t *testing.T) {
errNotFound := &PointerErrorWithMap{
code: -1,
msg: "not found",
extra: map[string]string{"name": "xxx"},
}
err := Trace(errNotFound)
err = Tracef(err, "more")
assert.True(errors.Is(err, errNotFound))
var myErr *PointerErrorWithMap
assert.True(errors.As(err, &myErr))
errNone := &PointerErrorWithMap{
code: -2,
msg: "none",
}
assert.False(errors.Is(err, errNone))
})
t.Run("value", func(t *testing.T) {
errNotFound := ValueErrorWithMap{
code: -1,
msg: "not found",
extra: map[string]string{"name": "xxx"},
}
err := Trace(errNotFound)
err = Tracef(err, "more")
// map is not comparable, but errors.Is would use the comparability
assert.False(errors.Is(err, errNotFound))
var myErr ValueErrorWithMap
assert.True(errors.As(err, &myErr))
errNone := ValueErrorWithMap{
code: -2,
msg: "none",
}
assert.False(errors.Is(err, errNone))
})
}