-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patherror_test.go
252 lines (186 loc) · 6.95 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
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
package berr_test
import (
"strings"
"testing"
"github.com/rheisen/berr"
)
func TestErrorStructThroughInterface(t *testing.T) {
const errorMessage = "unexpected problem unmarshalling struct"
const nestedErrorMessage = "invalid struct tag"
const metadataAttachKey = "metadata_key"
const metadataAttachValue = "metadata_val"
const detailAttachKey = "detail_key"
const detailAttachValue = "detail_val"
metadataAttachment := berr.M(metadataAttachKey, metadataAttachValue)
detailAttachment := berr.D(detailAttachKey, detailAttachValue)
errorAttachment := berr.E(berr.ValueInvalid(nestedErrorMessage))
err := berr.Application(errorMessage, metadataAttachment, detailAttachment, errorAttachment)
if err == nil {
t.Errorf("unexpected nil error\n")
}
// -- Test err.Message() value --
if err.Message() != errorMessage {
t.Errorf("err.Message() = '%s', expected '%s'\n", err.Message(), errorMessage)
}
// -- Test err.String() value --
if !strings.Contains(err.String(), err.Message()) {
t.Errorf("err.String() does not contain err.message(), found: '%s'\n", err.String())
}
if !strings.Contains(err.String(), "[application_error]") {
t.Errorf("err.String() missing error type identifier, found: '%s'\n", err.String())
}
if strings.Contains(err.String(), nestedErrorMessage) {
t.Errorf("err.String() contains nested error message, found: '%s'\n", err.String())
}
// -- Test err.Error() value --
if !strings.Contains(err.Error(), err.String()) {
t.Errorf("err.Error() does not contain err.String(), found: '%s'\n", err.Error())
}
if !strings.Contains(err.Error(), nestedErrorMessage) {
t.Errorf("err.Error() does not contain nested error, found: '%s'\n", err.Error())
}
// -- Test err.Details() value --
details := err.Details()
if len(details) != 1 {
t.Fatalf("len(err.Details()) does not match expected (1), found: %d\n", len(details))
}
detailVal, found := details[detailAttachKey]
if !found {
t.Fatalf("detail not found with key '%s'\n", detailAttachKey)
}
if detailVal != detailAttachValue {
t.Errorf(
"unexpected detail value for key '%s' (expected '%s') found: %s\n",
detailAttachKey, detailAttachValue, detailVal,
)
}
// -- Test err.Metadata() value --
metadata := err.Metadata()
if len(metadata) != 1 {
t.Fatalf("len(err.Metadata()) does not match expected (1), found: %d\n", len(metadata))
}
metadataVal, found := metadata[metadataAttachKey]
if !found {
t.Fatalf("metadata not found with key '%s'\n", metadataAttachKey)
}
if metadataVal != metadataAttachValue {
t.Errorf(
"unexpected metadata value for key '%s' (expected '%s') found: %s\n",
metadataAttachKey, metadataAttachValue, metadataVal,
)
}
// -- Test err.Unwrap() value --
wrappedErr := err.Unwrap()
if wrappedErr == nil {
t.Fatalf("unexpected nil value found for err.Unwrap()\n")
}
if !strings.Contains(wrappedErr.Error(), nestedErrorMessage) {
t.Errorf(
"unexpected error message found in unwrapped err (expected to contain '%s'), found: %s\n",
nestedErrorMessage, wrappedErr.Error(),
)
}
// -- Test err.Map() value --
errMap := err.Map()
if len(errMap) != 3 {
t.Fatalf("len(err.Map()) does not match expected (3), found: %d\n", len(errMap))
}
if _, found := errMap["details"]; !found {
t.Errorf("expected 'details' key in err.Map()\n")
}
if _, found := errMap["error_type"]; !found {
t.Errorf("expected 'error_type' key in err.Map()\n")
}
if _, found := errMap["message"]; !found {
t.Errorf("expected 'message' key in err.Map()\n")
}
// -- Test err.FullMap() value --
fullErrMap := err.FullMap()
if len(fullErrMap) != 4 {
t.Fatalf("len(err.FullMap()) does not match expected (4), found: %d\n", len(fullErrMap))
}
if _, found := fullErrMap["details"]; !found {
t.Errorf("expected 'details' key in err.FullMap()\n")
}
if _, found := fullErrMap["metadata"]; !found {
t.Errorf("expected 'metadata' key in err.FullMap()\n")
}
if _, found := fullErrMap["error_type"]; !found {
t.Errorf("expected 'error_type' key in err.FullMap()\n")
}
if _, found := fullErrMap["message"]; !found {
t.Errorf("expected 'message' key in err.FullMap()\n")
}
// -- Test err.HTTPCode() value --
if err.HTTPCode() != berr.ApplicationErrorType.HTTPCode() {
t.Errorf(
"unexpected err.HTTPCode() value (expected '%d'), found: %d\n",
berr.ApplicationErrorType.HTTPCode(), err.HTTPCode(),
)
}
// -- Test err.Type() value --
if err.Type() != berr.ApplicationErrorType {
t.Errorf("unexpected err.Type() value (expected '%s'), found: %s\n", berr.ApplicationErrorType, err.Type())
}
}
func TestValueInvalidError(t *testing.T) {
testErrorFunc(t, berr.ValueInvalidErrorType, berr.ValueInvalid, "invalid email format")
}
func TestValueMissingError(t *testing.T) {
testErrorFunc(t, berr.ValueMissingErrorType, berr.ValueMissing, "email cannot be empty")
}
func TestNotFoundError(t *testing.T) {
testErrorFunc(t, berr.NotFoundErrorType, berr.NotFound, "resource not found")
}
func TestConflictError(t *testing.T) {
testErrorFunc(t, berr.ConflictErrorType, berr.Conflict, "resource conflict detected")
}
func TestAuthorizationError(t *testing.T) {
testErrorFunc(t, berr.AuthorizationErrorType, berr.Authorization, "action not authorized")
}
func TestAuthenticationError(t *testing.T) {
testErrorFunc(t, berr.AuthenticationErrorType, berr.Authentication, "missing authentication token")
}
func TestUnimplementedError(t *testing.T) {
testErrorFunc(t, berr.UnimplementedErrorType, berr.Unimplemented, "method not implemented")
}
func TestTimeoutError(t *testing.T) {
testErrorFunc(t, berr.TimeoutErrorType, berr.Timeout, "request cancelled")
}
func TestErrorsFormatting(t *testing.T) {
const unimplementedErrorMessage = "store.GetData method not implemented"
const applicationErrorMessage = "unexpected problem querying database"
errs := berr.Errors{
berr.Unimplemented(unimplementedErrorMessage),
berr.Application(applicationErrorMessage),
}
errorString := errs.Error()
if !strings.Contains(errorString, unimplementedErrorMessage) {
t.Errorf("expected error string to contain '%s', found: %s\n", unimplementedErrorMessage, errorString)
}
if !strings.Contains(errorString, applicationErrorMessage) {
t.Errorf("expected error string to contain '%s', found: %s\n", applicationErrorMessage, errorString)
}
if !strings.HasPrefix(errorString, "[") {
t.Errorf("expected error string to start with '['\n")
}
if !strings.HasSuffix(errorString, "]") {
t.Errorf("expected error string to start with ']'\n")
}
}
func testErrorFunc(
t *testing.T,
errorType berr.ErrorType,
errorFunc func(message string, attachments ...*berr.Attachment) *berr.Error,
errorMessage string,
) {
t.Helper()
expectErrorType := errorType
const detailAttachKey = "detail_key"
const detailAttachValue = "detail_val"
detailAttachment := berr.D(detailAttachKey, detailAttachValue)
err := errorFunc(errorMessage, detailAttachment)
if err.Type() != expectErrorType {
t.Errorf("unexpected error type (expected '%s') found: %s\n", expectErrorType, err.Type())
}
}