-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherrors_test.go
331 lines (307 loc) · 7.61 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
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
package env
import (
"errors"
"testing"
"github.com/blugnu/test"
)
func TestParseError_Error(t *testing.T) {
// ARRANGE
testcases := []struct {
scenario string
varname string
err error
assert func(t *testing.T, result string)
}{
{scenario: "with VariableName and Err",
varname: "VAR",
err: errors.New("some error"),
assert: func(t *testing.T, result string) {
test.That(t, result).Equals("env.ParseError: VAR: some error")
},
},
{scenario: "with VariableName and nil Err",
varname: "VAR",
assert: func(t *testing.T, result string) {
test.That(t, result).Equals("env.ParseError: VAR")
},
},
{scenario: "with empty VariableName and Err",
err: errors.New("some error"),
assert: func(t *testing.T, result string) {
test.That(t, result).Equals("env.ParseError: some error")
},
},
{scenario: "with empty VariableName and nil Err",
assert: func(t *testing.T, result string) {
test.That(t, result).Equals("env.ParseError")
},
},
}
for _, tc := range testcases {
t.Run(tc.scenario, func(t *testing.T) {
// ARRANGE
sut := ParseError{
VariableName: tc.varname,
Err: tc.err,
}
// ACT
result := sut.Error()
// ASSERT
tc.assert(t, result)
})
}
}
func TestParseError_Is(t *testing.T) {
// ARRANGE
sut := ParseError{
VariableName: "VAR",
Err: errors.New("some error"),
}
testcases := []struct {
scenario string
target error
assert func(t *testing.T, result bool)
}{
{scenario: "target: non-ParseError",
target: errors.New("some error"),
assert: func(t *testing.T, result bool) {
test.Bool(t, result).IsFalse()
},
},
{scenario: "target: zero-value ParseError",
target: ParseError{},
assert: func(t *testing.T, result bool) {
test.Bool(t, result).IsTrue()
},
},
{scenario: "target: ParseError with different VariableName",
target: ParseError{VariableName: "OTHER", Err: errors.New("some error")},
assert: func(t *testing.T, result bool) {
test.Bool(t, result).IsFalse()
},
},
{scenario: "target: ParseError with different Err",
target: ParseError{VariableName: "VAR", Err: errors.New("other error")},
assert: func(t *testing.T, result bool) {
test.Bool(t, result).IsFalse()
},
},
{scenario: "target: ParseError with same VariableName and Err",
target: ParseError{VariableName: "VAR", Err: sut.Err},
assert: func(t *testing.T, result bool) {
test.Bool(t, result).IsTrue()
},
},
}
for _, tc := range testcases {
t.Run(tc.scenario, func(t *testing.T) {
// ACT
result := sut.Is(tc.target)
// ASSERT
tc.assert(t, result)
})
}
}
func TestParseError_Unwrap(t *testing.T) {
// ARRANGE
sut := ParseError{
VariableName: "VAR",
Err: errors.New("some error"),
}
// ACT
result := sut.Unwrap()
// ASSERT
test.Value(t, result).Equals(sut.Err)
}
func TestInvalidValueError_Error(t *testing.T) {
// ARRANGE
testcases := []struct {
scenario string
value string
err error
assert func(t *testing.T, result string)
}{
{scenario: "with Value and Err",
value: "VAL",
err: errors.New("some error"),
assert: func(t *testing.T, result string) {
test.That(t, result).Equals("env.InvalidValueError: VAL: some error")
},
},
{scenario: "with Value and nil Err",
value: "VAL",
assert: func(t *testing.T, result string) {
test.That(t, result).Equals("env.InvalidValueError: VAL")
},
},
{scenario: "with empty Value and Err",
err: errors.New("some error"),
assert: func(t *testing.T, result string) {
test.That(t, result).Equals("env.InvalidValueError: some error")
},
},
{scenario: "with empty Value and nil Err",
assert: func(t *testing.T, result string) {
test.That(t, result).Equals("env.InvalidValueError")
},
},
}
for _, tc := range testcases {
t.Run(tc.scenario, func(t *testing.T) {
// ARRANGE
sut := InvalidValueError{
Value: tc.value,
Err: tc.err,
}
// ACT
result := sut.Error()
// ASSERT
tc.assert(t, result)
})
}
}
func TestInvalidValueError_Is(t *testing.T) {
// ARRANGE
sut := InvalidValueError{
Value: "VAL",
Err: errors.New("some error"),
}
testcases := []struct {
scenario string
target error
assert func(t *testing.T, result bool)
}{
{scenario: "target: non-InvalidValueError",
target: errors.New("some error"),
assert: func(t *testing.T, result bool) {
test.Bool(t, result).IsFalse()
},
},
{scenario: "target: zero-value InvalidValueError",
target: InvalidValueError{},
assert: func(t *testing.T, result bool) {
test.Bool(t, result).IsTrue()
},
},
{scenario: "target: InvalidValueError with different Value",
target: InvalidValueError{Value: "OTHER", Err: errors.New("some error")},
assert: func(t *testing.T, result bool) {
test.Bool(t, result).IsFalse()
},
},
{scenario: "target: InvalidValueError with different Err",
target: InvalidValueError{Value: "VAL", Err: errors.New("other error")},
assert: func(t *testing.T, result bool) {
test.Bool(t, result).IsFalse()
},
},
{scenario: "target: InvalidValueError with same Value and Err",
target: InvalidValueError{Value: "VAL", Err: sut.Err},
assert: func(t *testing.T, result bool) {
test.Bool(t, result).IsTrue()
},
},
}
for _, tc := range testcases {
t.Run(tc.scenario, func(t *testing.T) {
// ACT
result := sut.Is(tc.target)
// ASSERT
tc.assert(t, result)
})
}
}
func TestInvalidValueError_Unwrap(t *testing.T) {
// ARRANGE
sut := InvalidValueError{
Value: "VAL",
Err: errors.New("some error"),
}
// ACT
result := sut.Unwrap()
// ASSERT
test.Value(t, result).Equals(sut.Err)
}
func TestRangeError_Error(t *testing.T) {
// ARRANGE
testcases := []struct {
scenario string
min int
max int
assert func(t *testing.T, result string)
}{
{scenario: "with Min and Max",
min: 1,
max: 10,
assert: func(t *testing.T, result string) {
test.That(t, result).Equals("env.RangeError: 1 <= (x) <= 10")
},
},
{scenario: "with zero Min and Max",
assert: func(t *testing.T, result string) {
test.That(t, result).Equals("env.RangeError")
},
},
}
for _, tc := range testcases {
t.Run(tc.scenario, func(t *testing.T) {
// ARRANGE
sut := RangeError[int]{
Min: tc.min,
Max: tc.max,
}
// ACT
result := sut.Error()
// ASSERT
tc.assert(t, result)
})
}
}
func TestRangeError_Is(t *testing.T) {
// ARRANGE
sut := RangeError[int]{Min: 1, Max: 10}
testcases := []struct {
scenario string
target error
assert func(t *testing.T, result bool)
}{
{scenario: "target: non-RangeError",
target: errors.New("some error"),
assert: func(t *testing.T, result bool) {
test.Bool(t, result).IsFalse()
},
},
{scenario: "target: zero-value RangeError",
target: RangeError[int]{},
assert: func(t *testing.T, result bool) {
test.Bool(t, result).IsTrue()
},
},
{scenario: "target: RangeError with different Min",
target: RangeError[int]{Min: 2, Max: 10},
assert: func(t *testing.T, result bool) {
test.Bool(t, result).IsFalse()
},
},
{scenario: "target: RangeError with different Max",
target: RangeError[int]{Min: 1, Max: 20},
assert: func(t *testing.T, result bool) {
test.Bool(t, result).IsFalse()
},
},
{scenario: "target: RangeError with same Min and Max",
target: RangeError[int]{Min: 1, Max: 10},
assert: func(t *testing.T, result bool) {
test.Bool(t, result).IsTrue()
},
},
}
for _, tc := range testcases {
t.Run(tc.scenario, func(t *testing.T) {
// ACT
result := sut.Is(tc.target)
// ASSERT
tc.assert(t, result)
})
}
}