-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathauth.integration.tests.js
More file actions
637 lines (574 loc) · 19.8 KB
/
Copy pathauth.integration.tests.js
File metadata and controls
637 lines (574 loc) · 19.8 KB
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
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
/**
* Module dependencies.
*/
import request from 'supertest';
import path from 'path';
import _ from 'lodash';
import { jest } from '@jest/globals';
import { bootstrap } from '../../../lib/app.js';
import mongooseService from '../../../lib/services/mongoose.js';
import config from '../../../config/index.js';
/**
* Unit tests
*/
describe('Auth integration tests:', () => {
let UserService = null;
let agent;
let credentials;
let user;
let userEdited;
let _user;
let _userEdited;
// init
beforeAll(async () => {
try {
const init = await bootstrap();
UserService = (await import(path.resolve('./modules/users/services/users.service.js'))).default;
agent = request.agent(init.app);
} catch (err) {
console.log(err);
expect(err).toBeFalsy();
}
});
/**
* User routes tests
*/
describe('Registration', () => {
beforeEach(async () => {
// users credentials
credentials = [
{
email: 'auth@test.com',
password: 'W@os.jsI$Aw3$0m3',
},
{
email: 'auth2@test.com',
password: 'W@os.jsI$Aw3$0m3',
},
];
// users
_user = {
firstName: 'First',
lastName: 'Last',
email: credentials[0].email,
password: credentials[0].password,
provider: 'local',
};
_userEdited = _.clone(_user);
_userEdited.email = credentials[1].email;
_userEdited.password = credentials[1].password;
// add user
try {
const result = await agent.post('/api/auth/signup').send(_user).expect(200);
user = result.body.user;
} catch (err) {
console.log(err);
expect(err).toBeFalsy();
}
});
test('should reject signup when signup configuration is disabled', async () => {
// Init user edited
_userEdited.email = 'register_new_user_@test.com';
config.sign.up = false;
try {
const result = await agent.post('/api/auth/signup').send(_userEdited).expect(404);
expect(result.body.type).toBe('error');
expect(result.body.message).toBe('Signup error');
expect(result.body.description).toBe('Registration is currently deactivated');
} catch (err) {
console.log(err);
expect(err).toBeFalsy();
}
config.sign.up = true;
});
test('should reject registration when password is weak', async () => {
// Init user edited
_userEdited.email = 'register_new_user_@test.com';
_userEdited.password = 'azerty';
try {
const result = await agent.post('/api/auth/signup').send(_userEdited).expect(422);
expect(result.body.type).toBe('error');
expect(result.body.message).toBe('Schema validation error');
expect(result.body.description).toEqual('Password must have a strength of at least 3. Password length must be at least 8 characters long. ');
} catch (err) {
console.log(err);
expect(err).toBeFalsy();
}
});
test('should not expose sensitive data when registration fails', async () => {
// Init user edited
_userEdited.email = 'register_new_user_@test.com';
_userEdited.password = 'azerty';
try {
const result = await agent.post('/api/auth/signup').send(_userEdited).expect(422);
expect(result.body.type).toBe('error');
expect(result.body.message).toBe('Schema validation error');
expect(result.body.description).toEqual('Password must have a strength of at least 3. Password length must be at least 8 characters long. ');
expect(JSON.parse(result.body.error)._original.password).toBeUndefined();
} catch (err) {
console.log(err);
expect(err).toBeFalsy();
}
});
test('should register a new user successfully', async () => {
// Init user edited
_userEdited.email = 'register_new_user_@test.com';
try {
const result = await agent.post('/api/auth/signup').send(_userEdited).expect(200);
userEdited = result.body.user;
expect(result.body.user._id).toBe(result.body.user.id);
expect(result.body.user.email).toBe(_userEdited.email);
expect(result.body.user.provider).toBe('local');
expect(result.body.user.roles).toBeInstanceOf(Array);
expect(result.body.user.roles).toHaveLength(1);
expect(result.body.user.roles).toEqual(expect.arrayContaining(['user']));
} catch (err) {
console.log(err);
expect(err).toBeFalsy();
}
try {
await UserService.remove(userEdited);
} catch (err) {
console.log(err);
expect(err).toBeFalsy();
}
});
test('should reject registration when email is already in use', async () => {
// Init user edited
_userEdited.email = 'register_new_user_@test.com';
try {
const result = await agent.post('/api/auth/signup').send(_userEdited).expect(200);
userEdited = result.body.user;
expect(result.body.user.email).toBe(_userEdited.email);
expect(result.body.user.roles).toBeInstanceOf(Array);
expect(result.body.user.roles).toHaveLength(1);
expect(result.body.user.roles).toEqual(expect.arrayContaining(['user']));
} catch (err) {
console.log(err);
expect(err).toBeFalsy();
}
try {
const result = await agent.post('/api/auth/signup').send(_userEdited).expect(422);
expect(result.body.type).toBe('error');
expect(result.body.message).toEqual('Unprocessable Entity');
expect(result.body.description).toBe('Email already exists.');
} catch (err) {
expect(err).toBeFalsy();
}
try {
await UserService.remove(userEdited);
} catch (err) {
console.log(err);
expect(err).toBeFalsy();
}
});
test('should reject login when login configuration is disabled', async () => {
// Init user edited
_userEdited.email = 'register_new_user_@test.com';
config.sign.in = false;
try {
const result = await agent.post('/api/auth/signin').send(credentials[0]).expect(404);
expect(result.body.type).toBe('error');
expect(result.body.message).toBe('Signin error');
expect(result.body.description).toBe('Login is currently deactivated');
} catch (err) {
console.log(err);
expect(err).toBeFalsy();
}
config.sign.in = true;
});
test('should reject login when email is incorrect', async () => {
try {
const result = await agent
.post('/api/auth/signin')
.send({
email: 'test51@test.com',
password: 'W@os.jsI$Aw3$0m3',
})
.expect(401);
expect(result.error.text).toBe('Unauthorized');
} catch (err) {
console.log(err);
expect(err).toBeFalsy();
}
});
test('should login successfully with correct email', async () => {
try {
await agent.post('/api/auth/signin').send(credentials[0]).expect(200);
} catch (err) {
console.log(err);
expect(err).toBeFalsy();
}
});
test('should refresh token successfully', async () => {
try {
const signinResult = await agent.post('/api/auth/signin').send(credentials[0]).expect(200);
const oldExpiration = signinResult.body.tokenExpiresIn;
const refreshResult = await agent.get('/api/auth/token').expect(200);
const newExpiration = refreshResult.body.tokenExpiresIn;
expect(oldExpiration).not.toBe(newExpiration);
} catch (err) {
console.log(err);
expect(err).toBeFalsy();
}
});
test('should reject login with correct email but wrong password', async () => {
try {
const result = await agent
.post('/api/auth/signin')
.send({
email: credentials[0].email,
password: 'WrongPassword!123',
})
.expect(401);
expect(result.error.text).toBe('Unauthorized');
} catch (err) {
console.log(err);
expect(err).toBeFalsy();
}
});
test('forgot password request for non-existent email should return 400', async () => {
try {
const result = await agent
.post('/api/auth/forgot')
.send({
email: 'falseemail@gmail.com',
})
.expect(400);
expect(result.body.message).toBe('Bad Request');
expect(result.body.description).toBe('No account with that email has been found');
} catch (err) {
console.log(err);
expect(err).toBeFalsy();
}
});
test('forgot password request with empty email should return 422', async () => {
_userEdited.provider = 'facebook';
try {
const result = await agent.post('/api/auth/signup').send(_userEdited).expect(200);
userEdited = result.body.user;
} catch (err) {
console.log(err);
expect(err).toBeFalsy();
}
try {
const result = await agent
.post('/api/auth/forgot')
.send({
email: '',
})
.expect(422);
expect(result.body.message).toEqual('Unprocessable Entity');
expect(result.body.description).toBe('Mail field must not be blank');
} catch (err) {
console.log(err);
expect(err).toBeFalsy();
}
try {
await UserService.remove(userEdited);
} catch (err) {
console.log(err);
expect(err).toBeFalsy();
}
});
test('forgot password request for non-local provider should return 400', async () => {
_userEdited.provider = 'facebook';
try {
const result = await agent.post('/api/auth/signup').send(_userEdited).expect(200);
userEdited = result.body.user;
} catch (err) {
console.log(err);
expect(err).toBeFalsy();
}
try {
const result = await agent
.post('/api/auth/forgot')
.send({
email: userEdited.email,
})
.expect(400);
expect(result.body.message).toBe('Bad Request');
expect(result.body.description).toBe(`It seems like you signed up using your ${userEdited.provider} account`);
} catch (err) {
console.log(err);
expect(err).toBeFalsy();
}
try {
await UserService.remove(userEdited);
} catch (err) {
console.log(err);
expect(err).toBeFalsy();
}
});
test('should initiate password reset process for valid email', async () => {
try {
const result = await agent
.post('/api/auth/forgot')
.send({
email: user.email,
})
.expect(400);
expect(result.body.message).toBe('Bad Request');
expect(result.body.description).toBe('Failure sending email');
} catch (err) {
console.log(err);
expect(err).toBeFalsy();
}
try {
const result = await UserService.get({
email: user.email,
});
expect(typeof result).toBe('object');
expect(result.resetPasswordToken).toBeDefined();
expect(result.resetPasswordExpires).toBeDefined();
} catch (err) {
console.log(err);
expect(err).toBeFalsy();
}
});
test('should allow password reset with valid reset token', async () => {
try {
const result = await agent
.post('/api/auth/forgot')
.send({
email: user.email,
})
.expect(400);
expect(result.body.message).toBe('Bad Request');
expect(result.body.description).toBe('Failure sending email');
} catch (err) {
console.log(err);
expect(err).toBeFalsy();
}
try {
const result = await UserService.get({
email: user.email,
});
expect(typeof result).toBe('object');
expect(result.resetPasswordToken).toBeDefined();
expect(result.resetPasswordExpires).toBeDefined();
try {
const result2 = await agent.get(`/api/auth/reset/${result.resetPasswordToken}`).expect(302);
expect(result2.headers.location).toBe(`/api/password/reset/${result.resetPasswordToken}`);
} catch (err) {
console.log(err);
expect(err).toBeFalsy();
}
} catch (err) {
console.log(err);
expect(err).toBeFalsy();
}
});
test('should reject password reset with invalid reset token', async () => {
try {
const result = await agent
.post('/api/auth/forgot')
.send({
email: user.email,
})
.expect(400);
expect(result.body.message).toBe('Bad Request');
expect(result.body.description).toBe('Failure sending email');
} catch (err) {
console.log(err);
expect(err).toBeFalsy();
}
try {
const result = await UserService.get({
email: user.email,
});
expect(typeof result).toBe('object');
expect(result.resetPasswordToken).toBeDefined();
expect(result.resetPasswordExpires).toBeDefined();
try {
const invalidToken = 'someTOKEN1234567890';
const result2 = await agent.get(`/api/auth/reset/${invalidToken}`).expect(302);
expect(result2.headers.location).toBe('/api/password/reset/invalid');
} catch (err) {
console.log(err);
expect(err).toBeFalsy();
}
} catch (err) {
console.log(err);
expect(err).toBeFalsy();
}
});
afterEach(async () => {
// del user
try {
await UserService.remove(user);
} catch (err) {
console.log(err);
}
});
});
describe('OAuth profile and service branches', () => {
let AuthController;
const oauthUsers = [];
beforeAll(async () => {
AuthController = (await import(path.resolve('./modules/auth/controllers/auth.controller.js'))).default;
// clean up any leftover users from a previously failed run
for (const email of ['noprovider@auth-test.com', 'oauthprofile@test.com', 'oauthfind@test.com']) {
try {
const existing = await UserService.getBrut({ email });
if (existing) await UserService.remove(existing);
} catch (_) { /* cleanup – ignore errors */ }
}
});
test('should create user with default provider when none is specified', async () => {
const result = await UserService.create({
firstName: 'No',
lastName: 'Provider',
email: 'noprovider@auth-test.com',
password: 'P@ss!W0rd123',
roles: ['user'],
// provider intentionally omitted to trigger the default branch
});
expect(result.provider).toBe('local');
oauthUsers.push(result);
});
test('should create an OAuth user without password via checkOAuthUserProfile', async () => {
const profil = {
firstName: 'OAuth',
lastName: 'Test',
email: 'oauthprofile@test.com',
avatar: '',
providerData: { id: 'google-fake-id-999' },
};
const mockRes = { status() { return this; }, json() {}, cookie() { return this; } };
const result = await AuthController.checkOAuthUserProfile(profil, 'id', 'google', mockRes);
expect(result).toBeDefined();
expect(result.id).toBeDefined();
expect(result.email).toBe(profil.email);
oauthUsers.push(result);
});
test('should find an existing OAuth user via checkOAuthUserProfile', async () => {
// Create an OAuth user directly first
const createdUser = await UserService.create({
firstName: 'OAuth',
lastName: 'Find',
email: 'oauthfind@test.com',
provider: 'google',
providerData: { id: 'google-find-id-777' },
roles: ['user'],
});
const profil = {
firstName: 'OAuth',
lastName: 'Find',
email: 'oauthfind@test.com',
avatar: '',
providerData: { id: 'google-find-id-777' },
};
const mockRes = { status() { return this; }, json() {}, cookie() { return this; } };
// Second call — should find the existing user (search.length === 1 branch)
const found = await AuthController.checkOAuthUserProfile(profil, 'id', 'google', mockRes);
expect(found).toBeDefined();
// cleanup
try {
await UserService.remove(createdUser);
} catch (_) { /* cleanup – ignore errors */ }
});
afterAll(async () => {
for (const u of oauthUsers) {
try {
await UserService.remove(u);
} catch (_) { /* cleanup – ignore errors */ }
}
});
});
describe('Password reset endpoint', () => {
beforeEach(async () => {
credentials = [
{
email: 'resetpwd@test.com',
password: 'W@os.jsI$Aw3$0m3',
},
];
_user = {
firstName: 'Reset',
lastName: 'User',
email: credentials[0].email,
password: credentials[0].password,
provider: 'local',
};
try {
const result = await agent.post('/api/auth/signup').send(_user).expect(200);
user = result.body.user;
} catch (err) {
console.log(err);
expect(err).toBeFalsy();
}
});
test('should return 400 when token or password fields are missing', async () => {
try {
const result = await agent.post('/api/auth/reset').send({ newPassword: 'NewP@ss123' }).expect(400);
expect(result.body.message).toBe('Bad Request');
expect(result.body.description).toBe('Password or Token fields must not be blank');
} catch (err) {
console.log(err);
expect(err).toBeFalsy();
}
});
test('should return 400 when reset token is invalid or not found', async () => {
try {
const result = await agent.post('/api/auth/reset').send({ token: 'invalid-token-xyz', newPassword: 'NewP@ss!Word123' }).expect(400);
expect(result.body.message).toBe('Bad Request');
expect(result.body.description).toBe('Password reset token is invalid or has expired.');
} catch (err) {
console.log(err);
expect(err).toBeFalsy();
}
});
test('should successfully reset password with a valid token', async () => {
// Trigger forgot to generate a reset token (email send fails in test env, which is expected)
try {
await agent.post('/api/auth/forgot').send({ email: credentials[0].email }).expect(400);
} catch (err) {
console.log(err);
expect(err).toBeFalsy();
}
// Fetch the token directly via UserService
let resetToken;
try {
const userWithToken = await UserService.getBrut({ email: credentials[0].email });
resetToken = userWithToken.resetPasswordToken;
expect(resetToken).toBeDefined();
} catch (err) {
console.log(err);
expect(err).toBeFalsy();
}
// Reset password with the valid token
try {
const result = await agent.post('/api/auth/reset').send({ token: resetToken, newPassword: 'NewP@ss!Word123' }).expect(200);
expect(result.body.message).toBe('Password changed successfully');
expect(result.body.user).toBeDefined();
} catch (err) {
console.log(err);
expect(err).toBeFalsy();
}
});
afterEach(async () => {
try {
await UserService.remove(user);
} catch (err) {
console.log(err);
}
});
});
describe('Error paths', () => {
test('should redirect to invalid when validateResetToken getBrut throws', async () => {
jest.spyOn(UserService, 'getBrut').mockRejectedValueOnce(new Error('DB error'));
const result = await agent.get('/api/auth/reset/sometoken').expect(302);
expect(result.headers.location).toBe('/api/password/reset/invalid');
});
});
// Mongoose disconnect
afterAll(async () => {
try {
await mongooseService.disconnect();
} catch (err) {
console.log(err);
expect(err).toBeFalsy();
}
});
});