-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathauth.integration.tests.js
More file actions
1303 lines (1174 loc) · 45.2 KB
/
Copy pathauth.integration.tests.js
File metadata and controls
1303 lines (1174 loc) · 45.2 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
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* Module dependencies.
*/
import request from 'supertest';
import path from 'path';
import _ from 'lodash';
import { jest } from '@jest/globals';
import passport from 'passport';
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 AuthService = 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;
AuthService = (await import(path.resolve('./modules/auth/services/auth.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;
// clean up stale users from previous runs on shared databases
for (const email of [credentials[0].email, credentials[1].email, 'register_new_user_@test.com']) {
try {
const existing = await UserService.getBrut({ email });
if (existing) await UserService.remove(existing);
} catch (_) { /* cleanup – ignore errors */ }
}
// 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 when firstName is omitted (digit-only email local-part)', async () => {
const digitOnlyPayload = {
email: '123@test.com',
password: credentials[1].password,
provider: 'local',
};
try {
const existing = await UserService.getBrut({ email: digitOnlyPayload.email });
if (existing) await UserService.remove(existing);
} catch (_) { /* cleanup */ }
let created;
try {
const result = await agent.post('/api/auth/signup').send(digitOnlyPayload).expect(200);
created = result.body.user;
expect(result.body.user.email).toBe(digitOnlyPayload.email);
expect(result.body.user.firstName).toBe('');
} catch (err) {
console.log(err);
expect(err).toBeFalsy();
} finally {
try { if (created) await UserService.remove(created); } catch (_) { /* cleanup */ }
}
});
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.body.message).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.body.message).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.getBrut({
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.getBrut({
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.getBrut({
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 result = await AuthController.checkOAuthUserProfile(profil, 'id', 'google');
expect(result).toBeDefined();
expect(result.id).toBeDefined();
expect(result.email).toBe(profil.email);
oauthUsers.push(result);
});
test('should throw validation AppError when checkOAuthUserProfile receives an invalid profile', async () => {
const invalidProfil = {
firstName: 'Invalid1', // invalid — digits fail the names refinement
lastName: 'Test',
email: 'invalid-oauth@test.com',
avatar: '',
providerData: { id: 'google-invalid-999' },
};
await expect(
AuthController.checkOAuthUserProfile(invalidProfil, 'id', 'google'),
).rejects.toMatchObject({
message: 'Schema validation error',
code: 'VALIDATION_ERROR',
details: {
message: expect.any(String),
},
});
});
test('should throw AppError when create fails inside checkOAuthUserProfile', async () => {
const profil = {
firstName: 'OAuth',
lastName: 'Err',
email: 'oautherr@test.com',
avatar: '',
providerData: { id: 'google-err-000' },
};
const createSpy = jest.spyOn(UserService, 'create').mockRejectedValueOnce(new Error('DB error'));
await expect(
AuthController.checkOAuthUserProfile(profil, 'id', 'google'),
).rejects.toThrow('oAuth');
createSpy.mockRestore();
});
test('should authenticate via client-side OAuth and set tokenCookieOptions on response', async () => {
const oauthEmail = 'oauthcb-appauth@test.com';
try {
const result = await agent
.post('/api/auth/google/callback')
.send({ strategy: false, key: 'id', value: 'cb-app-auth-id-999', firstName: 'OAuth', lastName: 'Callback', email: oauthEmail })
.expect(200);
const tokenCookie = result.headers['set-cookie']?.find((c) => c.startsWith('TOKEN='));
expect(tokenCookie).toBeDefined();
expect(tokenCookie).toMatch(/HttpOnly/i);
expect(tokenCookie).toMatch(/SameSite=Strict/i);
expect(result.body.message).toBe('oAuth Ok');
} catch (err) {
console.log(err);
expect(err).toBeFalsy();
} finally {
try {
const u = await UserService.getBrut({ email: oauthEmail });
if (u) await UserService.remove(u);
} catch (_) { /* cleanup */ }
}
});
test('should return 422 when client-side OAuth callback receives an invalid profile', async () => {
const result = await agent
.post('/api/auth/google/callback')
.send({
strategy: false,
key: 'id',
value: 'cb-app-auth-id-invalid-999',
firstName: 'Invalid1',
lastName: 'Callback',
email: 'oauthcb-invalid@test.com',
})
.expect(422);
expect(result.body.type).toBe('error');
expect(result.body.message).toMatch(/^Schema validation error/);
expect(result.body.description).toEqual(expect.any(String));
});
test('should set tokenCookieOptions and redirect on classic web oAuth success', async () => {
const mockUserId = 'mock-oauth-user-id-123';
const authenticateSpy = jest.spyOn(passport, 'authenticate').mockImplementationOnce(
(strategy, callback) => () => callback(null, { id: mockUserId }),
);
const cookies = {};
const redirectCalls = [];
const mockReq = { params: { strategy: 'google' }, body: {} };
const mockRes = {
cookie(name, val, opts) { cookies[name] = { val, opts }; return this; },
redirect(code, url) { redirectCalls.push({ code, url }); },
};
await AuthController.oauthCallback(mockReq, mockRes, () => {});
expect(cookies.TOKEN).toBeDefined();
expect(cookies.TOKEN.opts.httpOnly).toBe(true);
expect(cookies.TOKEN.opts.sameSite).toBe(config.cookie.sameSite);
expect(redirectCalls[0]).toMatchObject({ code: 302 });
expect(redirectCalls[0].url).toMatch(/\/token$/);
authenticateSpy.mockRestore();
});
test('should handle GET callback when req.body is undefined (Express 5)', async () => {
const authenticateSpy = jest.spyOn(passport, 'authenticate').mockImplementationOnce(
(strategy, callback) => () => callback(null, { id: 'mock-get-cb-user' }),
);
const cookies = {};
const redirectCalls = [];
const mockReq = { params: { strategy: 'google' } };
const mockRes = {
cookie(name, val, opts) { cookies[name] = { val, opts }; return this; },
redirect(code, url) { redirectCalls.push({ code, url }); },
};
await AuthController.oauthCallback(mockReq, mockRes, () => {});
expect(cookies.TOKEN).toBeDefined();
expect(redirectCalls[0]).toMatchObject({ code: 302 });
authenticateSpy.mockRestore();
});
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' },
};
// Second call — should find the existing user (search.length === 1 branch)
const found = await AuthController.checkOAuthUserProfile(profil, 'id', 'google');
expect(found).toBeDefined();
// cleanup
try {
await UserService.remove(createdUser);
} catch (_) { /* cleanup – ignore errors */ }
});
test('should link OAuth signin to existing local user when provider verifies email', async () => {
// Seed a local user with a password (provider=local), email not yet linked via OAuth
const localEmail = 'oauthlink-local@test.com';
const localUser = await UserService.create({
firstName: 'Local',
lastName: 'Link',
email: localEmail,
password: credentials.password,
provider: 'local',
roles: ['user'],
});
// OAuth signin arrives with matching email + provider-verified flag
const profil = {
firstName: 'Local',
lastName: 'Link',
email: localEmail,
avatar: '',
providerData: { sub: 'google-link-sub-12345', email_verified: true },
emailVerifiedByProvider: true,
};
const linked = await AuthController.checkOAuthUserProfile(profil, 'sub', 'google');
expect(linked).toBeDefined();
expect(linked.id).toBe(localUser.id);
expect(linked.provider).toBe('local'); // provider kept so password reset still works
expect(linked.additionalProvidersData.google.sub).toBe('google-link-sub-12345');
expect(linked.emailVerified).toBe(true);
// Subsequent signin with the same Google sub should find the linked user
const second = await AuthController.checkOAuthUserProfile(profil, 'sub', 'google');
expect(second.id).toBe(localUser.id);
try { await UserService.remove(linked); } catch (_) { /* cleanup */ }
});
test('should NOT link when OAuth provider did not verify the email (create new user instead)', async () => {
const sharedEmail = 'oauthlink-unverified@test.com';
const localUser = await UserService.create({
firstName: 'Unverified',
lastName: 'Link',
email: sharedEmail,
password: credentials.password,
provider: 'local',
roles: ['user'],
});
const profil = {
// Different email to avoid Mongo unique collision on the fallback create branch
firstName: 'Other',
lastName: 'User',
email: 'oauthlink-different@test.com',
avatar: '',
providerData: { sub: 'google-unverified-sub-999', email_verified: false },
emailVerifiedByProvider: false,
};
const user = await AuthController.checkOAuthUserProfile(profil, 'sub', 'google');
expect(user.email).toBe('oauthlink-different@test.com');
expect(user.provider).toBe('google');
expect(user.additionalProvidersData).toBeUndefined();
try { await UserService.remove(localUser); } catch (_) { /* cleanup */ }
try { await UserService.remove(user); } catch (_) { /* cleanup */ }
});
test('should reject link when local email matches but OAuth provider did not verify (no takeover)', async () => {
const sharedEmail = 'oauthlink-takeover@test.com';
const localUser = await UserService.create({
firstName: 'Victim',
lastName: 'User',
email: sharedEmail,
password: credentials.password,
provider: 'local',
roles: ['user'],
});
// Attacker tries OAuth with same email but provider says email_verified=false
const profil = {
firstName: 'Attacker',
lastName: 'User',
email: sharedEmail,
avatar: '',
providerData: { sub: 'google-attacker-sub-42', email_verified: false },
emailVerifiedByProvider: false,
};
await expect(
AuthController.checkOAuthUserProfile(profil, 'sub', 'google'),
).rejects.toThrow(); // falls to create branch → duplicate email → error
try { await UserService.remove(localUser); } catch (_) { /* cleanup */ }
});
test('should set emailVerified=true when creating a fresh OAuth user with verified email', async () => {
const profil = {
firstName: 'Fresh',
lastName: 'OAuth',
email: 'oauth-fresh@test.com',
avatar: '',
providerData: { sub: 'google-fresh-sub-55', email_verified: true },
emailVerifiedByProvider: true,
};
const created = await AuthController.checkOAuthUserProfile(profil, 'sub', 'google');
expect(created.emailVerified).toBe(true);
expect(created.provider).toBe('google');
try { await UserService.remove(created); } catch (_) { /* cleanup */ }
});
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',
};
// clean up stale users from previous runs on shared databases
try {
const existing = await UserService.getBrut({ email: credentials[0].email });
if (existing) await UserService.remove(existing);
} catch (_) { /* cleanup – ignore errors */ }
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('Security', () => {
const secEmail = 'security@test.com';
const secPassword = 'W@os.jsI$Aw3$0m3';
let secUser;
beforeEach(async () => {
// clean up stale users from previous runs on shared databases
for (const email of [secEmail, 'cookieflag@test.com']) {
try {
const existing = await UserService.getBrut({ email });
if (existing) await UserService.remove(existing);
} catch (_) { /* cleanup – ignore errors */ }
}
try {
const result = await agent.post('/api/auth/signup').send({
firstName: 'Sec',
lastName: 'Test',
email: secEmail,
password: secPassword,
provider: 'local',
}).expect(200);
secUser = result.body.user;
} catch (err) {
console.log(err);
expect(err).toBeFalsy();
}
});
test('signup cookie should have HttpOnly and SameSite=Strict flags', async () => {
try {
const result = await agent.post('/api/auth/signup').send({
firstName: 'Cookie',
lastName: 'Test',
email: 'cookieflag@test.com',
password: secPassword,
provider: 'local',
}).expect(200);
const tokenCookie = result.headers['set-cookie']?.find((c) => c.startsWith('TOKEN='));
expect(tokenCookie).toBeDefined();
expect(tokenCookie).toMatch(/HttpOnly/i);
expect(tokenCookie).toMatch(/SameSite=Strict/i);
} catch (err) {
console.log(err);
expect(err).toBeFalsy();
}
});
test('signin cookie should have HttpOnly and SameSite=Strict flags', async () => {
try {
const result = await agent.post('/api/auth/signin').send({ email: secEmail, password: secPassword }).expect(200);
const tokenCookie = result.headers['set-cookie']?.find((c) => c.startsWith('TOKEN='));
expect(tokenCookie).toBeDefined();
expect(tokenCookie).toMatch(/HttpOnly/i);
expect(tokenCookie).toMatch(/SameSite=Strict/i);
} catch (err) {
console.log(err);
expect(err).toBeFalsy();
}
});
test('rate-limited auth routes should include RateLimit response headers', async () => {
try {
const result = await agent.post('/api/auth/signin').send({ email: secEmail, password: secPassword }).expect(200);
expect(result.headers['ratelimit-limit']).toBeDefined();
expect(result.headers['ratelimit-remaining']).toBeDefined();
} catch (err) {
console.log(err);
expect(err).toBeFalsy();
}
});
afterEach(async () => {
try { if (secUser) await UserService.remove(secUser); } catch (_) { /* cleanup */ }
try {
const cookieUser = await UserService.getBrut({ email: 'cookieflag@test.com' });
if (cookieUser) await UserService.remove(cookieUser);
} catch (_) { /* cleanup */ }
secUser = null;
});
});
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');
});
test('should return 500 when local strategy authenticate throws an unexpected error', async () => {
const spy = jest.spyOn(AuthService, 'authenticate').mockRejectedValueOnce(new Error('DB failure'));
await agent.post('/api/auth/signin').send({ email: 'a@b.com', password: 'pass' }).expect(500);
spy.mockRestore();
});
});
describe('Config endpoint', () => {
test('should return sign flags reflecting current config', async () => {
const result = await agent.get('/api/auth/config').expect(200);
expect(result.body.data).toMatchObject({
sign: {
in: expect.any(Boolean),
up: expect.any(Boolean),
},
organizations: {
enabled: expect.any(Boolean),
domainMatching: expect.any(Boolean),
},
});
});
test('should return false when sign.up is disabled', async () => {
const original = config.sign.up;
config.sign.up = false;
const result = await agent.get('/api/auth/config').expect(200);
expect(result.body.data.sign.up).toBe(false);
config.sign.up = original;
});