-
Notifications
You must be signed in to change notification settings - Fork 0
/
example_test.go
266 lines (224 loc) · 6.58 KB
/
example_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
package errors
import (
"fmt"
)
func ExampleNew() {
err := New("whoops")
fmt.Println(err)
// Output: whoops
}
func ExampleNew_printf() {
err := New("whoops")
fmt.Printf("%+v", err)
// Example output:
// whoops
// github.com/leotons/errors_test.ExampleNew_printf
// /home/dfc/src/github.com/leotons/errors/example_test.go:17
// testing.runExample
// /home/dfc/go/src/testing/example.go:114
// testing.RunExamples
// /home/dfc/go/src/testing/example.go:38
// testing.(*M).Run
// /home/dfc/go/src/testing/testing.go:744
// main.main
// /github.com/leotons/errors/_test/_testmain.go:106
// runtime.main
// /home/dfc/go/src/runtime/proc.go:183
// runtime.goexit
// /home/dfc/go/src/runtime/asm_amd64.s:2059
}
func ExampleWithMessage() {
cause := New("whoops")
err := WithMessage(cause, "oh noes")
fmt.Println(err)
// Output: oh noes
}
func ExampleWithStack() {
cause := New("whoops")
err := WithStack(cause)
fmt.Println(err)
// Output: whoops
}
func ExampleWithStack_printf() {
cause := New("whoops")
err := WithStack(cause)
fmt.Printf("%+v", err)
// Example Output:
// whoops
// github.com/leotons/errors_test.ExampleWithStack_printf
// /home/fabstu/go/src/github.com/leotons/errors/example_test.go:55
// testing.runExample
// /usr/lib/go/src/testing/example.go:114
// testing.RunExamples
// /usr/lib/go/src/testing/example.go:38
// testing.(*M).Run
// /usr/lib/go/src/testing/testing.go:744
// main.main
// github.com/leotons/errors/_test/_testmain.go:106
// runtime.main
// /usr/lib/go/src/runtime/proc.go:183
// runtime.goexit
// /usr/lib/go/src/runtime/asm_amd64.s:2086
// github.com/leotons/errors_test.ExampleWithStack_printf
// /home/fabstu/go/src/github.com/leotons/errors/example_test.go:56
// testing.runExample
// /usr/lib/go/src/testing/example.go:114
// testing.RunExamples
// /usr/lib/go/src/testing/example.go:38
// testing.(*M).Run
// /usr/lib/go/src/testing/testing.go:744
// main.main
// github.com/leotons/errors/_test/_testmain.go:106
// runtime.main
// /usr/lib/go/src/runtime/proc.go:183
// runtime.goexit
// /usr/lib/go/src/runtime/asm_amd64.s:2086
}
func ExampleWrap() {
cause := New("whoops")
err := Wrap(cause, "oh noes")
fmt.Println(err)
// Output: oh noes
}
func fn() error {
e1 := New("error")
e2 := Wrap(e1, "inner")
e3 := Wrap(e2, "middle")
return Wrap(e3, "outer")
}
func ExampleCause() {
err := fn()
fmt.Println(err)
fmt.Println(Cause(err))
// Output: outer
// error
}
func ExampleWrap_extended() {
err := fn()
fmt.Printf("%+v\n", err)
// Example output:
// error
// github.com/leotons/errors_test.fn
// /home/dfc/src/github.com/leotons/errors/example_test.go:47
// github.com/leotons/errors_test.ExampleCause_printf
// /home/dfc/src/github.com/leotons/errors/example_test.go:63
// testing.runExample
// /home/dfc/go/src/testing/example.go:114
// testing.RunExamples
// /home/dfc/go/src/testing/example.go:38
// testing.(*M).Run
// /home/dfc/go/src/testing/testing.go:744
// main.main
// /github.com/leotons/errors/_test/_testmain.go:104
// runtime.main
// /home/dfc/go/src/runtime/proc.go:183
// runtime.goexit
// /home/dfc/go/src/runtime/asm_amd64.s:2059
// github.com/leotons/errors_test.fn
// /home/dfc/src/github.com/leotons/errors/example_test.go:48: inner
// github.com/leotons/errors_test.fn
// /home/dfc/src/github.com/leotons/errors/example_test.go:49: middle
// github.com/leotons/errors_test.fn
// /home/dfc/src/github.com/leotons/errors/example_test.go:50: outer
}
func ExampleWrapf() {
cause := New("whoops")
err := Wrapf(cause, "oh noes #%d", 2)
fmt.Println(err)
// Output: oh noes #2
}
func ExampleErrorf_extended() {
err := Errorf("whoops: %s", "foo")
fmt.Printf("%+v", err)
// Example output:
// whoops: foo
// github.com/leotons/errors_test.ExampleErrorf
// /home/dfc/src/github.com/leotons/errors/example_test.go:101
// testing.runExample
// /home/dfc/go/src/testing/example.go:114
// testing.RunExamples
// /home/dfc/go/src/testing/example.go:38
// testing.(*M).Run
// /home/dfc/go/src/testing/testing.go:744
// main.main
// /github.com/leotons/errors/_test/_testmain.go:102
// runtime.main
// /home/dfc/go/src/runtime/proc.go:183
// runtime.goexit
// /home/dfc/go/src/runtime/asm_amd64.s:2059
}
func Example_stackTrace() {
type stackTracer interface {
StackTrace() StackTrace
}
err, ok := Cause(fn()).(stackTracer)
if !ok {
panic("oops, err does not implement stackTracer")
}
st := err.StackTrace()
fmt.Printf("%+v", st[0:2]) // top two frames
// Example output:
// github.com/leotons/errors_test.fn
// /home/dfc/src/github.com/leotons/errors/example_test.go:47
// github.com/leotons/errors_test.Example_stackTrace
// /home/dfc/src/github.com/leotons/errors/example_test.go:127
}
func ExampleCause_printf() {
err := Wrap(func() error {
return func() error {
return New("hello world")
}()
}(), "failed")
fmt.Printf("%v", err)
// Output: failed
}
func ExampleWithCode() {
var err error
err = WithCode(ConfigurationNotValid, "this is an error message")
fmt.Println(err)
err = Wrap(err, "this is a wrap error message with error code not change")
fmt.Println(err)
err = WrapC(err, ErrInvalidJSON, "this is a wrap error message with new error code")
fmt.Println(codes[err.(*withCode).code].String())
fmt.Println(err)
//fmt.Printf("%+v\n", err)
//fmt.Printf("%#+v\n", err)
// Output:
// ConfigurationNotValid error
// ConfigurationNotValid error
// Data is not valid JSON
// Data is not valid JSON
}
func ExamplewithCode_code() {
err := loadConfig()
if nil != err {
err = WrapC(err, ErrLoadConfigFailed, "failed to load configuration")
}
fmt.Println(err.(*withCode).code)
// Output: 1003
}
func ExampledefaultCoder_HTTPStatus() {
err := loadConfig()
if nil != err {
err = WrapC(err, ErrLoadConfigFailed, "failed to load configuration")
}
fmt.Println(codes[err.(*withCode).code].HTTPStatus())
// Output: 500
}
func ExampleCoder_HTTPStatus() {
err := loadConfig()
if nil != err {
err = WrapC(err, ErrLoadConfigFailed, "failed to load configuration")
}
coder := ParseCoder(err)
fmt.Println(coder.HTTPStatus())
// Output: 500
}
func ExampleString() {
err := loadConfig()
if nil != err {
err = WrapC(err, ErrLoadConfigFailed, "failed to load configuration")
}
fmt.Println(codes[err.(*withCode).code].String())
// Output: Load configuration file failed
}