This repository was archived by the owner on Jan 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathuser.test.js
287 lines (255 loc) · 9.25 KB
/
user.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
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
const COUCH_URL = 'http://admin:admin@localhost:5984'
const ts = new Date().getTime()
const DB1 = 'usertest_users' + ts
const DB2 = 'usertest_main' + ts
const Nano = require('nano')
const nano = Nano(COUCH_URL)
// the code we're testing
process.env.COUCH_URL = COUCH_URL
process.env.COUCH_USERS_DATABASE = DB1
process.env.COUCH_CHOIRLESS_DATABASE = DB2
const postUser = require('./postUser.js')
const postUserLogin = require('./postUserLogin.js')
const getUser = require('./getUser.js')
const getUserByEmail = require('./getUserByEmail.js')
// test users
let rita, sue, bob
beforeAll(async () => {
await nano.db.create(DB1)
await nano.db.create(DB2, { partitioned: true })
const db1 = nano.db.use(DB1)
await db1.createIndex({ index: { fields: ['email'] }, name: 'byEmail' })
})
afterAll(async () => {
await nano.db.destroy(DB1)
await nano.db.destroy(DB2)
})
test('postUserLogin - missing parameters #1', async () => {
const obj = {
name: 'Frank',
email: '[email protected]'
}
const response = await postUser(obj)
expect(response.statusCode).toBe(400)
expect(response.body.ok).toBe(false)
})
test('postUserLogin - missing parameters #2', async () => {
const obj = {
name: 'Frank',
password: 'pies'
}
const response = await postUser(obj)
expect(response.statusCode).toBe(400)
expect(response.body.ok).toBe(false)
})
test('postUserLogin - missing parameters #3', async () => {
const obj = {
email: '[email protected]',
password: 'pies'
}
const response = await postUser(obj)
expect(response.statusCode).toBe(400)
expect(response.body.ok).toBe(false)
})
test('postUserLogin - invalid userType', async () => {
const obj = {
name: 'Frank',
email: '[email protected]',
password: 'pies',
userType: 'superuser'
}
const response = await postUser(obj)
expect(response.statusCode).toBe(400)
expect(response.body.ok).toBe(false)
})
test('postUser - create user', async () => {
let obj = {
name: 'Bob',
email: '[email protected]',
password: 'sausages'
}
let response = await postUser(obj)
expect(response.statusCode).toBe(200)
expect(response.body.ok).toBe(true)
bob = response.body.userId
obj = {
name: 'Sue',
email: '[email protected]',
password: 'cakes'
}
response = await postUser(obj)
expect(response.statusCode).toBe(200)
expect(response.body.ok).toBe(true)
sue = response.body.userId
obj = {
name: 'Rita',
email: '[email protected]',
password: 'rabbits',
userType: 'admin'
}
response = await postUser(obj)
expect(response.statusCode).toBe(200)
rita = response.body.userId
})
test('getUser - fetch user', async () => {
let response = await getUser({ userId: bob })
expect(response.statusCode).toBe(200)
expect(response.body.ok).toBe(true)
expect(response.body.user.userType).toBe('regular')
response = await getUser({ userId: sue })
expect(response.statusCode).toBe(200)
expect(response.body.ok).toBe(true)
expect(response.body.user.userType).toBe('regular')
response = await getUser({ userId: rita })
expect(response.statusCode).toBe(200)
expect(response.body.ok).toBe(true)
expect(response.body.user.userType).toBe('admin')
})
test('postUser - create user - duplicate check', async () => {
const obj = {
name: 'Mavis',
email: '[email protected]',
password: 'battenburg'
}
let response = await postUser(obj)
expect(response.statusCode).toBe(200)
expect(response.body.ok).toBe(true)
const obj2 = {
name: 'Brenda',
email: '[email protected]',
password: 'garibaldi'
}
response = await postUser(obj2)
expect(response.statusCode).toBe(409)
expect(response.body.ok).toBe(false)
})
test('getUser - fetch user - invalid user', async () => {
const response = await getUser({ userId: 'frank' })
expect(response.statusCode).toBe(404)
expect(response.body.ok).toBe(false)
})
test('getUser - fetch user - missing userId', async () => {
const response = await getUser({})
expect(response.statusCode).toBe(400)
expect(response.body.ok).toBe(false)
})
test('postUserLogin - login user', async () => {
const response = await postUserLogin({ email: '[email protected]', password: 'rabbits' })
expect(response.statusCode).toBe(200)
expect(response.body.ok).toBe(true)
expect(response.body.user.type).toBe('user')
expect(response.body.user.name).toBe('Rita')
expect(response.body.user.email).toBe('[email protected]')
expect(response.body.user.password).toBe(undefined)
expect(response.body.user.salt).toBe(undefined)
expect(response.body.user.verified).toBe(false)
})
test('postUserLogin - login user - invalid user', async () => {
const response = await postUserLogin({ email: '[email protected]', password: 'rabbits' })
expect(response.statusCode).toBe(403)
expect(response.body.ok).toBe(false)
})
test('postUserLogin - login user - wrong password', async () => {
const response = await postUserLogin({ email: '[email protected]', password: 'rabbitss' })
expect(response.statusCode).toBe(403)
expect(response.body.ok).toBe(false)
})
test('postUser - change name', async () => {
const response = await postUser({ userId: rita, name: 'Rita Smith' })
expect(response.statusCode).toBe(200)
expect(response.body.ok).toBe(true)
})
test('postUser - change email', async () => {
const response = await postUser({ userId: rita, email: '[email protected]' })
expect(response.statusCode).toBe(200)
expect(response.body.ok).toBe(true)
})
test('postUser - change password', async () => {
const response = await postUser({ userId: rita, password: 'rabbits2' })
expect(response.statusCode).toBe(200)
expect(response.body.ok).toBe(true)
})
test('postUser - change userType', async () => {
const response = await postUser({ userId: rita, userType: 'regular' })
expect(response.statusCode).toBe(200)
expect(response.body.ok).toBe(true)
})
test('postUserLogin - login user after changes', async () => {
const response = await postUserLogin({ email: '[email protected]', password: 'rabbits2' })
expect(response.statusCode).toBe(200)
expect(response.body.ok).toBe(true)
expect(response.body.user.type).toBe('user')
expect(response.body.user.name).toBe('Rita Smith')
expect(response.body.user.email).toBe('[email protected]')
expect(response.body.user.userType).toBe('regular')
expect(response.body.user.password).toBe(undefined)
expect(response.body.user.salt).toBe(undefined)
expect(response.body.user.verified).toBe(false)
})
test('postUser - change verified', async () => {
const response = await postUser({ userId: rita, verified: true })
expect(response.statusCode).toBe(200)
expect(response.body.ok).toBe(true)
})
test('postUserLogin - login user after verification', async () => {
const response = await postUserLogin({ email: '[email protected]', password: 'rabbits2' })
expect(response.statusCode).toBe(200)
expect(response.body.ok).toBe(true)
expect(response.body.user.type).toBe('user')
expect(response.body.user.name).toBe('Rita Smith')
expect(response.body.user.email).toBe('[email protected]')
expect(response.body.user.userType).toBe('regular')
expect(response.body.user.password).toBe(undefined)
expect(response.body.user.salt).toBe(undefined)
expect(response.body.user.verified).toBe(true)
expect(response.body.user._id).toBe(undefined)
expect(response.body.user._rev).toBe(undefined)
})
test('getUser - get profile', async () => {
const response = await getUser({ userId: rita })
expect(response.statusCode).toBe(200)
expect(response.body.ok).toBe(true)
expect(response.body.user.type).toBe('user')
expect(response.body.user.name).toBe('Rita Smith')
expect(response.body.user.email).toBe('[email protected]')
expect(response.body.user.userType).toBe('regular')
expect(response.body.user.password).toBe(undefined)
expect(response.body.user.salt).toBe(undefined)
expect(response.body.user.verified).toBe(true)
expect(response.body.user._id).toBe(undefined)
expect(response.body.user._rev).toBe(undefined)
})
test('getUser - get profile - invalid user', async () => {
const response = await getUser({ userId: 'frank' })
expect(response.statusCode).toBe(404)
expect(response.body.ok).toBe(false)
})
test('postUser - change email - duplicate user check', async () => {
const response = await postUser({ userId: rita, email: '[email protected]' })
expect(response.statusCode).toBe(409)
expect(response.body.ok).toBe(false)
})
test('getUserByEmail - get profile', async () => {
const response = await getUserByEmail({ email: '[email protected]' })
expect(response.statusCode).toBe(200)
expect(response.body.ok).toBe(true)
expect(response.body.user.type).toBe('user')
expect(response.body.user.name).toBe('Rita Smith')
expect(response.body.user.email).toBe('[email protected]')
expect(response.body.user.userType).toBe('regular')
expect(response.body.user.password).toBe(undefined)
expect(response.body.user.salt).toBe(undefined)
expect(response.body.user.verified).toBe(true)
expect(response.body.user._id).toBe(undefined)
expect(response.body.user._rev).toBe(undefined)
})
test('getUserByEmail - missing email', async () => {
const response = await getUserByEmail({ })
expect(response.statusCode).toBe(400)
expect(response.body.ok).toBe(false)
})
test('getUserByEmail - invalid email', async () => {
const response = await getUserByEmail({ email: '[email protected]' })
expect(response.statusCode).toBe(404)
expect(response.body.ok).toBe(false)
})