-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathauthenticate-user.usecase.test.js
337 lines (283 loc) · 13.8 KB
/
authenticate-user.usecase.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
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
import { NON_OIDC_IDENTITY_PROVIDERS } from '../../../../../src/identity-access-management/domain/constants/identity-providers.js';
import {
MissingOrInvalidCredentialsError,
UserShouldChangePasswordError,
} from '../../../../../src/identity-access-management/domain/errors.js';
import { usecases } from '../../../../../src/identity-access-management/domain/usecases/index.js';
import { RequestedApplication } from '../../../../../src/identity-access-management/infrastructure/utils/network.js';
import { ForbiddenAccess } from '../../../../../src/shared/domain/errors.js';
import { databaseBuilder, expect, knex, sinon } from '../../../../test-helper.js';
describe('Integration | Identity Access Management | Domain | UseCase | authenticate-user', function () {
context('when authentication succeeds', function () {
let clock;
beforeEach(function () {
clock = sinon.useFakeTimers({ now: new Date('2001-01-01'), toFake: ['Date'] });
});
afterEach(function () {
clock.restore();
});
it('returns a valid JWT Access Token', async function () {
// given
const email = 'user_exists@example.net';
const password = 'some password';
databaseBuilder.factory.buildUser.withRawPassword({ email, rawPassword: password });
await databaseBuilder.commit();
const audience = 'https://app.pix.fr';
const requestedApplication = RequestedApplication.fromOrigin(audience);
// when
const result = await usecases.authenticateUser({ username: email, password, requestedApplication, audience });
// then
expect(result).to.be.an.instanceOf(Object);
expect(result).to.have.all.keys('accessToken', 'refreshToken', 'expirationDelaySeconds');
expect(result.accessToken).to.be.a.string;
expect(result.refreshToken).to.be.a.string;
expect(result.expirationDelaySeconds).to.be.a('number');
});
it('saves the last dates of login', async function () {
// given
const email = 'user_will_have_last_date_of_login@example.net';
const password = 'some password';
const userId = databaseBuilder.factory.buildUser.withRawPassword({ email, rawPassword: password }).id;
await databaseBuilder.commit();
const audience = 'https://app.pix.fr';
const requestedApplication = RequestedApplication.fromOrigin(audience);
// when
await usecases.authenticateUser({ username: email, password, requestedApplication, audience });
// then
const userLogin = await knex('user-logins').where({ userId }).first();
expect(userLogin).to.exist;
expect(userLogin.lastLoggedAt).to.deep.equal(new Date('2001-01-01'));
const authenticationMethod = await knex('authentication-methods')
.where({ userId, identityProvider: NON_OIDC_IDENTITY_PROVIDERS.PIX.code })
.first();
expect(authenticationMethod).to.exist;
expect(authenticationMethod.lastLoggedAt).to.deep.equal(new Date('2001-01-01'));
const lastUserApplicationConnection = await knex('last-user-application-connections')
.where({ userId, application: requestedApplication.applicationName })
.first();
expect(lastUserApplicationConnection).to.exist;
expect(lastUserApplicationConnection.lastLoggedAt).to.deep.equal(new Date('2001-01-01'));
});
context('when user should change password', function () {
it('throws UserShouldChangePasswordError', async function () {
// given
const email = 'user_should_change_password@example.net';
const password = 'some password';
databaseBuilder.factory.buildUser.withRawPassword({ email, rawPassword: password, shouldChangePassword: true });
await databaseBuilder.commit();
const audience = 'https://app.pix.fr';
const requestedApplication = RequestedApplication.fromOrigin(audience);
// when & then
await expect(
usecases.authenticateUser({ username: email, password, requestedApplication, audience }),
).to.be.rejectedWith(UserShouldChangePasswordError);
});
});
describe('user locale', function () {
context('when user has a locale', function () {
it('does not update the user locale', async function () {
// given
const email = 'user_with_a_locale@example.net';
const password = 'some password';
const locale = 'fr-BE';
const userId = databaseBuilder.factory.buildUser.withRawPassword({ email, rawPassword: password, locale }).id;
await databaseBuilder.commit();
const localeFromCookie = 'nl-BE';
const audience = 'https://app.pix.fr';
const requestedApplication = RequestedApplication.fromOrigin(audience);
// when
await usecases.authenticateUser({
username: email,
password,
localeFromCookie,
requestedApplication,
audience,
});
// then
const user = await knex('users').where({ id: userId }).first();
expect(user.locale).to.equal('fr-BE');
});
});
context('when user does not have a locale', function () {
context('when there is a locale cookie ', function () {
it('updates the user locale with the formatted value', async function () {
// given
const email = 'user_with_no_locale@example.net';
const password = 'some password';
const userId = databaseBuilder.factory.buildUser.withRawPassword({ email, rawPassword: password }).id;
await databaseBuilder.commit();
const localeFromCookie = 'nl-BE';
const audience = 'https://app.pix.fr';
const requestedApplication = RequestedApplication.fromOrigin(audience);
// when
await usecases.authenticateUser({
username: email,
password,
localeFromCookie,
requestedApplication,
audience,
});
// then
const user = await knex('users').where({ id: userId }).first();
expect(user.locale).to.equal('nl-BE');
});
});
context('when there is no locale cookie', function () {
it('does not update the user locale', async function () {
// given
const email = 'user_with_no_locale@example.net';
const password = 'some password';
const userId = databaseBuilder.factory.buildUser.withRawPassword({ email, rawPassword: password }).id;
await databaseBuilder.commit();
const audience = 'https://app.pix.fr';
const requestedApplication = RequestedApplication.fromOrigin(audience);
// when
await usecases.authenticateUser({ username: email, password, requestedApplication, audience });
// then
const user = await knex('users').where({ id: userId }).first();
expect(user.locale).to.be.null;
});
});
});
});
describe('connection warning email', function () {
context('when user has connected beyond the connection warning period', function () {
context('when user has an email', function () {
it('sends a connection warning email', async function () {
// given
const email = 'user_last_connection_too_far@example.net';
const password = 'some password';
const userId = databaseBuilder.factory.buildUser.withRawPassword({ email, rawPassword: password }).id;
databaseBuilder.factory.buildUserLogin({ userId, lastLoggedAt: new Date('1991-01-01') });
await databaseBuilder.commit();
const audience = 'https://app.pix.fr';
const requestedApplication = RequestedApplication.fromOrigin(audience);
// when
await usecases.authenticateUser({ username: email, password, requestedApplication, audience });
// then
await expect('SendEmailJob').to.have.been.performed.withJobsCount(1);
});
});
context('when user has no email', function () {
it('does not send a connection warning email', async function () {
// given
const email = null;
const username = 'user_last_connection_too_far';
const password = 'some password';
const userId = databaseBuilder.factory.buildUser.withRawPassword({
email,
username,
rawPassword: password,
}).id;
databaseBuilder.factory.buildUserLogin({ userId, lastLoggedAt: new Date('1991-01-01') });
await databaseBuilder.commit();
const audience = 'https://app.pix.fr';
const requestedApplication = RequestedApplication.fromOrigin(audience);
// when
await usecases.authenticateUser({ username, password, requestedApplication, audience });
// then
await expect('SendEmailJob').to.have.been.performed.withJobsCount(0);
});
});
});
context('when user has connected within the connection warning period', function () {
it('does not send a connection warning email', async function () {
// given
const email = 'user_last_connection_recent@example.net';
const password = 'some password';
const userId = databaseBuilder.factory.buildUser.withRawPassword({ email, rawPassword: password }).id;
databaseBuilder.factory.buildUserLogin({ userId, lastLoggedAt: new Date() });
await databaseBuilder.commit();
const audience = 'https://app.pix.fr';
const requestedApplication = RequestedApplication.fromOrigin(audience);
// when
await usecases.authenticateUser({ username: email, password, requestedApplication, audience });
// then
await expect('SendEmailJob').to.have.been.performed.withJobsCount(0);
});
});
});
});
describe('error cases', function () {
context('when given username/email does not exist', function () {
it('throws a MissingOrInvalidCredentialsError', async function () {
// given
const unknownUserEmail = 'unknown_user_email@example.net';
const password = 'some password';
const audience = 'https://app.pix.fr';
// when & then
await expect(usecases.authenticateUser({ username: unknownUserEmail, password, audience })).to.be.rejectedWith(
MissingOrInvalidCredentialsError,
);
});
});
context('when given password does not match', function () {
it('throws a MissingOrInvalidCredentialsError', async function () {
// given
const email = 'user_exists@example.net';
const password = 'some password';
databaseBuilder.factory.buildUser.withRawPassword({ email, rawPassword: password });
await databaseBuilder.commit();
const wrongPassword = 'a wrong password';
const audience = 'https://app.pix.fr';
// when & then
await expect(
usecases.authenticateUser({ username: email, password: wrongPassword, audience }),
).to.be.rejectedWith(MissingOrInvalidCredentialsError);
});
});
describe('user access to applications', function () {
context('when requestedApplication is Pix Orga', function () {
context('when user is not linked to any organization', function () {
it('throws a ForbiddenAccess', async function () {
// given
const email = 'user_wants_to_go_to_orga@example.net';
const password = 'some password';
databaseBuilder.factory.buildUser.withRawPassword({ email, rawPassword: password });
await databaseBuilder.commit();
const audience = 'https://orga.pix.fr';
const requestedApplication = RequestedApplication.fromOrigin(audience);
// when & then
await expect(
usecases.authenticateUser({ username: email, password, requestedApplication, audience }),
).to.be.rejectedWith(ForbiddenAccess);
});
});
});
context('when requestedApplication is Pix Admin', function () {
context('when user has no admin member role', function () {
it('throws a ForbiddenAccess', async function () {
// given
const email = 'user_wants_to_go_to_admin@example.net';
const password = 'some password';
databaseBuilder.factory.buildUser.withRawPassword({ email, rawPassword: password });
await databaseBuilder.commit();
const audience = 'https://admin.pix.fr';
const requestedApplication = RequestedApplication.fromOrigin(audience);
// when & then
await expect(
usecases.authenticateUser({ username: email, password, requestedApplication, audience }),
).to.be.rejectedWith(ForbiddenAccess);
});
});
context('when user has an admin member role', function () {
context('when user admin member role is disabled', function () {
it('throws a ForbiddenAccess', async function () {
// given
const email = 'user_is_admin_member_but_disabled@example.net';
const password = 'some password';
databaseBuilder.factory.buildUser.withRole({ email, rawPassword: password, disabledAt: new Date() });
await databaseBuilder.commit();
const audience = 'https://admin.pix.fr';
const requestedApplication = RequestedApplication.fromOrigin(audience);
// when & then
await expect(
usecases.authenticateUser({ username: email, password, requestedApplication, audience }),
).to.be.rejectedWith(ForbiddenAccess);
});
});
});
});
});
});
});