-
Notifications
You must be signed in to change notification settings - Fork 0
/
http.spec.js
79 lines (69 loc) · 2.52 KB
/
http.spec.js
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
import test from 'ava'
import { unauthorized } from '@hapi/boom'
import { httpHandler, httpJsonHandler, readJson } from '../../index.js'
test('httpHandler: invoke', async (t) => {
const event = await readJson('fixtures', 'event', 'api-gateway-proxy.json')
event.reqId = 'mock-req-id'
const createHandler = httpHandler({ createProcessor })
const handler = createHandler({}, t)
const data = await handler(event)
t.snapshot(data, 'handler')
})
test('httpHandler: handle error', async (t) => {
const event = await readJson('fixtures', 'event', 'api-gateway-proxy.json')
event.reqId = 'mock-req-id'
const createHandler = httpHandler({
createProcessor: createProcessorWithError
})
const handler = createHandler({}, t)
const data = await handler(event)
t.snapshot(data, 'handler')
})
test('httpHandler: handle boom error', async (t) => {
const event = await readJson('fixtures', 'event', 'api-gateway-proxy.json')
event.reqId = 'mock-req-id'
const createHandler = httpHandler({
createProcessor: createProcessorWithBoomError
})
const handler = createHandler({}, t)
const data = await handler(event)
t.snapshot(data, 'handler')
})
test('httpJsonHandler: invoke', async (t) => {
const event = await readJson('fixtures', 'event', 'api-gateway-proxy.json')
event.reqId = 'mock-req-id'
event.body = '{"a":1}'
const createHandler = httpJsonHandler({ createProcessor })
const handler = createHandler({}, t)
const data = await handler(event)
t.snapshot(data, 'handler')
})
test('httpJsonHandler: handle error', async (t) => {
const event = await readJson('fixtures', 'event', 'api-gateway-proxy.json')
event.reqId = 'mock-req-id'
event.body = '{"a":1}'
const createHandler = httpHandler({
createProcessor: createProcessorWithError
})
const handler = createHandler({}, t)
const data = await handler(event)
t.snapshot(data, 'handler')
})
test('httpJsonHandler: handle boom error', async (t) => {
const event = await readJson('fixtures', 'event', 'api-gateway-proxy.json')
event.reqId = 'mock-req-id'
event.body = '{"a":1}'
const createHandler = httpJsonHandler({
createProcessor: createProcessorWithBoomError
})
const handler = createHandler({}, t)
const data = await handler(event)
t.snapshot(data, 'handler')
})
const createProcessor = () => async (event, ctx) => ({ event, ctx })
const createProcessorWithError = () => async (event, ctx) => {
throw new Error('Mock processor error')
}
const createProcessorWithBoomError = () => async (event, ctx) => {
throw unauthorized()
}