-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.js
186 lines (161 loc) · 4.48 KB
/
test.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
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
require('babel-polyfill')
require('babel-register')
const micro = require('micro')
const test = require('ava')
const listen = require('test-listen')
const fetch = require('node-fetch')
const {route, ok, fail} = require('./index')
const os = require('os')
test('ping pong', async t => {
const service = micro(route({
'ping~': () => 'pong~'
}))
const url = await listen(service)
const res = await fetch(url, {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({cmd: 'ping~'})
})
const body = await res.json()
t.deepEqual(body, {
ok: true,
output: 'pong~'
})
})
test('basic route', async t => {
const service = micro(route({
'add': ({a, b}) => a + b,
'sub': async ({a, b}) => await Promise.resolve(a - b)
}))
const url = await listen(service)
{
const res = await fetch(url, {
method: 'POST',
headers: {'content-type': 'application/json'},
body: JSON.stringify({cmd: 'add', input: {a: 1, b: 2}})
})
const body = await res.json()
const sum = body.output
t.is(sum, 3)
}
{
const res = await fetch(url, {
method: 'POST',
headers: {'content-type': 'application/json'},
body: JSON.stringify({cmd: 'sub', input: {a: 1, b: 2}})
})
const body = await res.json()
const diff = body.output
t.is(diff, -1)
}
})
test('ok and fail', async t => {
const service = micro(route({
'ok': () => ok('yes', 'you win'),
'fail': () => fail('no', 'you lose')
}))
const url = await listen(service)
{
const res = await fetch(url, {
method: 'POST',
headers: {'content-type': 'application/json'},
body: JSON.stringify({cmd: 'ok'})
})
const body = await res.json()
t.deepEqual(body, {ok: true, code: 'yes', output: 'you win'})
}
{
const res = await fetch(url, {
method: 'POST',
headers: {'content-type': 'application/json'},
body: JSON.stringify({cmd: 'fail'})
})
const body = await res.json()
t.deepEqual(body, {ok: false, code: 'no', output: 'you lose'})
}
})
test('error handling', async t => {
const service = micro(route({
'failWithError': () => fail('fail-with-error', {details: 'why'}, new Error('fail with error')),
'throwError': () => {throw new Error('throw error')}
}, {
errorLogger: (err) => {/*do not show error in tests*/}
}))
const url = await listen(service)
{
const res = await fetch(url, {
method: 'POST',
headers: {'content-type': 'application/json'},
body: JSON.stringify({cmd: 'failWithError'})
})
const body = await res.json()
t.deepEqual(body, {
ok: false,
code: 'fail-with-error',
output: {details: 'why'},
error: {name: 'Error', message: 'fail with error'}
})
}
{
const res = await fetch(url, {
method: 'POST',
headers: {'content-type': 'application/json'},
body: JSON.stringify({cmd: 'throwError'})
})
const body = await res.json()
t.deepEqual(body, {
ok: false,
error: {name: 'Error', message: 'throw error'}
})
}
})
test('cmd pattern', async t => {
const service = micro(route({
'get/user?admin&by=id': ({id}) => ({name: 'Bob', id})
}))
const url = await listen(service)
{
const res = await fetch(url, {
method: 'POST',
headers: {'content-type': 'application/json'},
body: JSON.stringify({cmd: 'get/user?admin&by=id', input: {id: 1}})
})
const body = await res.json()
t.deepEqual(body, {ok: true, output: {id: 1, name: 'Bob'}})
}
{
const res = await fetch(url, {
method: 'POST',
headers: {'content-type': 'application/json'},
body: JSON.stringify({cmd: 'get/user?by=id&admin', input: {id: 2}})
})
const body = await res.json()
t.deepEqual(body, {ok: true, output: {id: 2, name: 'Bob'}})
}
})
test('not implemented', async t => {
const service = micro(route())
const url = await listen(service)
const res = await fetch(url, {
method: 'PUT',
body: {cmd: 'ping'}
})
t.is(res.status, 501)
})
test('unmatched cmd', async t => {
const service = micro(route())
const url = await listen(service)
{
const res = await fetch(url, {
method: 'POST',
headers: {'content-type': 'application/json'},
body: JSON.stringify({cmd: 'undefinedCmd', input: {hello: 'world'}})
})
const body = await res.json()
t.deepEqual(body, {
ok: false,
code: 'unmatched-cmd',
output: {cmd: 'undefinedCmd', input: {hello: 'world'}}
})
}
})