Skip to content

Commit b03ea13

Browse files
bugfix(api): wrong repository called (confusion is high)
1 parent 99de6e0 commit b03ea13

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

api/src/shared/domain/usecases/get-next-challenge.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export async function getNextChallenge({
44
locale,
55
assessmentRepository,
66
evaluationUsecases,
7-
certificationVersionRepository,
7+
certificationEvaluationRepository,
88
}) {
99
const assessment = await assessmentRepository.get(assessmentId);
1010

@@ -14,7 +14,7 @@ export async function getNextChallenge({
1414

1515
let nextChallenge = null;
1616
if (assessment.isCertification()) {
17-
nextChallenge = await certificationVersionRepository.selectNextCertificationChallenge({
17+
nextChallenge = await certificationEvaluationRepository.selectNextCertificationChallenge({
1818
assessmentId: assessment.id,
1919
locale,
2020
});

api/src/shared/domain/usecases/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ import { dirname, join } from 'node:path';
22
import { fileURLToPath } from 'node:url';
33

44
import * as complementaryCertificationBadgeRepository from '../../../certification/complementary-certification/infrastructure/repositories/complementary-certification-badge-repository.js';
5-
import * as certificationVersionRepository from '../../../certification/results/infrastructure/repositories/certification-version-repository.js';
65
import { evaluationUsecases } from '../../../evaluation/domain/usecases/index.js';
76
import * as badgeRepository from '../../../evaluation/infrastructure/repositories/badge-repository.js';
87
import * as assessmentRepository from '../../infrastructure/repositories/assessment-repository.js';
98
import * as challengeRepository from '../../infrastructure/repositories/challenge-repository.js';
9+
import { repositories as sharedInjectedRepositories } from '../../infrastructure/repositories/index.js';
1010
import { injectDependencies } from '../../infrastructure/utils/dependency-injection.js';
1111
import { importNamedExportsFromDirectory } from '../../infrastructure/utils/import-named-exports-from-directory.js';
1212
const path = dirname(fileURLToPath(import.meta.url));
@@ -20,8 +20,8 @@ const dependencies = {
2020
complementaryCertificationBadgeRepository,
2121
badgeRepository,
2222
challengeRepository,
23-
certificationVersionRepository,
2423
evaluationUsecases,
24+
...sharedInjectedRepositories,
2525
};
2626

2727
const sharedUsecases = injectDependencies(usecasesWithoutInjectedDependencies, dependencies);

api/tests/shared/unit/domain/usecases/get-next-challenge_test.js

+7-7
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ describe('Shared | Unit | Domain | Use Cases | get-next-challenge', function ()
1212
let evaluationUsecases_getNextChallengeForDemoStub;
1313
let evaluationUsecases_getNextChallengeForCampaignAssessmentStub;
1414
let evaluationUsecases_getNextChallengeForCompetenceEvaluationStub;
15-
let certificationVersionRepository_selectNextCertificationChallengeStub;
15+
let certificationEvaluationRepository_selectNextCertificationChallengeStub;
1616

1717
beforeEach(function () {
1818
userId = 'someUserId';
@@ -29,7 +29,7 @@ describe('Shared | Unit | Domain | Use Cases | get-next-challenge', function ()
2929
evaluationUsecases_getNextChallengeForCompetenceEvaluationStub = sinon
3030
.stub()
3131
.named('getNextChallengeForCompetenceEvaluation');
32-
certificationVersionRepository_selectNextCertificationChallengeStub = sinon
32+
certificationEvaluationRepository_selectNextCertificationChallengeStub = sinon
3333
.stub()
3434
.named('selectNextCertificationChallenge');
3535
preventStubsToBeCalledUnexpectedly([
@@ -39,7 +39,7 @@ describe('Shared | Unit | Domain | Use Cases | get-next-challenge', function ()
3939
evaluationUsecases_getNextChallengeForDemoStub,
4040
evaluationUsecases_getNextChallengeForCampaignAssessmentStub,
4141
evaluationUsecases_getNextChallengeForCompetenceEvaluationStub,
42-
certificationVersionRepository_selectNextCertificationChallengeStub,
42+
certificationEvaluationRepository_selectNextCertificationChallengeStub,
4343
]);
4444

4545
const assessmentRepository = {
@@ -55,8 +55,8 @@ describe('Shared | Unit | Domain | Use Cases | get-next-challenge', function ()
5555
getNextChallengeForCompetenceEvaluation: evaluationUsecases_getNextChallengeForCompetenceEvaluationStub,
5656
};
5757

58-
const certificationVersionRepository = {
59-
selectNextCertificationChallenge: certificationVersionRepository_selectNextCertificationChallengeStub,
58+
const certificationEvaluationRepository = {
59+
selectNextCertificationChallenge: certificationEvaluationRepository_selectNextCertificationChallengeStub,
6060
};
6161

6262
dependencies = {
@@ -65,7 +65,7 @@ describe('Shared | Unit | Domain | Use Cases | get-next-challenge', function ()
6565
locale,
6666
assessmentRepository,
6767
evaluationUsecases,
68-
certificationVersionRepository,
68+
certificationEvaluationRepository,
6969
};
7070
});
7171

@@ -162,7 +162,7 @@ describe('Shared | Unit | Domain | Use Cases | get-next-challenge', function ()
162162

163163
it('should call usecase and return value from certification usecase', async function () {
164164
const challenge = domainBuilder.buildChallenge({ id: 'challengeForCertification' });
165-
certificationVersionRepository_selectNextCertificationChallengeStub
165+
certificationEvaluationRepository_selectNextCertificationChallengeStub
166166
.withArgs({ assessmentId: assessment.id, locale })
167167
.resolves(challenge);
168168
const actualNextChallenge = await getNextChallenge(dependencies);

0 commit comments

Comments
 (0)