|
| 1 | +import { usecases } from '../../../../../src/identity-access-management/domain/usecases/index.js'; |
| 2 | +import { databaseBuilder, expect, sinon } from '../../../../test-helper.js'; |
| 3 | + |
| 4 | +describe('Integration | Identity Access Management | Domain | UseCase | import user last logged at', function () { |
| 5 | + let clock; |
| 6 | + const now = new Date('2025-01-01'); |
| 7 | + |
| 8 | + beforeEach(function () { |
| 9 | + clock = sinon.useFakeTimers({ now, toFake: ['Date'] }); |
| 10 | + }); |
| 11 | + |
| 12 | + afterEach(function () { |
| 13 | + clock.restore(); |
| 14 | + }); |
| 15 | + |
| 16 | + context('when dryRun is false', function () { |
| 17 | + let dryRun; |
| 18 | + |
| 19 | + beforeEach(function () { |
| 20 | + dryRun = false; |
| 21 | + }); |
| 22 | + |
| 23 | + context('when the user exists', function () { |
| 24 | + context('when the user has not been anonymized', function () { |
| 25 | + context('when the user login has no lastloggedAt', function () { |
| 26 | + it('updates the user login lastLoggedAt', async function () { |
| 27 | + // given |
| 28 | + const userId = databaseBuilder.factory.buildUser({ |
| 29 | + hasBeenAnonymised: false, |
| 30 | + }).id; |
| 31 | + databaseBuilder.factory.buildUserLogin({ |
| 32 | + userId, |
| 33 | + lastLoggedAt: null, |
| 34 | + }); |
| 35 | + |
| 36 | + await databaseBuilder.commit(); |
| 37 | + |
| 38 | + // when |
| 39 | + await usecases.importUserLastLoggedAt({ |
| 40 | + dryRun, |
| 41 | + userId, |
| 42 | + lastActivity: new Date(), |
| 43 | + }); |
| 44 | + |
| 45 | + // then |
| 46 | + const userLoginUpdated = await databaseBuilder.knex('user-logins').where({ userId }).first(); |
| 47 | + expect(userLoginUpdated.lastLoggedAt).to.deep.equal(now); |
| 48 | + }); |
| 49 | + }); |
| 50 | + }); |
| 51 | + |
| 52 | + context('when there is no user login', function () { |
| 53 | + it('creates a new user login', async function () { |
| 54 | + // given |
| 55 | + const userId = databaseBuilder.factory.buildUser({ |
| 56 | + hasBeenAnonymised: false, |
| 57 | + }).id; |
| 58 | + |
| 59 | + await databaseBuilder.commit(); |
| 60 | + |
| 61 | + // when |
| 62 | + await usecases.importUserLastLoggedAt({ |
| 63 | + dryRun, |
| 64 | + userId, |
| 65 | + lastActivity: new Date(), |
| 66 | + }); |
| 67 | + |
| 68 | + // then |
| 69 | + const userLoginCreated = await databaseBuilder.knex('user-logins').where({ userId }).first(); |
| 70 | + expect(userLoginCreated.lastLoggedAt).to.deep.equal(now); |
| 71 | + }); |
| 72 | + }); |
| 73 | + |
| 74 | + context('when the user login has a lastLoggedAt', function () { |
| 75 | + it('does nothing', async function () { |
| 76 | + // given |
| 77 | + const userId = databaseBuilder.factory.buildUser({ |
| 78 | + hasBeenAnonymised: false, |
| 79 | + }).id; |
| 80 | + databaseBuilder.factory.buildUserLogin({ |
| 81 | + userId, |
| 82 | + lastLoggedAt: new Date('2020-01-01'), |
| 83 | + }); |
| 84 | + await databaseBuilder.commit(); |
| 85 | + |
| 86 | + // when |
| 87 | + const result = await usecases.importUserLastLoggedAt({ |
| 88 | + dryRun, |
| 89 | + userId, |
| 90 | + lastActivity: new Date(), |
| 91 | + }); |
| 92 | + |
| 93 | + // then |
| 94 | + const userLoginUpdated = await databaseBuilder.knex('user-logins').where({ userId }).first(); |
| 95 | + expect(userLoginUpdated.lastLoggedAt).to.deep.equal(new Date('2020-01-01')); |
| 96 | + expect(result).to.be.false; |
| 97 | + }); |
| 98 | + }); |
| 99 | + }); |
| 100 | + |
| 101 | + context('when the user has been anonymized', function () { |
| 102 | + it('does nothing', async function () { |
| 103 | + // given |
| 104 | + const userId = databaseBuilder.factory.buildUser({ |
| 105 | + hasBeenAnonymised: true, |
| 106 | + }).id; |
| 107 | + databaseBuilder.factory.buildUserLogin({ |
| 108 | + userId, |
| 109 | + lastLoggedAt: null, |
| 110 | + }); |
| 111 | + await databaseBuilder.commit(); |
| 112 | + |
| 113 | + // when |
| 114 | + const result = await usecases.importUserLastLoggedAt({ |
| 115 | + dryRun, |
| 116 | + userId, |
| 117 | + lastActivity: new Date(), |
| 118 | + }); |
| 119 | + |
| 120 | + // then |
| 121 | + const userLoginUpdated = await databaseBuilder.knex('user-logins').where({ userId }).first(); |
| 122 | + expect(userLoginUpdated.lastLoggedAt).to.be.null; |
| 123 | + expect(result).to.be.false; |
| 124 | + }); |
| 125 | + }); |
| 126 | + |
| 127 | + context('when the user does not exist', function () { |
| 128 | + it('does nothing', async function () { |
| 129 | + // when |
| 130 | + const result = await usecases.importUserLastLoggedAt({ |
| 131 | + dryRun, |
| 132 | + userId: 789, |
| 133 | + lastActivity: new Date(), |
| 134 | + }); |
| 135 | + |
| 136 | + // then |
| 137 | + expect(result).to.be.false; |
| 138 | + }); |
| 139 | + }); |
| 140 | + }); |
| 141 | + |
| 142 | + context('when dryRun is true', function () { |
| 143 | + it('does nothing', async function () { |
| 144 | + // given |
| 145 | + const userId = databaseBuilder.factory.buildUser().id; |
| 146 | + databaseBuilder.factory.buildUserLogin({ |
| 147 | + userId, |
| 148 | + lastLoggedAt: null, |
| 149 | + }); |
| 150 | + await databaseBuilder.commit(); |
| 151 | + |
| 152 | + // when |
| 153 | + await usecases.importUserLastLoggedAt({ |
| 154 | + dryRun: true, |
| 155 | + userId, |
| 156 | + lastActivity: new Date(), |
| 157 | + }); |
| 158 | + |
| 159 | + // then |
| 160 | + const userLoginUpdated = await databaseBuilder.knex('user-logins').where({ userId }).first(); |
| 161 | + expect(userLoginUpdated.lastLoggedAt).to.be.null; |
| 162 | + }); |
| 163 | + }); |
| 164 | +}); |
0 commit comments