-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy patherror_test.go
345 lines (321 loc) · 7.17 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
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 gone
import (
"fmt"
"net/http"
"strings"
"testing"
)
func TestNewError(t *testing.T) {
tests := []struct {
name string
code int
msg string
statusCode int
wantErr string
}{
{
name: "basic error",
code: 1001,
msg: "test error",
statusCode: http.StatusBadRequest,
wantErr: "GoneError(code=1001); test error",
},
{
name: "empty message",
code: 1002,
msg: "",
statusCode: http.StatusInternalServerError,
wantErr: "GoneError(code=1002); ",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
err := NewError(tt.code, tt.msg, tt.statusCode)
if err.Error() != tt.wantErr {
t.Errorf("NewError() error = %v, wantErr %v", err.Error(), tt.wantErr)
}
if err.Code() != tt.code {
t.Errorf("NewError() code = %v, want %v", err.Code(), tt.code)
}
if err.GetStatusCode() != tt.statusCode {
t.Errorf("NewError() statusCode = %v, want %v", err.GetStatusCode(), tt.statusCode)
}
})
}
}
func TestNewParameterError(t *testing.T) {
tests := []struct {
name string
msg string
ext []int
wantErr string
}{
{
name: "basic parameter error",
msg: "invalid parameter",
ext: nil,
wantErr: "GoneError(code=400); invalid parameter",
},
{
name: "parameter error with custom code",
msg: "custom error",
ext: []int{1001},
wantErr: "GoneError(code=1001); custom error",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
err := NewParameterError(tt.msg, tt.ext...)
if err.Error() != tt.wantErr {
t.Errorf("NewParameterError() error = %v, wantErr %v", err.Error(), tt.wantErr)
}
if err.GetStatusCode() != http.StatusBadRequest {
t.Errorf("NewParameterError() statusCode = %v, want %v", err.GetStatusCode(), http.StatusBadRequest)
}
})
}
}
func TestNewBusinessError(t *testing.T) {
tests := []struct {
name string
msg string
ext []any
wantErr string
}{
{
name: "basic business error",
msg: "business error",
ext: nil,
wantErr: "GoneError(code=0); business error",
},
{
name: "business error with code",
msg: "business error with code",
ext: []any{1001},
wantErr: "GoneError(code=1001); business error with code",
},
{
name: "business error with code and data",
msg: "business error with data",
ext: []any{1002, "data"},
wantErr: "GoneError(code=1002); business error with data",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
err := NewBusinessError(tt.msg, tt.ext...)
if err.Error() != tt.wantErr {
t.Errorf("NewBusinessError() error = %v, wantErr %v", err.Error(), tt.wantErr)
}
if err.GetStatusCode() != http.StatusOK {
t.Errorf("NewBusinessError() statusCode = %v, want %v", err.GetStatusCode(), http.StatusOK)
}
// Test Data() if provided
if len(tt.ext) > 1 {
if err.Data() != tt.ext[1] {
t.Errorf("NewBusinessError() data = %v, want %v", err.Data(), tt.ext[1])
}
}
})
}
}
func TestToError(t *testing.T) {
tests := []struct {
name string
input any
wantNil bool
wantType string
}{
{
name: "nil input",
input: nil,
wantNil: true,
},
{
name: "error interface",
input: fmt.Errorf("test error"),
wantType: "*gone.iError",
},
{
name: "string input",
input: "test error",
wantType: "*gone.iError",
},
{
name: "any input",
input: 123,
wantType: "*gone.iError",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
err := ToError(tt.input)
if tt.wantNil {
if err != nil {
t.Errorf("ToError() = %v, want nil", err)
}
return
}
if err == nil {
t.Error("ToError() = nil, want error")
return
}
// Check if it's an InnerError and contains stack trace
if innerErr, ok := err.(InnerError); ok {
if len(innerErr.Stack()) == 0 {
t.Error("ToError() stack trace is empty")
}
}
})
}
}
func TestToErrorWithMsg(t *testing.T) {
tests := []struct {
name string
input any
msg string
wantNil bool
wantMsg string
}{
{
name: "nil input",
input: nil,
msg: "prefix",
wantNil: true,
},
{
name: "with prefix",
input: "test error",
msg: "prefix",
wantMsg: "prefix: test error",
},
{
name: "without prefix",
input: "test error",
msg: "",
wantMsg: "test error",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
err := ToErrorWithMsg(tt.input, tt.msg)
if tt.wantNil {
if err != nil {
t.Errorf("ToErrorWithMsg() = %v, want nil", err)
}
return
}
if err == nil {
t.Error("ToErrorWithMsg() = nil, want error")
return
}
if err.Msg() != tt.wantMsg {
t.Errorf("ToErrorWithMsg() message = %v, want %v", err.Msg(), tt.wantMsg)
}
})
}
}
func TestNewInnerError(t *testing.T) {
err := NewInnerError("test error", http.StatusInternalServerError)
if err == nil {
t.Fatal("NewInnerError() = nil, want error")
}
innerErr, ok := err.(InnerError)
if !ok {
t.Fatal("NewInnerError() did not return InnerError interface")
}
if !strings.Contains(string(innerErr.Stack()), "error_test.go") {
t.Error("NewInnerError() stack trace does not contain test file")
}
}
func TestPanicTrace(t *testing.T) {
trace := PanicTrace(4, 1)
if len(trace) == 0 {
t.Error("PanicTrace() returned empty trace")
}
if strings.Contains(string(trace), "error_test.go") {
t.Error("PanicTrace() does not contain test file")
}
trace = PanicTrace(4, 0)
if !strings.Contains(string(trace), "error_test.go") {
t.Error("PanicTrace() does not contain test file")
}
}
func Test_iError_Error(t *testing.T) {
type fields struct {
defaultErr *defaultErr
trace []byte
}
tests := []struct {
name string
fields fields
want string
}{
{
name: "test error",
fields: fields{
defaultErr: &defaultErr{
code: 100,
},
trace: []byte("test trace"),
},
want: "GoneError(code=100); \n\ntest trace",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
e := &iError{
defaultErr: tt.fields.defaultErr,
trace: tt.fields.trace,
}
if got := e.Error(); got != tt.want {
t.Errorf("Error() = %v, want %v", got, tt.want)
}
})
}
}
func TestBError_SetMsg(t *testing.T) {
type fields struct {
err Error
data any
}
type args struct {
msg string
}
tests := []struct {
name string
fields fields
args args
want string
wantCode int
}{
{
name: "test error",
fields: fields{
err: &iError{
defaultErr: &defaultErr{
code: 100,
},
},
},
args: args{msg: "test error"},
want: "test error",
wantCode: 100,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
e := &BError{
err: tt.fields.err,
data: tt.fields.data,
}
e.SetMsg(tt.args.msg)
if got := e.Msg(); got != tt.want {
t.Errorf("SetMsg(%v) = %v, want %v", tt.args.msg, got, tt.want)
}
if got := e.Code(); got != tt.wantCode {
t.Errorf("Code() after SetMsg(%v) = %v, want %v", tt.args.msg, got, tt.wantCode)
}
})
}
}