-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpretty_test.go
233 lines (208 loc) · 5.57 KB
/
pretty_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
223
224
225
226
227
228
229
230
231
232
233
package microerror
import (
"errors"
"os"
"path/filepath"
"regexp"
"testing"
)
// This test uses golden files.
//
// Run this command to update the snapshots:
// go test . -run TestPretty -update
func TestPretty(t *testing.T) {
testCases := []struct {
name string
errorFactory func() error
stackTrace bool
expectedGoldenFile string
}{
{
name: "case 0: simple error",
errorFactory: func() error {
err := errors.New("something went wrong")
return err
},
expectedGoldenFile: "pretty-simple-error.golden",
},
{
name: "case 1: simple empty error",
errorFactory: func() error {
err := errors.New("")
return err
},
expectedGoldenFile: "pretty-simple-empty-error.golden",
},
{
name: "case 2: simple error with 'error:' prefix in message",
errorFactory: func() error {
err := errors.New("error: something went wrong")
return err
},
expectedGoldenFile: "pretty-simple-error-with-prefix.golden",
},
{
name: "case 3: masked simple error",
errorFactory: func() error {
err := errors.New("something went wrong")
return Mask(err)
},
expectedGoldenFile: "pretty-masked-simple-error.golden",
},
{
name: "case 4: microerror, 0 depth",
errorFactory: func() error {
err := &Error{
Kind: "somethingWentWrongError",
}
return err
},
expectedGoldenFile: "pretty-microerror-0-depth.golden",
},
{
name: "case 5: microerror, 1 depth",
errorFactory: func() error {
err := &Error{
Kind: "somethingWentWrongError",
}
return Mask(err)
},
expectedGoldenFile: "pretty-microerror-1-depth.golden",
},
{
name: "case 6: microerror, 1 depth, with annotation",
errorFactory: func() error {
err := &Error{
Kind: "somethingWentWrongError",
}
return Maskf(err, "something bad happened, and we had to crash")
},
expectedGoldenFile: "pretty-microerror-1-depth-annotation.golden",
},
{
name: "case 7: microerror, 1 depth, unknown kind, with annotation",
errorFactory: func() error {
err := &Error{
Kind: kindUnknown,
}
return Maskf(err, "something bad happened, and we had to crash")
},
expectedGoldenFile: "pretty-microerror-1-depth-unknown-kind-annotation.golden",
},
{
name: "case 8: microerror, 1 depth, nil kind, with annotation",
errorFactory: func() error {
err := &Error{
Kind: kindNil,
}
return Maskf(err, "something bad happened, and we had to crash")
},
expectedGoldenFile: "pretty-microerror-1-depth-unknown-kind-annotation.golden",
},
{
name: "case 9: microerror, 1 depth, with multiline annotation",
errorFactory: func() error {
err := &Error{
Kind: "somethingWentWrongError",
}
return Maskf(err, "something bad happened, and we had to crash\nthat's the first time it happened, really")
},
expectedGoldenFile: "pretty-microerror-1-depth-multiline-annotation.golden",
},
{
name: "case 10: microerror, 10 depth",
errorFactory: func() error {
err := &Error{
Kind: "somethingWentWrongError",
}
// Let's build up this stack trace.
newErr := Mask(err)
for i := 0; i < 10; i++ {
newErr = Mask(newErr)
}
return newErr
},
expectedGoldenFile: "pretty-microerror-10-depth.golden",
},
{
name: "case 11: microerror, 1 depth, with stack trace",
errorFactory: func() error {
err := &Error{
Kind: "somethingWentWrongError",
}
return Mask(err)
},
stackTrace: true,
expectedGoldenFile: "pretty-microerror-1-depth-stack-trace.golden",
},
{
name: "case 12: microerror, 1 depth, with annotation, with stack trace",
errorFactory: func() error {
err := &Error{
Kind: "somethingWentWrongError",
}
return Maskf(err, "something bad happened, and we had to crash")
},
stackTrace: true,
expectedGoldenFile: "pretty-microerror-1-depth-annotation-stack-trace.golden",
},
{
name: "case 13: microerror, 1 depth, with multiline annotation, with stack trace",
errorFactory: func() error {
err := &Error{
Kind: "somethingWentWrongError",
}
return Maskf(err, "something bad happened, and we had to crash\nthat's the first time it happened, really")
},
stackTrace: true,
expectedGoldenFile: "pretty-microerror-1-depth-multiline-annotation-stack-trace.golden",
},
{
name: "case 14: microerror, 10 depth, with stack trace",
errorFactory: func() error {
err := &Error{
Kind: "somethingWentWrongError",
}
// Let's build up this stack trace.
newErr := Mask(err)
for i := 0; i < 10; i++ {
newErr = Mask(newErr)
}
return newErr
},
stackTrace: true,
expectedGoldenFile: "pretty-microerror-10-depth-stack-trace.golden",
},
}
for _, tc := range testCases {
t.Run(tc.name, func(t *testing.T) {
err := tc.errorFactory()
message := Pretty(err, tc.stackTrace)
// Change paths to avoid prefixes like
// "/Users/username/go/src/" so this can test can be
// executed on different machines.
{
r := regexp.MustCompile(`/.*(/.*\.go:\d+)`)
message = r.ReplaceAllString(message, "--REPLACED--$1")
}
var expected string
{
golden := filepath.Join("testdata", tc.expectedGoldenFile)
if *update {
err := os.WriteFile(golden, []byte(message), 0644) //nolint:gosec
if err != nil {
t.Fatal(err)
}
}
bytes, err := os.ReadFile(golden)
if err != nil {
t.Fatal(err)
}
expected = string(bytes)
}
if message != expected {
t.Fatalf("expected %q got %q", expected, message)
}
})
}
}