-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustomerror_test.go
470 lines (407 loc) · 12.2 KB
/
customerror_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
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
// Copyright 2021 The customerror Authors. All rights reserved.
// Use of this source code is governed by a MIT
// license that can be found in the LICENSE file.
package customerror
import (
"encoding/json"
"errors"
"fmt"
"net/http"
"strings"
"sync"
"testing"
"github.com/emirpasic/gods/sets/treeset"
"github.com/stretchr/testify/assert"
)
const (
failedCreateSomethingMsg = "Failed to create something"
code = "E1010"
statusCode = http.StatusNotFound
)
var (
ErrFailedToReachServer = errors.New("failed to reach servers")
ErrFailedToReachServerDeep = fmt.Errorf("%s. %w", ErrFailedToReachServer, errors.New("servers are broken"))
ErrFailedToReachServerDeepRev = fmt.Errorf("%s. %w", errors.New("servers are broken"), ErrFailedToReachServer)
)
func TestNewLowLevel(t *testing.T) {
type args struct {
message string
opts []Option
}
tests := []struct {
name string
args args
want string
}{
{
name: "should work - with message",
args: args{message: failedCreateSomethingMsg},
want: failedCreateSomethingMsg,
},
{
name: "should work - with message, and code",
args: args{
message: failedCreateSomethingMsg,
opts: []Option{WithErrorCode(code)},
},
want: "E1010: Failed to create something",
},
{
name: "should work - with message, and error",
args: args{
message: failedCreateSomethingMsg,
opts: []Option{WithError(ErrFailedToReachServer)},
},
want: "Failed to create something. Original Error: Failed to reach servers",
},
{
name: "should work - with message, and deep error",
args: args{
message: failedCreateSomethingMsg,
opts: []Option{WithError(ErrFailedToReachServerDeep)},
},
want: "Failed to create something. Original Error: Failed to reach servers. Servers are broken",
},
{
name: "should work - with message, and status code",
args: args{
message: failedCreateSomethingMsg,
opts: []Option{WithStatusCode(statusCode)},
},
want: "Failed to create something",
},
{
name: "should work - with message, code, and error",
args: args{
message: failedCreateSomethingMsg,
opts: []Option{WithErrorCode(code), WithError(ErrFailedToReachServer)},
},
want: "E1010: Failed to create something. Original Error: Failed to reach servers",
},
{
name: "should work - with message, code, error, and deep error",
args: args{
message: failedCreateSomethingMsg,
opts: []Option{WithErrorCode(code), WithError(ErrFailedToReachServerDeep)},
},
want: "E1010: Failed to create something. Original Error: Failed to reach servers. Servers are broken",
},
{
name: "should work - with message, code, error, deep error, and status code",
args: args{
message: failedCreateSomethingMsg,
opts: []Option{WithErrorCode(code), WithError(ErrFailedToReachServerDeep), WithStatusCode(statusCode)},
},
want: "E1010: Failed to create something. Original Error: Failed to reach servers. Servers are broken",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got := New(tt.args.message, tt.args.opts...)
if !strings.EqualFold(got.Error(), tt.want) {
t.Errorf("NewLowLevel() = %v, want %v", got, tt.want)
}
})
}
}
func TestBuiltin(t *testing.T) {
ErrFailedToCreateFile := NewFailedToError("create file", WithErrorCode("E1010"))
ErrInvalidPath := NewInvalidError("path", WithErrorCode("E1010"))
ErrMissingPath := NewMissingError("path", WithErrorCode("E1010"))
ErrRequiredPath := NewRequiredError("path is", WithErrorCode("E1010"))
ErrNotFound := NewHTTPError(http.StatusNotFound, WithErrorCode("E1010"))
testFunc := func(e error) error { return e }
type args struct {
err error
}
tests := []struct {
args args
expectedCode string
expectedStatusCode int
name string
want string
wantAs string
}{
{
name: "Should work - ErrFailedToCreateFile",
expectedCode: "E1010",
expectedStatusCode: http.StatusInternalServerError,
args: args{
err: ErrFailedToCreateFile,
},
want: "create file",
wantAs: "create file",
},
{
name: "Should work - ErrInvalidPath",
expectedCode: "E1010",
expectedStatusCode: http.StatusBadRequest,
args: args{
err: ErrInvalidPath,
},
want: "invalid path",
wantAs: "invalid path",
},
{
name: "Should work - ErrMissingPath",
expectedCode: "E1010",
expectedStatusCode: http.StatusBadRequest,
args: args{
err: ErrMissingPath,
},
want: "missing path",
wantAs: "missing path",
},
{
name: "Should work - ErrRequiredPath",
expectedCode: "E1010",
expectedStatusCode: http.StatusBadRequest,
args: args{
err: ErrRequiredPath,
},
want: "path is required",
wantAs: "path is required",
},
{
name: "Should work - ErrNotFound",
expectedCode: "E1010",
expectedStatusCode: http.StatusNotFound,
args: args{
err: ErrNotFound,
},
want: "not found",
wantAs: "not found",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
err := testFunc(tt.args.err)
if !errors.Is(err, tt.args.err) {
t.Errorf("Expected error to be (is) %v, got %v", tt.args.err, err)
}
errWrapped := fmt.Errorf("Wrapped %w", err)
if !errors.Is(errWrapped, tt.args.err) {
t.Errorf("Expected error to be (is - wrapped) %v, got %v", tt.args.err, errWrapped)
}
if !strings.Contains(err.Error(), tt.want) {
t.Errorf(`Expected message to be "%v", got "%v"`, tt.want, err)
}
var errAs *CustomError
if errors.As(err, &errAs) {
if !strings.Contains(errAs.Message, tt.wantAs) {
t.Errorf(`Expected message to be (As)"%v", got "%v"`, tt.wantAs, errAs.Message)
}
if errAs.Code != tt.expectedCode {
t.Errorf(`Expected code to be "%v", got "%v"`, tt.expectedCode, errAs.Code)
}
if errAs.StatusCode != tt.expectedStatusCode {
t.Errorf(`Expected status code to be "%d", got "%d"`, tt.expectedStatusCode, errAs.StatusCode)
}
if errAs.APIError() == "" {
t.Errorf(`Expected APIError to be empty, got "%v"`, errAs.APIError())
}
}
})
}
}
func TestCustomError_Unwrap(t *testing.T) {
type fields struct {
Code string
Err error
Message string
StatusCode int
}
tests := []struct {
name string
fields fields
wantErr bool
want string
}{
{
name: "Should work",
fields: fields{
Code: "",
Err: errors.New("Wrapped error"),
Message: "Main error",
StatusCode: 0,
},
wantErr: true,
want: "Wrapped error",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
cE := &CustomError{
Code: tt.fields.Code,
Err: tt.fields.Err,
Message: tt.fields.Message,
StatusCode: tt.fields.StatusCode,
}
err := cE.Unwrap()
if (err != nil) != tt.wantErr {
t.Errorf("CustomError.Unwrap() error = %v, wantErr %v", err, tt.wantErr)
}
if err.Error() != tt.want {
t.Errorf("CustomError.Unwrap() message = %v, want %v", err, tt.want)
}
})
}
}
func TestNew_deepNestedErrors(t *testing.T) {
expectedErrMsg := "custom message. Original Error: layer 3. layer 2. layer 1"
layer1 := errors.New("layer 1")
layer2 := fmt.Errorf("layer 2. %w", layer1)
layer3 := fmt.Errorf("layer 3. %w", layer2)
ErrLayered := New("custom message", WithError(layer3))
if ErrLayered.Error() != expectedErrMsg {
t.Errorf("CustomError deep nested errors got %s, want %s", ErrLayered, expectedErrMsg)
}
testFunc := func() error { return ErrLayered }
errLayered := testFunc()
if !errors.Is(errLayered, ErrLayered) {
t.Errorf("Expected %v be ErrLayered", errLayered)
}
errSome := errors.New("Some error")
errWrapped := Wrap(errLayered, errSome)
if !errors.Is(errWrapped, ErrLayered) {
t.Errorf("Expected %v be ErrLayered", errWrapped)
}
expectedErrWrappedMsg := "custom message. Original Error: layer 3. layer 2. layer 1. Wrapped Error(s): Some error"
if errWrapped.Error() != expectedErrWrappedMsg {
t.Errorf("Expected %v to be %s", errWrapped.Error(), expectedErrWrappedMsg)
}
}
func TestWrap(t *testing.T) {
expectedErrMsg := "custom message. Original Error: layer 3. layer 2. layer 1"
layer1 := errors.New("layer 1")
layer2 := fmt.Errorf("layer 2. %w", layer1)
layer3 := fmt.Errorf("layer 3. %w", layer2)
ErrLayered := New("custom message", WithError(layer3))
if ErrLayered.Error() != expectedErrMsg {
t.Errorf("Wrap got %s, want %s", ErrLayered, expectedErrMsg)
}
testFunc := func() error { return ErrLayered }
errLayered := testFunc()
if !errors.Is(errLayered, ErrLayered) {
t.Errorf("Wrap Is got %s, want %s", errLayered, ErrLayered)
}
errSome := errors.New("Some error")
if !errors.Is(Wrap(errLayered, errSome), ErrLayered) {
t.Errorf("Wrap Is got %s, want %s", errSome, ErrLayered)
}
}
// Test invalid custom error.
//
//nolint:forcetypeassert
func TestNew_InvalidCustomError(t *testing.T) {
t.Setenv("CUSTOMERROR_ENVIRONMENT", "testing")
// Recover from panic, and test error message.
defer func() {
if r := recover(); r != nil {
if !strings.Contains(r.(string), "Invalid custom error") {
t.Fatal("Expected panic message to be 'hahaha', got", r)
}
}
}()
_ = New("")
}
func Test_CustomError_MarshalJSON(t *testing.T) {
fields := sync.Map{}
fields.Store("field1", "value1")
fields.Store("field2", 2)
tests := []struct {
name string
cE *CustomError
expected string
}{
{
name: "with all fields",
cE: &CustomError{
Code: "E1010",
Err: errors.New("Some error"),
Fields: &fields,
Message: "An error occurred",
StatusCode: http.StatusBadRequest,
Tags: &Set{treeset.NewWithStringComparator("tag1", "tag2")},
ignore: false,
},
expected: `{"code":"E1010","field1":"value1","field2":2,"message":"An error occurred. Original Error: Some error","statusCode":400,"tags":["tag1","tag2"]}`,
},
{
name: "with message only",
cE: &CustomError{
Message: "An error occurred",
},
expected: `{"message":"An error occurred"}`,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
b, err := json.Marshal(tt.cE)
assert.NoError(t, err)
assert.Equal(t, tt.expected, string(b))
})
}
}
func Test_CustomError_Error(t *testing.T) {
fields := sync.Map{}
fields.Store("field1", "value1")
fields.Store("field2", 2)
tests := []struct {
name string
cE *CustomError
expected []string
}{
{
name: "with all fields",
cE: &CustomError{
Code: "E1010",
Err: errors.New("Some error"),
Fields: &fields,
Message: "An error occurred",
StatusCode: http.StatusBadRequest,
Tags: &Set{treeset.NewWithStringComparator("tag1", "tag2")},
ignore: false,
},
expected: []string{"E1010", "An error occurred", "Original Error: Some error", "Tags", "tag1", "tag2", "Fields:", "field1=value1", "field2=2"},
},
{
name: "with message only",
cE: &CustomError{
Message: "An error occurred",
},
expected: []string{"An error occurred"},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
for _, e := range tt.expected {
assert.True(t, strings.Contains(tt.cE.Error(), e))
}
})
}
}
func Test_CustomError_String(t *testing.T) {
s := &Set{treeset.NewWithStringComparator("tag1", "tag2")}
expected := "tag1, tag2"
assert.Equal(t, expected, s.String())
}
func Test_From(t *testing.T) {
// Helper function that receives a "throw" custom error and return it as an
// error.
throwIt := func(err error) error {
return err
}
// Create a custom error that will be modified later.
cE := New("An error occurred", WithErrorCode("E1010"), WithStatusCode(http.StatusBadRequest))
// Simulate throwing it.
err := throwIt(cE)
// Ensure the message.
assert.Equal(t, "E1010: An error occurred", cE.Error())
// Modify the error.
newErr := From(err, WithErrorCode("E1011"))
// Ensure changes are applied.
assert.Equal(t, "E1011: An error occurred", newErr.Error())
nreErr2 := From(errors.New("Some error"), WithErrorCode("E1012"))
assert.Equal(t, "E1012: Some error. Original Error: Some error", nreErr2.Error())
}