-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
test.js
242 lines (197 loc) · 4.74 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
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
'use strict'
const Fastify = require('fastify')
const Tickets = require('.')
const JWT = require('fastify-jwt')
const MongoDB = require('fastify-mongodb')
const clean = require('mongo-clean')
const { MongoClient } = require('mongodb')
const { beforeEach, tearDown, test } = require('tap')
const url = 'mongodb://localhost:27017'
const database = 'tests'
let client
beforeEach(async function () {
if (!client) {
client = await MongoClient.connect(url, {
w: 1,
useNewUrlParser: true
})
}
await clean(client.db(database))
})
tearDown(async function () {
if (client) {
await client.close()
client = null
}
})
// automatically build and tear down our instance
function build (t) {
const app = Fastify()
app.register(JWT, {
secret: 'averyverylongsecret'
})
app.register(MongoDB, {
client,
database
})
// we wrap with fastify-plugin to access jwt signing
app.register(Tickets)
// tear down our app after we are done
t.tearDown(app.close.bind(app))
return app
}
async function createUser (t, app, { username }) {
// we await for ready() so that app.jwt is there
await app.ready()
return app.jwt.sign({ username })
}
function testWithLogin (name, fn) {
test(name, async (t) => {
const app = build(t)
const token = await createUser(t, app, {
username: 'matteo'
})
function inject (opts) {
opts = opts || {}
opts.headers = opts.headers || {}
opts.headers.authorization = `Bearer ${token}`
return app.inject(opts)
}
return fn(t, inject)
})
}
test('cannot create a ticket without a login', async (t) => {
const app = build(t)
const res = await app.inject({
method: 'POST',
url: '/',
body: {
title: 'A support ticket',
body: 'this is a long body'
}
})
t.equal(res.statusCode, 401)
})
test('cannot get all tickets without a login', async (t) => {
const app = build(t)
const res = await app.inject({
method: 'GET',
url: '/'
})
t.equal(res.statusCode, 401)
})
testWithLogin('create and get ticket', async (t, inject) => {
const res1 = await inject({
method: 'POST',
url: '/',
body: {
title: 'A support ticket',
body: 'this is a long body'
}
})
t.equal(res1.statusCode, 201) // Created
const body1 = JSON.parse(res1.body)
t.ok(body1._id)
const url = `/${body1._id}`
t.equal(res1.headers.location, url)
const res2 = await inject({
method: 'GET',
url
})
t.equal(res2.statusCode, 200)
t.deepEqual(JSON.parse(res2.body), {
_id: body1._id,
title: 'A support ticket',
body: 'this is a long body'
})
})
test('tickets are user specific', async (t) => {
const app = build(t)
const token1 = await createUser(t, app, {
username: 'matteo',
password: 'matteo'
})
const token2 = await createUser(t, app, {
username: 'marco',
password: 'marco'
})
const post1 = await app.inject({
method: 'POST',
url: '/',
headers: {
authorization: `Bearer ${token1}`
},
body: {
title: 'AAA',
body: 'BBB'
}
})
// we are asking to access the created ticket
// with the other user
const get1 = await app.inject({
method: 'GET',
url: post1.headers.location,
headers: {
authorization: `Bearer ${token2}`
}
})
t.equal(get1.statusCode, 404)
})
testWithLogin('create and get all', async (t, inject) => {
const res1 = await inject({
method: 'POST',
url: '/',
body: {
title: 'A support ticket',
body: 'this is a long body'
}
})
const res2 = await inject({
method: 'POST',
url: '/',
body: {
title: 'Another support ticket',
body: 'this is a long body'
}
})
const body1 = JSON.parse(res1.body)
const body2 = JSON.parse(res2.body)
const resAll = await inject({
method: 'GET',
url: '/'
})
t.equal(resAll.statusCode, 200)
t.deepEqual(JSON.parse(resAll.body), {
tickets: [{
_id: body2._id,
title: 'Another support ticket',
body: 'this is a long body'
}, {
_id: body1._id,
title: 'A support ticket',
body: 'this is a long body'
}]
})
})
testWithLogin('do not create a ticket without a title', async (t, inject) => {
const res1 = await inject({
method: 'POST',
url: '/',
body: {
body: 'this is a long body'
}
})
t.equal(res1.statusCode, 400)
t.equal(JSON.parse(res1.body).message, 'body should have required property \'title\'')
})
testWithLogin('do not create a ticket without a body', async (t, inject) => {
const res1 = await inject({
method: 'POST',
url: '/',
body: {
title: 'A support ticket'
}
})
t.equal(res1.statusCode, 400)
t.equal(JSON.parse(res1.body).message, 'body should have required property \'body\'')
})