-
Notifications
You must be signed in to change notification settings - Fork 15
/
lmdrouter_test.go
367 lines (328 loc) · 9.55 KB
/
lmdrouter_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
package lmdrouter
import (
"context"
"errors"
"fmt"
"net/http"
"strings"
"testing"
"time"
"github.com/aws/aws-lambda-go/events"
"github.com/jgroeneveld/trial/assert"
)
var log []string
func TestRouter(t *testing.T) {
lmd := NewRouter("/api", logger)
lmd.Route("GET", "/", listSomethings)
lmd.Route("POST", "/", postSomething, auth)
lmd.Route("GET", "/:id", getSomething)
lmd.Route("GET", "/:id/stuff", listStuff)
lmd.Route("GET", "/:id/stuff/:fake", listStuff)
t.Run("Routes created correctly", func(t *testing.T) {
t.Run("/", func(t *testing.T) {
route, ok := lmd.routes["/"]
assert.True(t, ok, "Route must be created")
if ok {
assert.Equal(t, `^/api$`, route.re.String(), "Regex must be correct")
assert.NotEqual(t, nil, route.methods["GET"], "GET method must exist")
assert.NotEqual(t, nil, route.methods["POST"], "POST method must exist")
}
})
t.Run("/:id", func(t *testing.T) {
route, ok := lmd.routes["/:id"]
assert.True(t, ok, "Route must be created")
if ok {
assert.Equal(t, `^/api/([^/]+)$`, route.re.String(), "Regex must be correct")
assert.NotEqual(t, nil, route.methods["GET"], "GET method must exist")
}
})
t.Run("/:id/stuff/:fake", func(t *testing.T) {
route, ok := lmd.routes["/:id/stuff/:fake"]
assert.True(t, ok, "Route must be created")
if ok {
assert.Equal(
t,
`^/api/([^/]+)/stuff/([^/]+)$`,
route.re.String(),
"Regex must be correct",
)
assert.DeepEqual(
t,
[]string{"id", "fake"},
route.paramNames,
"Param names must be correct",
)
}
})
})
t.Run("Requests matched correctly", func(t *testing.T) {
t.Run("POST /api", func(t *testing.T) {
req := events.APIGatewayProxyRequest{
HTTPMethod: "POST",
Path: "/api",
}
_, err := lmd.matchRequest(&req)
assert.Equal(t, nil, err, "Error must be nil")
})
t.Run("POST /api/", func(t *testing.T) {
// make sure trailing slashes are removed
req := events.APIGatewayProxyRequest{
HTTPMethod: "POST",
Path: "/api/",
}
_, err := lmd.matchRequest(&req)
assert.Equal(t, nil, err, "Error must be nil")
})
t.Run("DELETE /api", func(t *testing.T) {
req := events.APIGatewayProxyRequest{
HTTPMethod: "DELETE",
Path: "/api",
}
_, err := lmd.matchRequest(&req)
assert.NotEqual(t, nil, err, "Error must not be nil")
var httpErr HTTPError
ok := errors.As(err, &httpErr)
assert.True(t, ok, "Error must be an HTTP error")
assert.Equal(t, http.StatusMethodNotAllowed, httpErr.Code, "Error code must be 405")
})
t.Run("GET /api/fake-id", func(t *testing.T) {
req := events.APIGatewayProxyRequest{
HTTPMethod: "GET",
Path: "/api/fake-id",
}
_, err := lmd.matchRequest(&req)
assert.Equal(t, nil, err, "Error must be nil")
assert.Equal(t, "fake-id", req.PathParameters["id"], "ID must be correct")
})
t.Run("GET /api/fake-id/bla", func(t *testing.T) {
req := events.APIGatewayProxyRequest{
HTTPMethod: "GET",
Path: "/api/fake-id/bla",
}
_, err := lmd.matchRequest(&req)
assert.NotEqual(t, nil, err, "Error must not be nil")
var httpErr HTTPError
ok := errors.As(err, &httpErr)
assert.True(t, ok, "Error must be an HTTP error")
assert.Equal(t, http.StatusNotFound, httpErr.Code, "Error code must be 404")
})
t.Run("GET /api/fake-id/stuff/fakey-fake", func(t *testing.T) {
req := events.APIGatewayProxyRequest{
HTTPMethod: "GET",
Path: "/api/fake-id/stuff/fakey-fake",
}
_, err := lmd.matchRequest(&req)
assert.Equal(t, nil, err, "Error must be nil")
assert.Equal(t, "fake-id", req.PathParameters["id"], "'id' must be correct")
assert.Equal(t, "fakey-fake", req.PathParameters["fake"], "'fake' must be correct")
})
})
t.Run("Requests execute correctly", func(t *testing.T) {
t.Run("POST /api without auth", func(t *testing.T) {
req := events.APIGatewayProxyRequest{
HTTPMethod: "POST",
Path: "/api",
}
res, err := lmd.Handler(context.Background(), req)
assert.Equal(t, nil, err, "Error must not be nil")
assert.Equal(t, http.StatusUnauthorized, res.StatusCode, "Status code must be 401")
assert.True(t, len(log) > 0, "Log must have items")
assert.Equal(
t,
"[ERR] [POST /api] [401]",
log[len(log)-1],
"Last long line must be correct",
)
})
t.Run("POST /api with auth", func(t *testing.T) {
req := events.APIGatewayProxyRequest{
HTTPMethod: "POST",
Path: "/api",
Headers: map[string]string{
"Authorization": "Bearer fake-token",
},
}
res, err := lmd.Handler(context.Background(), req)
assert.Equal(t, nil, err, "Error must not be nil")
assert.Equal(t, http.StatusBadRequest, res.StatusCode, "Status code must be 400")
})
t.Run("GET /api", func(t *testing.T) {
req := events.APIGatewayProxyRequest{
HTTPMethod: "GET",
Path: "/api",
}
res, err := lmd.Handler(context.Background(), req)
assert.Equal(t, nil, err, "Error must not be nil")
assert.Equal(t, http.StatusOK, res.StatusCode, "Status code must be 200")
assert.True(t, len(log) > 0, "Log must have items")
assert.Equal(
t,
"[INF] [GET /api] [200]",
log[len(log)-1],
"Last long line must be correct",
)
})
})
t.Run("Overlapping routes", func(t *testing.T) {
router := NewRouter("")
router.Route(
"GET",
"/foo/:id",
func(_ context.Context, _ events.APIGatewayProxyRequest) (res events.APIGatewayProxyResponse, err error) {
res.Body = "/foo/:id"
return res, nil
},
)
router.Route(
"POST",
"/foo/bar",
func(_ context.Context, _ events.APIGatewayProxyRequest) (res events.APIGatewayProxyResponse, err error) {
res.Body = "/foo/bar"
return res, nil
},
)
// call POST /foo/bar in a loop. We do this because the router iterates
// over a map to match routes, which is non-deterministic, meaning
// sometimes we may match the route and sometimes not
for i := 1; i <= 10; i++ {
res, _ := router.Handler(context.Background(), events.APIGatewayProxyRequest{
HTTPMethod: "POST",
Path: "/foo/bar",
})
assert.Equal(t, "/foo/bar", res.Body, "request must match /foo/bar route")
}
res, _ := router.Handler(context.Background(), events.APIGatewayProxyRequest{
HTTPMethod: "DELETE",
Path: "/foo/bar",
})
assert.Equal(t, http.StatusMethodNotAllowed, res.StatusCode, "Status code must be 405")
res, _ = router.Handler(context.Background(), events.APIGatewayProxyRequest{
HTTPMethod: "GET",
Path: "/foo/bar2",
})
assert.Equal(t, "/foo/:id", res.Body, "Body must match")
})
}
func listSomethings(ctx context.Context, req events.APIGatewayProxyRequest) (
res events.APIGatewayProxyResponse,
err error,
) {
// parse input
var input mockListRequest
err = UnmarshalRequest(req, false, &input)
if err != nil {
return HandleError(err)
}
now := time.Now()
then := now.Add(-time.Hour * 32)
output := []mockItem{
{ID: "one", Name: "First Item", Date: now},
{ID: "two", Name: "2nd Item", Date: then},
{ID: "three", Name: "Third Item", Date: then},
}
return MarshalResponse(http.StatusOK, nil, output)
}
func postSomething(ctx context.Context, req events.APIGatewayProxyRequest) (
res events.APIGatewayProxyResponse,
err error,
) {
var input mockPostRequest
err = UnmarshalRequest(req, true, &input)
if err != nil {
return HandleError(err)
}
output := map[string]string{
"id": "bla",
"url": "https://service.com/api/bla",
}
return MarshalResponse(http.StatusAccepted, map[string]string{
"Location": output["url"],
}, output)
}
func getSomething(ctx context.Context, req events.APIGatewayProxyRequest) (
res events.APIGatewayProxyResponse,
err error,
) {
// parse input
var input mockGetRequest
err = UnmarshalRequest(req, false, &input)
if err != nil {
return HandleError(err)
}
output := mockItem{
ID: input.ID,
Name: "Fake Name",
Date: time.Now(),
}
return MarshalResponse(http.StatusOK, nil, output)
}
func listStuff(ctx context.Context, req events.APIGatewayProxyRequest) (
res events.APIGatewayProxyResponse,
err error,
) {
// parse input
var input mockListRequest
err = UnmarshalRequest(req, false, &input)
if err != nil {
return HandleError(err)
}
output := make([]mockItem, len(input.Terms))
for i, term := range input.Terms {
output[i] = mockItem{
ID: input.ID,
Name: fmt.Sprintf("%s in %s", term, input.Language),
}
}
return MarshalResponse(http.StatusOK, nil, output)
}
func logger(next Handler) Handler {
return func(ctx context.Context, req events.APIGatewayProxyRequest) (
res events.APIGatewayProxyResponse,
err error,
) {
// [LEVEL] [METHOD PATH] [CODE] EXTRA
format := "[%s] [%s %s] [%d]%s"
level := "INF"
var code int
var extra string
res, err = next(ctx, req)
if err != nil {
level = "ERR"
code = http.StatusInternalServerError
extra = " " + err.Error()
} else {
code = res.StatusCode
if code >= 400 {
level = "ERR"
}
}
log = append(log, fmt.Sprintf(
format,
level,
req.HTTPMethod,
req.Path,
code,
extra,
))
return res, err
}
}
func auth(next Handler) Handler {
return func(ctx context.Context, req events.APIGatewayProxyRequest) (
res events.APIGatewayProxyResponse,
err error,
) {
auth := req.Headers["Authorization"]
if auth != "" && strings.HasPrefix(auth, "Bearer ") {
token := strings.TrimPrefix(auth, "Bearer ")
if token == "fake-token" {
return next(ctx, req)
}
}
return MarshalResponse(
http.StatusUnauthorized,
map[string]string{"WWW-Authenticate": "Bearer"},
HTTPError{http.StatusUnauthorized, "Unauthorized"},
)
}
}