Skip to content

Commit 103227e

Browse files
authored
feat(api): add #findById in user repo
1 parent 8f119f5 commit 103227e

File tree

2 files changed

+40
-0
lines changed

2 files changed

+40
-0
lines changed

api/src/identity-access-management/infrastructure/repositories/user.repository.js

+11
Original file line numberDiff line numberDiff line change
@@ -405,6 +405,15 @@ const findAnotherUserByUsername = async function (userId, username) {
405405
return anotherUsers.map((anotherUser) => new User(anotherUser));
406406
};
407407

408+
/**
409+
* @param {string} userId
410+
* @return {Promise<User>}
411+
*/
412+
const findById = async function (userId) {
413+
const user = await knex('users').where({ id: userId }).first();
414+
return user ? new User(user) : null;
415+
};
416+
408417
/**
409418
* @param {{
410419
* userId: string
@@ -429,6 +438,7 @@ const updateLastDataProtectionPolicySeenAt = async function ({ userId }) {
429438
* @property {function} findAnotherUserByEmail
430439
* @property {function} findAnotherUserByUsername
431440
* @property {function} findByExternalIdentifier
441+
* @property {function} findById
432442
* @property {function} findPaginatedFiltered
433443
* @property {function} get
434444
* @property {function} getByEmail
@@ -461,6 +471,7 @@ export {
461471
findAnotherUserByEmail,
462472
findAnotherUserByUsername,
463473
findByExternalIdentifier,
474+
findById,
464475
findPaginatedFiltered,
465476
get,
466477
getByEmail,

api/tests/identity-access-management/integration/infrastructure/repositories/user.repository.test.js

+29
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,35 @@ describe('Integration | Identity Access Management | Infrastructure | Repository
184184
});
185185
});
186186

187+
describe('#findById', function () {
188+
describe('when user exists', function () {
189+
it('returns the user', async function () {
190+
// given
191+
const userInDB = databaseBuilder.factory.buildUser();
192+
await databaseBuilder.commit();
193+
194+
// when
195+
const foundUser = await userRepository.findById(userInDB.id);
196+
197+
// then
198+
expect(foundUser).to.deepEqualInstance(new User(userInDB));
199+
});
200+
});
201+
202+
describe('when user does not exist', function () {
203+
it('returns null', async function () {
204+
// given
205+
const userId = 123456;
206+
207+
// when
208+
const foundUser = await userRepository.findById(userId);
209+
210+
// then
211+
expect(foundUser).to.be.null;
212+
});
213+
});
214+
});
215+
187216
describe('#findPaginatedFiltered', function () {
188217
context('when there are users in the database', function () {
189218
it('returns an array of users', async function () {

0 commit comments

Comments
 (0)