-
Notifications
You must be signed in to change notification settings - Fork 5
/
handler_test.go
288 lines (265 loc) · 7.52 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
package don_test
import (
"context"
"errors"
"net/http"
"strings"
"testing"
"github.com/abemedia/go-don"
_ "github.com/abemedia/go-don/encoding/json"
_ "github.com/abemedia/go-don/encoding/text"
"github.com/abemedia/go-don/pkg/httptest"
"github.com/abemedia/httprouter"
"github.com/google/go-cmp/cmp"
"github.com/valyala/fasthttp"
)
func TestHandlerRequest(t *testing.T) {
type request struct {
Path string `path:"path"`
Header string `header:"Header"`
Query string `query:"query"`
JSON string `json:"json"`
}
var got request
want := request{
Path: "path",
Header: "header",
Query: "query",
JSON: "json",
}
api := don.New(&don.Config{DefaultEncoding: "application/json"})
api.Post("/:path", don.H(func(ctx context.Context, req request) (any, error) {
got = req
return nil, nil
}))
api.RequestHandler()(httptest.NewRequest(
fasthttp.MethodPost,
"/path?query=query",
`{"json":"json"}`,
map[string]string{"header": "header"},
))
if diff := cmp.Diff(want, got); diff != "" {
t.Error(diff)
}
}
func TestHandlerResponse(t *testing.T) {
type request struct {
url string
body string
header map[string]string
}
type response struct {
Code int
Body string
Header map[string]string
}
tests := []struct {
message string
want response
config *don.Config
route string
handler httprouter.Handle
request request
}{
{
message: "should return no content",
want: response{
Code: fasthttp.StatusNoContent,
Body: "",
Header: map[string]string{
"Content-Type": "text/plain; charset=utf-8",
},
},
handler: don.H(func(ctx context.Context, req any) (any, error) {
return nil, nil
}),
},
{
message: "should return null",
want: response{
Code: fasthttp.StatusOK,
Body: "null",
Header: map[string]string{
"Content-Type": "application/json; charset=utf-8",
},
},
config: &don.Config{DefaultEncoding: "application/json", DisableNoContent: true},
handler: don.H(func(ctx context.Context, req any) (any, error) {
return nil, nil
}),
},
{
message: "should set response headers",
want: response{
Code: fasthttp.StatusOK,
Header: map[string]string{
"Content-Type": "text/plain; charset=utf-8",
"Foo": "bar",
},
},
handler: don.H(func(ctx context.Context, req any) (any, error) {
return &headerer{}, nil
}),
},
{
message: "should return error on unprocessable request",
want: response{
Code: fasthttp.StatusUnsupportedMediaType,
Body: "Unsupported Media Type",
Header: map[string]string{"Content-Type": "text/plain; charset=utf-8"},
},
handler: don.H(func(ctx context.Context, req struct{ Hello string }) (any, error) {
return nil, nil
}),
request: request{body: `{"foo":"bar"}`},
},
{
message: "should return error on unacceptable",
want: response{
Code: fasthttp.StatusNotAcceptable,
Body: "Not Acceptable",
Header: map[string]string{"Content-Type": "text/plain; charset=utf-8"},
},
handler: don.H(func(ctx context.Context, req any) ([]string, error) {
return []string{"foo", "bar"}, nil
}),
request: request{header: map[string]string{"Accept": "text/plain; charset=utf-8"}},
},
{
message: "should return error on unsupported accept",
want: response{
Code: fasthttp.StatusNotAcceptable,
Body: "Not Acceptable",
Header: map[string]string{"Content-Type": "text/plain; charset=utf-8"},
},
handler: don.H(func(ctx context.Context, req any) (any, error) {
return nil, nil
}),
request: request{header: map[string]string{"Accept": "application/msword"}},
},
{
message: "should return error on unsupported content type",
want: response{
Code: fasthttp.StatusUnsupportedMediaType,
Body: "Unsupported Media Type",
Header: map[string]string{"Content-Type": "text/plain; charset=utf-8"},
},
handler: don.H(func(ctx context.Context, req any) (any, error) {
return nil, nil
}),
request: request{
body: `foo`,
header: map[string]string{"Content-Type": "application/msword"},
},
},
{
message: "should return error on invalid query",
want: response{
Code: fasthttp.StatusBadRequest,
Body: "strconv.ParseInt: parsing \"foo\": invalid syntax",
Header: map[string]string{"Content-Type": "text/plain; charset=utf-8"},
},
handler: don.H(func(ctx context.Context, req struct {
Test int `query:"test"`
},
) (any, error) {
return req, nil
}),
request: request{url: "/?test=foo"},
},
{
message: "should return error on invalid header",
want: response{
Code: fasthttp.StatusBadRequest,
Body: "strconv.ParseInt: parsing \"foo\": invalid syntax",
Header: map[string]string{"Content-Type": "text/plain; charset=utf-8"},
},
handler: don.H(func(ctx context.Context, req struct {
Test int `header:"Test"`
},
) (any, error) {
return req, nil
}),
request: request{header: map[string]string{"Test": "foo"}},
},
{
message: "should return error on invalid path element",
want: response{
Code: fasthttp.StatusNotFound,
Body: "Not Found",
Header: map[string]string{"Content-Type": "text/plain; charset=utf-8"},
},
handler: don.H(func(ctx context.Context, req struct {
Test int `path:"test"`
},
) (any, error) {
return req, nil
}),
route: "/:test",
request: request{url: "/foo"},
},
{
message: "should return error on invalid body",
want: response{
Code: fasthttp.StatusBadRequest,
Body: "strconv.Atoi: parsing \"foo\": invalid syntax",
Header: map[string]string{"Content-Type": "text/plain; charset=utf-8"},
},
handler: don.H(func(ctx context.Context, req int) (any, error) {
return req, nil
}),
request: request{body: "foo"},
},
{
message: "should return internal server error",
want: response{
Code: fasthttp.StatusInternalServerError,
Body: "test",
Header: map[string]string{"Content-Type": "text/plain; charset=utf-8"},
},
handler: don.H(func(ctx context.Context, req any) (any, error) {
return nil, errors.New("test")
}),
},
}
for _, test := range tests {
ctx := httptest.NewRequest(fasthttp.MethodPost, test.request.url, test.request.body, test.request.header)
api := don.New(test.config)
api.Post("/"+strings.TrimPrefix(test.route, "/"), test.handler)
api.RequestHandler()(ctx)
res := response{ctx.Response.StatusCode(), string(ctx.Response.Body()), map[string]string{}}
ctx.Response.Header.VisitAll(func(key, value []byte) { res.Header[string(key)] = string(value) })
if diff := cmp.Diff(test.want, res); diff != "" {
t.Errorf("%s:\n%s", test.message, diff)
}
}
}
type headerer struct{}
func (h *headerer) String() string {
return ""
}
func (h *headerer) Header() http.Header {
return http.Header{"Foo": []string{"bar"}}
}
func BenchmarkHandler(b *testing.B) {
type request struct {
Path string `path:"path"`
Header string `header:"Header"`
Query string `query:"query"`
}
header := map[string]string{"Header": "header", "Accept": "text/plain"}
ctx := httptest.NewRequest("POST", "/path?query=query", "", header)
p := httprouter.Params{{Key: "path", Value: "path"}}
b.Run("Request", func(b *testing.B) {
h := don.H(func(ctx context.Context, req request) (any, error) { return nil, nil })
for i := 0; i < b.N; i++ {
h(ctx, p)
}
})
b.Run("RequestPointer", func(b *testing.B) {
h := don.H(func(ctx context.Context, req *request) (any, error) { return nil, nil })
for i := 0; i < b.N; i++ {
h(ctx, p)
}
})
}