-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathimport-user-last-logged-at.usecase.test.js
164 lines (140 loc) · 4.81 KB
/
import-user-last-logged-at.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
import { usecases } from '../../../../../src/identity-access-management/domain/usecases/index.js';
import { databaseBuilder, expect, sinon } from '../../../../test-helper.js';
describe('Integration | Identity Access Management | Domain | UseCase | import user last logged at', function () {
let clock;
const now = new Date('2025-01-01');
beforeEach(function () {
clock = sinon.useFakeTimers({ now, toFake: ['Date'] });
});
afterEach(function () {
clock.restore();
});
context('when dryRun is false', function () {
let dryRun;
beforeEach(function () {
dryRun = false;
});
context('when the user exists', function () {
context('when the user has not been anonymized', function () {
context('when the user login has no lastloggedAt', function () {
it('updates the user login lastLoggedAt', async function () {
// given
const userId = databaseBuilder.factory.buildUser({
hasBeenAnonymised: false,
}).id;
databaseBuilder.factory.buildUserLogin({
userId,
lastLoggedAt: null,
});
await databaseBuilder.commit();
// when
await usecases.importUserLastLoggedAt({
dryRun,
userId,
lastActivity: new Date(),
});
// then
const userLoginUpdated = await databaseBuilder.knex('user-logins').where({ userId }).first();
expect(userLoginUpdated.lastLoggedAt).to.deep.equal(now);
});
});
});
context('when there is no user login', function () {
it('creates a new user login', async function () {
// given
const userId = databaseBuilder.factory.buildUser({
hasBeenAnonymised: false,
}).id;
await databaseBuilder.commit();
// when
await usecases.importUserLastLoggedAt({
dryRun,
userId,
lastActivity: new Date(),
});
// then
const userLoginCreated = await databaseBuilder.knex('user-logins').where({ userId }).first();
expect(userLoginCreated.lastLoggedAt).to.deep.equal(now);
});
});
context('when the user login has a lastLoggedAt', function () {
it('does nothing', async function () {
// given
const userId = databaseBuilder.factory.buildUser({
hasBeenAnonymised: false,
}).id;
databaseBuilder.factory.buildUserLogin({
userId,
lastLoggedAt: new Date('2020-01-01'),
});
await databaseBuilder.commit();
// when
const result = await usecases.importUserLastLoggedAt({
dryRun,
userId,
lastActivity: new Date(),
});
// then
const userLoginUpdated = await databaseBuilder.knex('user-logins').where({ userId }).first();
expect(userLoginUpdated.lastLoggedAt).to.deep.equal(new Date('2020-01-01'));
expect(result).to.be.false;
});
});
});
context('when the user has been anonymized', function () {
it('does nothing', async function () {
// given
const userId = databaseBuilder.factory.buildUser({
hasBeenAnonymised: true,
}).id;
databaseBuilder.factory.buildUserLogin({
userId,
lastLoggedAt: null,
});
await databaseBuilder.commit();
// when
const result = await usecases.importUserLastLoggedAt({
dryRun,
userId,
lastActivity: new Date(),
});
// then
const userLoginUpdated = await databaseBuilder.knex('user-logins').where({ userId }).first();
expect(userLoginUpdated.lastLoggedAt).to.be.null;
expect(result).to.be.false;
});
});
context('when the user does not exist', function () {
it('does nothing', async function () {
// when
const result = await usecases.importUserLastLoggedAt({
dryRun,
userId: 789,
lastActivity: new Date(),
});
// then
expect(result).to.be.false;
});
});
});
context('when dryRun is true', function () {
it('does nothing', async function () {
// given
const userId = databaseBuilder.factory.buildUser().id;
databaseBuilder.factory.buildUserLogin({
userId,
lastLoggedAt: null,
});
await databaseBuilder.commit();
// when
await usecases.importUserLastLoggedAt({
dryRun: true,
userId,
lastActivity: new Date(),
});
// then
const userLoginUpdated = await databaseBuilder.knex('user-logins').where({ userId }).first();
expect(userLoginUpdated.lastLoggedAt).to.be.null;
});
});
});