-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy patherrors_test.go
189 lines (159 loc) · 4.37 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
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
package errors_test
import (
"fmt"
"strings"
"testing"
"github.com/memsql/errors"
"github.com/stretchr/testify/assert"
)
// TestError tests very basic features of errors.Errorf().
func TestError(t *testing.T) {
var inner error = errors.Errorf("inner")
assert.Equal(t, "inner", inner.Error())
var withStack errors.StackTracer
if !errors.As(inner, &withStack) {
t.Errorf("errors.Errorf produced %T, without stack trace", inner)
}
outer := errors.Errorf("outer: %w", inner)
assert.Equal(t, "outer: inner", outer.Error())
isWrapped := false
for cursor := error(outer); cursor != nil; cursor = errors.Unwrap(cursor) {
if errors.Is(cursor, inner) {
isWrapped = true
break
}
}
if !isWrapped {
t.Errorf("outer error (%s) does not wrap inner error (%s)", outer, inner)
}
}
func TestJoin(t *testing.T) {
// all args should be passed in the final combined alert
arg := []int{1, 2, 3}
var exception error
for i := range arg {
if i == 0 {
exception = errors.Errorf("TestJoin (%d)", arg[i])
} else {
exception = errors.Join(errors.Errorf("TestJoin (%d)", arg[i]), exception)
}
}
errors.RegisterCapture("TestJoin", func(err error, have ...any) errors.CaptureID {
// we should have all the args
if len(arg) != len(have) {
t.Errorf("want %d args, have %d", len(arg), len(have))
}
argLoop:
for i := range arg {
for j := range have {
v, ok := have[j].(int)
if !ok {
continue
}
if v == arg[i] {
continue argLoop
}
}
t.Errorf("want arg (%d), not passed to capture handler", arg[i])
}
return "TestJoin"
})
defer errors.UnregisterCapture("TestJoin")
_ = errors.Alert(exception) //nolint:errcheck // this is so our capture handler (above) gets called
}
func TestExpandArg(t *testing.T) {
var err error
needles := 0
errors.RegisterCapture("TestExpandArg", func(exception error, arg ...any) errors.CaptureID {
for _, a := range arg {
if str, ok := a.(string); ok {
if str == "needle" {
needles++
}
}
}
return "TestExpandArg"
})
defer errors.UnregisterCapture("TestExpandArg")
err = func() (err error) {
defer errors.Expand(&err, "expanded (%s)", "needle") // we want this arg to make it to the capturer
panic("TestExpandArg")
}()
assert.Error(t, err)
assert.Equal(t, 1, needles, "expected argument to be passed to capture handler")
}
func TestExpandPanic(t *testing.T) {
t.Parallel()
var err error
err = func() (err error) {
defer errors.Expand(&err, "expanded text")
dontKeepCalmAndCarryOn("panic text")
return nil
}()
assert.Equal(t, "expanded text: panic text", err.Error())
// confirmation that the stack trace includes the source of the panic
verbose := fmt.Sprintf("%+v", err)
if !strings.Contains(verbose, "dontKeepCalmAndCarryOn") {
t.Errorf("expected stack trace to include panic, got:\n %s\n", verbose)
}
err = func() (err error) {
defer errors.Expand(&err, "expanded text")
panic(errors.New("panic error"))
}()
assert.Equal(t, "expanded text: panic error", err.Error())
}
func dontKeepCalmAndCarryOn(s string) {
panic(s)
}
func TestExpungeArg(t *testing.T) {
var err error
needles := 0
errors.RegisterCapture("TestExpungeArg", func(exception error, arg ...any) errors.CaptureID {
for _, a := range arg {
if str, ok := a.(string); ok {
if str == "needle" {
needles++
}
}
}
return "TestExpungeArg"
})
defer errors.UnregisterCapture("TestExpungeArg")
err = func() (err error) {
defer errors.Expunge(&err, "expunged (%s)", "needle") // we want this arg to make it to the capturer
panic("TestExpungeArg")
}()
assert.Error(t, err)
assert.Equal(t, 1, needles, "expected argument to be passed to capture handler")
}
func TestFromPanic(t *testing.T) {
t.Parallel()
needle := "needle"
t.Run("string", func(t *testing.T) {
t.Parallel()
defer func() {
err := errors.FromPanic(recover())
assert.Contains(t, err.Error(), needle)
}()
panic(needle)
})
t.Run("fmt.Stringer", func(t *testing.T) {
t.Parallel()
var s fmt.Stringer = myStringer{}
defer func() {
err := errors.FromPanic(recover())
assert.Contains(t, err.Error(), s.String())
}()
panic(s)
})
t.Run("error", func(t *testing.T) {
t.Parallel()
defer func() {
err := errors.FromPanic(recover())
assert.Contains(t, err.Error(), needle)
}()
panic(errors.New(needle))
})
}
type myStringer struct{}
func (s myStringer) String() string { return "hello world" }