-
Notifications
You must be signed in to change notification settings - Fork 1
/
handler_test.go
432 lines (373 loc) · 9.97 KB
/
handler_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
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
package jsonhandlerfunc_test
import (
"context"
"errors"
"fmt"
"io/ioutil"
"log"
"net/http"
"net/http/httptest"
"strings"
"github.com/theplant/jsonhandlerfunc"
)
// ### 1) Simple types
func ExampleToHandlerFunc_01helloworld() {
var helloworld = func(name string, gender int) (r string, err error) {
if gender == 1 {
r = fmt.Sprintf("Hi, Mr. %s", name)
} else if gender == 2 {
r = fmt.Sprintf("Hi, Mrs. %s", name)
} else {
err = fmt.Errorf("Sorry, I don't know about your gender.")
}
return
}
hf := jsonhandlerfunc.ToHandlerFunc(helloworld)
responseBody := httpPostJSON(hf, `
{"params": [
"Gates",
1
]}
`)
fmt.Println(responseBody)
responseBody = httpPostJSON(hf, `
{"params": [
"Gates",
2
]}
`)
fmt.Println(responseBody)
responseBody = httpPostJSON(hf, `
{"params": [
"Gates",
3
]}
`)
fmt.Println(responseBody)
//Output:
// {"results":["Hi, Mr. Gates",null]}
//
// {"results":["Hi, Mrs. Gates",null]}
//
// {"results":["",{"error":"Sorry, I don't know about your gender.","value":{}}]}
}
// ### 2) More complicated types
func ExampleToHandlerFunc_02plainstruct() {
var helloworld = func(name string, p struct {
Name string
Address struct {
Zipcode int
Address1 string
}
}) (r string, err error) {
r = fmt.Sprintf("Hi, Mr. %s, Your zipcode is %d", name, p.Address.Zipcode)
return
}
hf := jsonhandlerfunc.ToHandlerFunc(helloworld)
responseBody := httpPostJSON(hf, `
{"params": [
"Felix",
{
"Address": {
"Zipcode": 100
}
}
]}
`)
fmt.Println(responseBody)
//Output:
// {"results":["Hi, Mr. Felix, Your zipcode is 100",null]}
}
// ### 3) Slice, maps, pointers
func ExampleToHandlerFunc_03slicemapspointers() {
var helloworld = func(
names []string,
genderOfNames map[string]string,
p *struct {
Names []string
Address struct {
Zipcode int
Address1 string
}
},
pointerNames *[]string,
) (r string, err error) {
r = fmt.Sprintf("Hi, Mr. %s, Your zipcode is %d, Your gender is %s", names[0], p.Address.Zipcode, genderOfNames[names[0]])
return
}
hf := jsonhandlerfunc.ToHandlerFunc(helloworld)
responseBody := httpPostJSON(hf, `{"params":[ ["Felix"] ]}`)
fmt.Println(responseBody)
responseBody = httpPostJSON(hf, `
{"params": [
["Felix", "Gates"],
{
"Felix": "Male",
"Gates": "Male"
},
{
"Names": ["F1", "F2"],
"Address": {
"Zipcode": 100
}
},
["p1", "p2"]
]}
`)
fmt.Println(responseBody)
responseBody = httpPostJSON(hf, ``)
fmt.Println(responseBody)
//Output:
// {"results":["",{"error":"require 4 params, but passed in 1 params","value":{}}]}
//
// {"results":["Hi, Mr. Felix, Your zipcode is 100, Your gender is Male",null]}
//
// {"results":["",{"error":"decode request params error","value":{}}]}
}
// ### 4) First context: If first parameter is a context.Context, It will be passed in with request.Context()
func ExampleToHandlerFunc_04requestcontext() {
var helloworld = func(ctx context.Context, name string) (r string, err error) {
userid := ctx.Value("userid").(string)
r = fmt.Sprintf("Hello %s, My user id is %s", name, userid)
return
}
hf := jsonhandlerfunc.ToHandlerFunc(helloworld)
middleware := func(inner http.HandlerFunc) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
r = r.WithContext(context.WithValue(r.Context(), "userid", "123"))
inner(w, r)
}
}
responseBody := httpPostJSON(middleware(hf), `{"params": [ "Hello" ]}`)
fmt.Println(responseBody)
//Output:
// {"results":["Hello Hello, My user id is 123",null]}
}
type complicatedError struct {
ErrorCode int
ErrorDeepReason string
}
func (ce *complicatedError) Error() string {
return ce.ErrorDeepReason
}
// ### 5) Errors handling with details in returned json
func ExampleToHandlerFunc_05errors() {
var helloworld = func(name string, gender int) (r string, err error) {
err = &complicatedError{ErrorCode: 8800, ErrorDeepReason: "It crashed."}
return
}
hf := jsonhandlerfunc.ToHandlerFunc(helloworld)
responseBody := httpPostJSON(hf, `
{"params": [
"Gates",
1
]}
`)
fmt.Println(responseBody)
//Output:
// {"results":["",{"error":"It crashed.","value":{"ErrorCode":8800,"ErrorDeepReason":"It crashed."}}]}
}
// ### 6) Can use get with empty body to fetch the handler
func ExampleToHandlerFunc_06getwithemptybody() {
var helloworld = func(ctx context.Context) (r string, err error) {
r = "Done"
return
}
hf := jsonhandlerfunc.ToHandlerFunc(helloworld)
ts := httptest.NewServer(hf)
defer ts.Close()
res, err := http.Get(ts.URL)
if err != nil {
log.Fatal(err)
}
b, _ := ioutil.ReadAll(res.Body)
res.Body.Close()
fmt.Println(string(b))
//Output:
// {"results":["Done",null]}
}
// ### 7) Use `NewStatusCodeError` or implement `StatusCodeError` interface to set http status code of response.
func ExampleToHandlerFunc_07httpcode() {
var helloworld = func(name string, gender int) (r string, err error) {
err = jsonhandlerfunc.NewStatusCodeError(http.StatusForbidden, fmt.Errorf("you can't access it"))
return
}
hf := jsonhandlerfunc.ToHandlerFunc(helloworld)
responseBody, code := httpPostJSONReturnCode(hf, `
{"params": [
"Gates",
1
]}
`)
fmt.Println(code)
fmt.Println(responseBody)
//Output:
// 403
// {"results":["",{"error":"you can't access it","value":{}}]}
}
// ### 8) Pass in another injector func to get arguments from *http.Request and pass it to first func.
// the argument injector parameters should be `func(w http.ResponseWriter, r *http.Request)`
// the return values except the last error will be passed to the first func.
func ExampleToHandlerFunc_08argumentsinjector() {
var helloworld = func(cartId int, userId string, name string, gender int) (r string, err error) {
r = fmt.Sprintf("cardId: %d, userId: %s, name: %s, gender: %d", cartId, userId, name, gender)
return
}
var argsInjector = func(w http.ResponseWriter, r *http.Request) (cartId int, userId string, err error) {
cartId = 20
userId = "100"
return
}
hf := jsonhandlerfunc.ToHandlerFunc(helloworld, argsInjector)
responseBody, code := httpPostJSONReturnCode(hf, `
{"params": [
"Gates",
2
]}
`)
fmt.Println(code)
fmt.Println(responseBody)
var argsInjectorWithError = func(w http.ResponseWriter, r *http.Request) (cartId int, userId string, err error) {
err = jsonhandlerfunc.NewStatusCodeError(http.StatusForbidden, fmt.Errorf("you can't access it"))
return
}
hf = jsonhandlerfunc.ToHandlerFunc(helloworld, argsInjectorWithError)
responseBody, code = httpPostJSONReturnCode(hf, `
{"params": [
"Gates",
2
]}
`)
fmt.Println(code)
fmt.Println(responseBody)
// You can pass more injectors to addup provide arguments from beginning.
var cardItInjector = func(w http.ResponseWriter, r *http.Request) (cartId int, err error) {
cartId = 30
return
}
var userIdInjecter = func(w http.ResponseWriter, r *http.Request) (userId string, err error) {
userId = "300"
return
}
hf = jsonhandlerfunc.ToHandlerFunc(helloworld, cardItInjector, userIdInjecter)
responseBody, code = httpPostJSONReturnCode(hf, `
{"params": [
"Gates",
2
]}
`)
fmt.Println(code)
fmt.Println(responseBody)
// You can also pass only one injector without main func
hf = jsonhandlerfunc.ToHandlerFunc(cardItInjector)
responseBody, code = httpPostJSONReturnCode(hf, "")
fmt.Println(code)
fmt.Println(responseBody)
//Output:
// 200
// {"results":["cardId: 20, userId: 100, name: Gates, gender: 2",null]}
//
// 403
// {"results":["",{"error":"you can't access it","value":{}}]}
//
// 200
// {"results":["cardId: 30, userId: 300, name: Gates, gender: 2",null]}
//
// 200
// {"results":[30,null]}
}
// ### 9) panic if injectors type not match
func ExampleToHandlerFunc_09injectortypenotmatch() {
defer func() {
if r := recover(); r != nil {
fmt.Println(r)
}
}()
var inj = func(w http.ResponseWriter, r *http.Request) (a *http.Request, b float64, c string, err error) {
return
}
var f = func(a, b, c string) (err error) {
return
}
jsonhandlerfunc.ToHandlerFunc(f, inj)
fmt.Println("DONE")
//Output:
// func(string, string, string) error params type is [string string string], but injecting [*http.Request float64 string]
}
func ExampleForPointerAddress_injectorbug() {
type Address struct {
Name string
}
var inj = func(w http.ResponseWriter, r *http.Request) (a, b, c string, err error) {
a = "1"
b = "2"
c = "3"
return
}
var f = func(a, b, c string, add *Address) (err error) {
err = errors.New(fmt.Sprintf("error %+v", add.Name))
return
}
hf := jsonhandlerfunc.ToHandlerFunc(f, inj)
responseBody := httpPostJSON(hf, `
{"params": [
{
"Name": "Felix"
}
]}
`)
fmt.Println(responseBody)
responseBody = httpPostJSON(hf, `
{"params": [
null
]}
`)
fmt.Println(responseBody)
//Output:
//{"results":[{"error":"error Felix","value":{}}]}
//
//{"results":[{"error":"error ","value":{}}]}
}
// ### 10) Config ErrHandler
func ExampleToHandlerFunc_10ErrHandler() {
var confidentialErr = fmt.Errorf("Internal error, contains confidential information, should not exposed")
var errMapping = map[error]error{
confidentialErr: errors.New("system error"),
}
cfg := &jsonhandlerfunc.Config{
ErrHandler: func(oldErr error) (newErr error) {
return errMapping[oldErr]
},
}
var helloworld = func(name string, gender int) (r string, err error) {
err = confidentialErr
return
}
hf := cfg.ToHandlerFunc(helloworld)
responseBody := httpPostJSON(hf, `
{"params": [
"Gates",
1
]}
`)
fmt.Println(responseBody)
//Output:
// {"results":["",{"error":"system error","value":{}}]}
}
func httpPostJSON(hf http.HandlerFunc, req string) (r string) {
r, _ = httpPostJSONReturnCode(hf, req)
return
}
func httpPostJSONReturnCode(hf http.HandlerFunc, req string) (r string, code int) {
ts := httptest.NewServer(hf)
defer ts.Close()
res, err := http.Post(ts.URL, "application/json", strings.NewReader(req))
if err != nil {
log.Fatal(err)
}
code = res.StatusCode
b, _ := ioutil.ReadAll(res.Body)
res.Body.Close()
r = string(b)
return
}