-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpack_test.go
More file actions
345 lines (313 loc) · 8.61 KB
/
pack_test.go
File metadata and controls
345 lines (313 loc) · 8.61 KB
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
package errors
import (
"errors"
"fmt"
"io"
"math"
"reflect"
"strings"
"testing"
)
func TestNew(t *testing.T) {
tests := []struct {
err string
want error
}{
{"", fmt.Errorf("")},
{"foo", fmt.Errorf("foo")},
{"foo", New("foo")},
{"foo", Newf("%s", "foo")},
{"foo", Errorf("foo")},
{"string with format specifiers: %v", errors.New("string with format specifiers: %v")},
}
for _, tt := range tests {
got := New(tt.err)
if got.Error() != tt.want.Error() {
t.Errorf("New.Error(): got: %q, want %q", got, tt.want)
}
}
}
func TestNewWithCodef(t *testing.T) {
code := 123
format := "This is a test. Code: %d"
expectedMsg := fmt.Sprintf(format, code)
// Test with no arguments
err := NewWithCodef(code, format, code)
if !strings.Contains(err.Error(), expectedMsg) {
t.Errorf("Expected error message to contain '%s', but got '%s'", expectedMsg, err.Error())
}
// Test with arguments
arg1 := "foo"
arg2 := 42
format = "This is a test. Arg1: %s, Arg2: %d, Code: %d"
expectedMsg = fmt.Sprintf(format, arg1, arg2, code)
err = NewWithCodef(code, format, arg1, arg2, code)
if !strings.Contains(err.Error(), expectedMsg) {
t.Errorf("Expected error message to contain '%s', but got '%s'", expectedMsg, err.Error())
}
// Test with invalid format string
format = "%d %s" // Missing arguments for format string
err = NewWithCodef(code, format)
if !strings.Contains(err.Error(), "%!d(MISSING) %!s(MISSING)") {
t.Errorf("Expected error message to contain 'missing argument for format specifier', but got '%s'", err.Error())
}
}
func TestWrapNil(t *testing.T) {
tests := []struct {
err error
want error
}{
{Wrap(nil, "no error"), nil},
{Wrapf(nil, "no %s", "error"), nil},
}
for _, tt := range tests {
got := tt.err
if got != tt.want {
t.Errorf("Wrap nil: got: %q, want %q", got, tt.want)
}
}
}
func TestWrap(t *testing.T) {
tests := []struct {
err error
message string
want string
}{
{io.EOF, "read error", "read error: EOF"},
{Wrap(io.EOF, "read error"), "client error", "client error: read error: EOF"},
}
SetCfg(&Config{
StackDepth: 0,
ErrorConnectionFlag: ": ",
})
defer ResetCfg()
for _, tt := range tests {
got := Wrap(tt.err, tt.message).Error()
if got != tt.want {
t.Errorf("Wrap(%v, %q): got: %v, want %v", tt.err, tt.message, got, tt.want)
}
}
}
func TestWrapf(t *testing.T) {
tests := []struct {
err error
message string
want string
}{
{io.EOF, "read error", "read error: EOF"},
{Wrapf(io.EOF, "read error without format specifiers"), "client error",
"client error: read error without format specifiers: EOF"},
{Wrapf(io.EOF, "read error with %d format specifier", 1), "client error",
"client error: read error with 1 format specifier: EOF"},
}
SetCfg(&Config{
StackDepth: 0,
ErrorConnectionFlag: ": ",
})
defer ResetCfg()
for _, tt := range tests {
got := Wrapf(tt.err, tt.message).Error()
if got != tt.want {
t.Errorf("Wrapf(%v, %q): got: %v, want %v", tt.err, tt.message, got, tt.want)
}
}
}
func TestWrapWithCodef(t *testing.T) {
code := 123
format := "This is a test. Code: %d"
expectedMsg := fmt.Sprintf(format, code)
// Test with no arguments
err := errors.New("original error")
wrappedErr := WrapWithCodef(err, code, format, code)
if wrappedErr == nil {
t.Error("Expected WrapWithCodef to return non-nil error, but got nil")
}
if !strings.Contains(wrappedErr.Error(), expectedMsg) {
t.Errorf("Expected error message to contain '%s', but got '%s'", expectedMsg, wrappedErr.Error())
}
if errors.Unwrap(wrappedErr) != err {
t.Error("Expected wrapped error to have original error as cause, but got different error")
}
// Test with arguments
arg1 := "foo"
arg2 := 42
format = "This is a test. Arg1: %s, Arg2: %d, Code: %d"
expectedMsg = fmt.Sprintf(format, arg1, arg2, code)
wrappedErr = WrapWithCodef(err, code, format, arg1, arg2, code)
if !strings.Contains(wrappedErr.Error(), expectedMsg) {
t.Errorf("Expected error message to contain '%s', but got '%s'", expectedMsg, wrappedErr.Error())
}
// Test with nil error
wrappedErr = WrapWithCodef(nil, code, format)
if wrappedErr != nil {
t.Error("Expected WrapWithCodef to return nil error when given nil error, but got non-nil error")
}
}
func TestErrorf(t *testing.T) {
tests := []struct {
err error
want string
}{
{Errorf("read error without format specifiers"), "read error without format specifiers"},
{Errorf("read error with %d format specifier", 1), "read error with 1 format specifier"},
}
SetCfg(&Config{
StackDepth: 0,
ErrorConnectionFlag: ": ",
})
defer ResetCfg()
for _, tt := range tests {
got := tt.err.Error()
if got != tt.want {
t.Errorf("Errorf(%v): got: %q, want %q", tt.err, got, tt.want)
}
}
}
type nilError struct{}
func (nilError) Error() string { return "nil error" }
func TestCause(t *testing.T) {
x := New("error")
tests := []struct {
err error
want error
}{{
// nil error is nil
err: nil,
want: nil,
}, {
// explicit nil error is nil
err: (error)(nil),
want: nil,
}, {
// typed nil is nil
err: (*nilError)(nil),
want: (*nilError)(nil),
}, {
// uncaused error is unaffected
err: io.EOF,
want: io.EOF,
}, {
// caused error returns cause
err: Wrap(io.EOF, "ignored"),
want: io.EOF,
}, {
err: x, // return from errors.New
want: x,
}, {
Wrap(nil, "whoops"),
nil,
}, {
Wrap(io.EOF, "whoops"),
io.EOF,
}, {
Wrap(nil, ""),
nil,
}, {
Wrap(io.EOF, ""),
io.EOF,
}}
for i, tt := range tests {
got := Cause(tt.err)
if !reflect.DeepEqual(got, tt.want) {
t.Errorf("test %d: got %#v, want %#v", i+1, got, tt.want)
}
}
}
// errors.New, etc values are not expected to be compared by value
// but the change in errors#27 made them incomparable. Assert that
// various kinds of errors have a functional equality operator, even
// if the result of that equality is always false.
func TestErrorEquality(t *testing.T) {
vals := []error{
nil,
io.EOF,
errors.New("EOF"),
New("EOF"),
Errorf("EOF"),
Wrap(io.EOF, "EOF"),
Wrapf(io.EOF, "EOF%d", 2),
Wrap(nil, "whoops"),
Wrap(io.EOF, "whoops"),
Wrap(io.EOF, ""),
Wrap(nil, ""),
}
for i := range vals {
for j := range vals {
_ = vals[i] == vals[j] // mustn't panic
}
}
}
func TestCode(t *testing.T) {
// Test when error is nil
code := Code(nil)
if code != 0 {
t.Errorf("Expected Code(nil) to return 0, but got %d", code)
}
// Test when error is (*baseError)(nil)
code = Code((*baseError)(nil))
if code != 0 {
t.Errorf("Expected Code(nil) to return 0, but got %d", code)
}
// Test when error is not of type *baseError
err := errors.New("some error")
code = Code(err)
if code != math.MinInt32 {
t.Errorf("Expected Code(%v) to return %d, but got %d", err, math.MinInt32, code)
}
// Test when error is of type *baseError
baseErr := &baseError{code: 123, msg: "some error"}
code = Code(baseErr)
if code != baseErr.code {
t.Errorf("Expected Code(%v) to return %d, but got %d", baseErr, baseErr.code, code)
}
}
func TestMsg(t *testing.T) {
// Test when error is nil
msg := Msg(nil)
if msg != "" {
t.Errorf("Expected Msg(nil) to return empty string, but got %s", msg)
}
// Test when error is (*baseError)(nil)
msg = Msg((*baseError)(nil))
if msg != Success {
t.Errorf("Expected Msg(nil) to return empty string, but got %s", msg)
}
// Test when error is not of type *baseError
err := errors.New("some error")
msg = Msg(err)
if msg != "some error" {
t.Errorf("Expected Msg(%v) to return 'some error', but got %s", err, msg)
}
// Test when error is of type *baseError
baseErr := &baseError{code: 123, msg: "some error"}
msg = Msg(baseErr)
if msg != baseErr.msg {
t.Errorf("Expected Msg(%v) to return '%s', but got '%s'", baseErr, baseErr.msg, msg)
}
}
func TestEffectiveCode(t *testing.T) {
type test struct {
name string
err error
expected int
}
// Define a list of test cases
tests := []test{
{name: "Nil", err: nil, expected: 0},
{name: "Unknown", err: errors.New("unknown error"), expected: UnknownCode},
{name: "WithCode", err: &baseError{code: 123}, expected: 123},
{name: "ChainWithCode", err: &baseError{code: 0, cause: &baseError{code: 456}}, expected: 456},
{name: "ChainWithMultiCode",
err: &baseError{code: 0, cause: &baseError{code: 123, cause: &baseError{code: 456}}}, expected: 123},
{name: "ChainWithUnknown", err: &baseError{cause: errors.New("unknown error")}, expected: UnknownCode},
}
// Run each test case
for _, tc := range tests {
t.Run(tc.name, func(t *testing.T) {
actual := EffectiveCode(tc.err)
if actual != tc.expected {
t.Errorf("Expected code %d but got %d", tc.expected, actual)
}
})
}
}