Skip to content

Commit 316bd82

Browse files
committed
feat(api): add mark assessment info usecase
1 parent 2f2f8d3 commit 316bd82

File tree

2 files changed

+35
-0
lines changed

2 files changed

+35
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
/**
2+
* @typedef {import ('../../domain/usecases/index.js').UserRepository} UserRepository
3+
*/
4+
5+
/**
6+
* @param {Object} params
7+
* @param {number} params.userId
8+
* @param {UserRepository} params.userRepository
9+
*/
10+
const markAssessmentInstructionsInfoAsSeen = function ({ userId, userRepository }) {
11+
return userRepository.updateHasSeenAssessmentInstructionsToTrue(userId);
12+
};
13+
14+
export { markAssessmentInstructionsInfoAsSeen };
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
import { usecases } from '../../../../../src/identity-access-management/domain/usecases/index.js';
2+
import { databaseBuilder, expect } from '../../../../test-helper.js';
3+
4+
describe('Integration | Identity Access Management | Domain | UseCase | markAssessmentInstructionsInfoAsSeen', function () {
5+
it('should update hasSeenAssessmentInstructions property as true for the user', async function () {
6+
// given
7+
const user = databaseBuilder.factory.buildUser({
8+
email: 'myusertoupdate@example.net',
9+
hasSeenAssessmentInstructions: false,
10+
});
11+
await databaseBuilder.commit();
12+
13+
// when
14+
const result = await usecases.markAssessmentInstructionsInfoAsSeen({
15+
userId: user.id,
16+
});
17+
18+
// then
19+
expect(result.hasSeenAssessmentInstructions).to.be.true;
20+
});
21+
});

0 commit comments

Comments
 (0)