generated from maragudk/template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
httph_test.go
442 lines (341 loc) · 12.2 KB
/
httph_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
433
434
435
436
437
438
439
440
441
442
package httph_test
import (
_ "embed"
"errors"
"fmt"
"io"
"net/http"
"net/http/httptest"
"net/url"
"strings"
"testing"
"github.com/maragudk/is"
"maragu.dev/httph"
)
type validatedFormReq struct{}
func (r validatedFormReq) Validate() error {
return errors.New("invalid")
}
func TestFormHandler(t *testing.T) {
t.Run("parses a form into a struct", func(t *testing.T) {
type formReq struct {
Name string
Age int
Accept bool
Hobbies []string
}
h := httph.FormHandler(func(w http.ResponseWriter, r *http.Request, req formReq) {
is.Equal(t, "Me", req.Name)
is.Equal(t, 20, req.Age)
is.Equal(t, true, req.Accept)
is.Equal(t, 2, len(req.Hobbies))
is.Equal(t, "Hats", req.Hobbies[0])
is.Equal(t, "Goats", req.Hobbies[1])
http.Redirect(w, r, "/", http.StatusFound)
})
vs := url.Values{}
vs.Set("name", "Me")
vs.Set("age", "20")
vs.Set("accept", "true")
vs.Add("hobbies", "Hats")
vs.Add("hobbies", "Goats")
req := createFormRequest(vs)
res := httptest.NewRecorder()
h.ServeHTTP(res, req)
is.Equal(t, http.StatusFound, res.Result().StatusCode)
})
t.Run("returns bad request on bad input values", func(t *testing.T) {
type formReq struct {
Age int
}
h := httph.FormHandler(func(w http.ResponseWriter, r *http.Request, req formReq) {})
vs := url.Values{}
vs.Set("age", "not a number")
req := createFormRequest(vs)
res := httptest.NewRecorder()
h.ServeHTTP(res, req)
is.Equal(t, http.StatusBadRequest, res.Result().StatusCode)
is.True(t, strings.Contains(readBody(t, res), "cannot parse 'Age' as int"))
})
t.Run("returns bad request when Validate() returns error", func(t *testing.T) {
h := httph.FormHandler(func(w http.ResponseWriter, r *http.Request, req validatedFormReq) {})
vs := url.Values{}
vs.Set("name", "")
req := createFormRequest(vs)
res := httptest.NewRecorder()
h.ServeHTTP(res, req)
is.Equal(t, http.StatusBadRequest, res.Result().StatusCode)
is.Equal(t, "invalid form: invalid", readBody(t, res))
})
}
func ExampleFormHandler() {
type Req struct {
Name string
Age int
}
h := httph.FormHandler(func(w http.ResponseWriter, r *http.Request, req Req) {
_, _ = fmt.Fprintf(w, "Hello %v, you are %v years old", req.Name, req.Age)
})
w := httptest.NewRecorder()
vs := url.Values{
"name": {"World"},
"age": {"20"},
}
r := httptest.NewRequest(http.MethodPost, "/", strings.NewReader(vs.Encode()))
r.Header.Set("Content-Type", "application/x-www-form-urlencoded")
h.ServeHTTP(w, r)
body, _ := io.ReadAll(w.Result().Body)
fmt.Println(string(body))
//Output: Hello World, you are 20 years old
}
func createFormRequest(vs url.Values) *http.Request {
req := httptest.NewRequest(http.MethodPost, "/", strings.NewReader(vs.Encode()))
req.Header.Set("Content-Type", "application/x-www-form-urlencoded")
return req
}
func readBody(t *testing.T, r *httptest.ResponseRecorder) string {
t.Helper()
d, err := io.ReadAll(r.Result().Body)
if err != nil {
t.Fatal(err)
}
return strings.TrimSpace(string(d))
}
type httpError struct {
code int
}
func (h *httpError) Error() string {
return http.StatusText(h.code)
}
func (h *httpError) StatusCode() int {
return h.code
}
type jsonRes struct {
Message string
}
func (j jsonRes) StatusCode() int {
return http.StatusAccepted
}
type tinyJSONReq struct {
Name string
}
func (t tinyJSONReq) MaxSizeBytes() int64 {
return 1
}
func TestJSONHandler(t *testing.T) {
t.Run("encodes response body to JSON", func(t *testing.T) {
type jsonRes struct {
Message string `json:"message"`
}
h := httph.JSONHandler(func(w http.ResponseWriter, r *http.Request, _ any) (jsonRes, error) {
return jsonRes{Message: "Yo"}, nil
})
req := httptest.NewRequest(http.MethodGet, "/", nil)
res := httptest.NewRecorder()
h.ServeHTTP(res, req)
is.Equal(t, http.StatusOK, res.Result().StatusCode)
is.Equal(t, `{"message":"Yo"}`, readBody(t, res))
})
t.Run("parses request body from JSON", func(t *testing.T) {
type jsonReq struct {
Name string
}
h := httph.JSONHandler(func(w http.ResponseWriter, r *http.Request, req jsonReq) (any, error) {
is.Equal(t, "Me", req.Name)
return nil, nil
})
req := httptest.NewRequest(http.MethodPost, "/", strings.NewReader(`{"Name":"Me"}`))
req.Header.Set("Content-Type", "application/json")
res := httptest.NewRecorder()
h.ServeHTTP(res, req)
is.Equal(t, http.StatusOK, res.Result().StatusCode)
})
t.Run("returns bad request if request body is not valid JSON", func(t *testing.T) {
type jsonReq struct {
Name string
}
h := httph.JSONHandler(func(w http.ResponseWriter, r *http.Request, req jsonReq) (any, error) {
return nil, nil
})
req := httptest.NewRequest(http.MethodPost, "/", strings.NewReader(`{`))
req.Header.Set("Content-Type", "application/json")
res := httptest.NewRecorder()
h.ServeHTTP(res, req)
is.Equal(t, http.StatusBadRequest, res.Result().StatusCode)
is.Equal(t, `{"Error":"error decoding request body as JSON: unexpected EOF"}`, readBody(t, res))
})
t.Run("returns error message if handler errors", func(t *testing.T) {
h := httph.JSONHandler(func(w http.ResponseWriter, r *http.Request, _ any) (any, error) {
return nil, errors.New("oh no")
})
req := httptest.NewRequest(http.MethodGet, "/", nil)
res := httptest.NewRecorder()
h.ServeHTTP(res, req)
is.Equal(t, http.StatusInternalServerError, res.Result().StatusCode)
is.Equal(t, `{"Error":"oh no"}`, readBody(t, res))
})
t.Run("returns error message with custom http status code if error satisfies statusCodeGiver", func(t *testing.T) {
h := httph.JSONHandler(func(w http.ResponseWriter, r *http.Request, _ any) (any, error) {
return nil, &httpError{http.StatusTeapot}
})
req := httptest.NewRequest(http.MethodGet, "/", nil)
res := httptest.NewRecorder()
h.ServeHTTP(res, req)
is.Equal(t, http.StatusTeapot, res.Result().StatusCode)
is.Equal(t, `{"Error":"I'm a teapot"}`, readBody(t, res))
})
t.Run("returns error message if response body cannot be encoded to JSON", func(t *testing.T) {
h := httph.JSONHandler(func(w http.ResponseWriter, r *http.Request, _ any) (any, error) {
return make(chan int), nil
})
req := httptest.NewRequest(http.MethodGet, "/", nil)
res := httptest.NewRecorder()
h.ServeHTTP(res, req)
is.Equal(t, http.StatusInternalServerError, res.Result().StatusCode)
is.Equal(t, `{"Error":"error encoding response body as JSON: json: unsupported type: chan int"}`, readBody(t, res))
})
t.Run("returns custom status code if response struct satisfies statusCodeGiver", func(t *testing.T) {
h := httph.JSONHandler(func(w http.ResponseWriter, r *http.Request, _ any) (jsonRes, error) {
return jsonRes{Message: "Yo"}, nil
})
req := httptest.NewRequest(http.MethodGet, "/", nil)
res := httptest.NewRecorder()
h.ServeHTTP(res, req)
is.Equal(t, http.StatusAccepted, res.Result().StatusCode)
is.Equal(t, `{"Message":"Yo"}`, readBody(t, res))
})
t.Run("returns bad request if request body is too large", func(t *testing.T) {
h := httph.JSONHandler(func(w http.ResponseWriter, r *http.Request, _ tinyJSONReq) (any, error) {
return nil, nil
})
req := httptest.NewRequest(http.MethodPost, "/", strings.NewReader(`{"Name":"Me"}`))
req.Header.Set("Content-Type", "application/json")
res := httptest.NewRecorder()
h.ServeHTTP(res, req)
is.Equal(t, http.StatusBadRequest, res.Result().StatusCode)
is.Equal(t, `{"Error":"error decoding request body as JSON: http: request body too large"}`, readBody(t, res))
})
}
func ExampleJSONHandler() {
type Req struct {
Name string
}
type Res struct {
Message string
}
h := httph.JSONHandler(func(w http.ResponseWriter, r *http.Request, req Req) (Res, error) {
return Res{Message: "Hello " + req.Name}, nil
})
w := httptest.NewRecorder()
h.ServeHTTP(w, httptest.NewRequest(http.MethodPost, "/", strings.NewReader(`{"Name":"World"}`)))
body, _ := io.ReadAll(w.Result().Body)
fmt.Println(string(body))
//Output: {"Message":"Hello World"}
}
func TestNoClickjacking(t *testing.T) {
t.Run("adds X-Frame-Options and X-XSS-Protection headers", func(t *testing.T) {
req := httptest.NewRequest(http.MethodGet, "/", nil)
res := httptest.NewRecorder()
h := httph.NoClickjacking(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {}))
h.ServeHTTP(res, req)
is.Equal(t, http.StatusOK, res.Result().StatusCode)
is.Equal(t, "deny", res.Result().Header.Get("X-Frame-Options"))
is.Equal(t, "1; mode=block", res.Result().Header.Get("X-XSS-Protection"))
})
}
func TestContentSecurityPolicy(t *testing.T) {
t.Run("restrict everything to 'none' except images, styles, scripts, and fonts", func(t *testing.T) {
req := httptest.NewRequest(http.MethodGet, "/", nil)
res := httptest.NewRecorder()
h := httph.ContentSecurityPolicy(nil)(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {}))
h.ServeHTTP(res, req)
is.Equal(t, http.StatusOK, res.Result().StatusCode)
is.Equal(t, "default-src 'none'; font-src 'self'; img-src 'self'; script-src 'self'; style-src 'self'",
res.Result().Header.Get("Content-Security-Policy"))
})
t.Run("can set directives with options function", func(t *testing.T) {
req := httptest.NewRequest(http.MethodGet, "/", nil)
res := httptest.NewRecorder()
optsFunc := func(opts *httph.ContentSecurityPolicyOptions) {
opts.DefaultSrc = "https:"
opts.FontSrc = ""
opts.ScriptSrc = ""
}
h := httph.ContentSecurityPolicy(optsFunc)(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {}))
h.ServeHTTP(res, req)
is.Equal(t, http.StatusOK, res.Result().StatusCode)
is.Equal(t, "default-src https:; img-src 'self'; style-src 'self'",
res.Result().Header.Get("Content-Security-Policy"))
})
}
//go:embed testdata/goget.html
var goGetHTML string
func TestGoGet(t *testing.T) {
t.Run("serves HTML for Go modules", func(t *testing.T) {
req := httptest.NewRequest(http.MethodGet, "/httph?go-get=1", nil)
res := httptest.NewRecorder()
h := httph.GoGet(httph.GoGetOptions{
Domain: "maragu.dev",
Modules: []string{"httph"},
URLPrefix: "https://github.com/maragudk",
})
called := false
next := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
called = true
})
h(next).ServeHTTP(res, req)
is.Equal(t, http.StatusOK, res.Result().StatusCode)
is.Equal(t, goGetHTML, res.Body.String())
is.True(t, !called)
})
t.Run("passes through non-module requests", func(t *testing.T) {
req := httptest.NewRequest(http.MethodGet, "/", nil)
res := httptest.NewRecorder()
h := httph.GoGet(httph.GoGetOptions{
Domain: "maragu.dev",
Modules: []string{"httph"},
URLPrefix: "https://github.com/maragudk",
})
called := false
next := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
called = true
})
h(next).ServeHTTP(res, req)
is.Equal(t, http.StatusOK, res.Result().StatusCode)
is.True(t, called)
})
t.Run("redirects valid modules to the URL prefix when no go-get parameter is supplied", func(t *testing.T) {
req := httptest.NewRequest(http.MethodGet, "/httph", nil)
res := httptest.NewRecorder()
h := httph.GoGet(httph.GoGetOptions{
Domain: "maragu.dev",
Modules: []string{"httph"},
URLPrefix: "https://github.com/maragudk",
})
called := false
next := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
called = true
})
h(next).ServeHTTP(res, req)
is.Equal(t, http.StatusPermanentRedirect, res.Result().StatusCode)
is.True(t, !called)
})
}
func TestVersionedAssets(t *testing.T) {
t.Run("removes version from asset path", func(t *testing.T) {
req := httptest.NewRequest(http.MethodGet, "/script.123456.js", nil)
res := httptest.NewRecorder()
h := httph.VersionedAssets(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {}))
h.ServeHTTP(res, req)
is.Equal(t, http.StatusOK, res.Result().StatusCode)
is.Equal(t, "/script.js", req.URL.Path)
})
t.Run("does not modify path without version", func(t *testing.T) {
req := httptest.NewRequest(http.MethodGet, "/script.js", nil)
res := httptest.NewRecorder()
h := httph.VersionedAssets(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {}))
h.ServeHTTP(res, req)
is.Equal(t, http.StatusOK, res.Result().StatusCode)
is.Equal(t, "/script.js", req.URL.Path)
})
}