Skip to content

Commit fc23da7

Browse files
committed
feat(api): add check on production ready images
1 parent 42c6ea0 commit fc23da7

File tree

2 files changed

+107
-5
lines changed

2 files changed

+107
-5
lines changed

api/src/devcomp/infrastructure/factories/module-factory.js

+6-5
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export class ModuleFactory {
4646
.map((component) => {
4747
switch (component.type) {
4848
case 'element': {
49-
const element = ModuleFactory.#buildElement(component.element);
49+
const element = ModuleFactory.#buildElement(component.element, moduleData.isBeta);
5050
if (element) {
5151
return new ComponentElement({ element });
5252
} else {
@@ -59,7 +59,7 @@ export class ModuleFactory {
5959
return new Step({
6060
elements: step.elements
6161
.map((element) => {
62-
const domainElement = ModuleFactory.#buildElement(element);
62+
const domainElement = ModuleFactory.#buildElement(element, moduleData.isBeta);
6363
if (domainElement) {
6464
return domainElement;
6565
} else {
@@ -87,7 +87,7 @@ export class ModuleFactory {
8787
}
8888
}
8989

90-
static #buildElement(element) {
90+
static #buildElement(element, isBeta) {
9191
switch (element.type) {
9292
case 'download':
9393
return ModuleFactory.#buildDownload(element);
@@ -96,7 +96,7 @@ export class ModuleFactory {
9696
case 'expand':
9797
return ModuleFactory.#buildExpand(element);
9898
case 'image':
99-
return ModuleFactory.#buildImage(element);
99+
return ModuleFactory.#buildImage(element, isBeta);
100100
case 'separator':
101101
return ModuleFactory.#buildSeparator(element);
102102
case 'text':
@@ -146,14 +146,15 @@ export class ModuleFactory {
146146
});
147147
}
148148

149-
static #buildImage(element) {
149+
static #buildImage(element, isBeta) {
150150
return new Image({
151151
id: element.id,
152152
url: element.url,
153153
alt: element.alt,
154154
alternativeText: element.alternativeText,
155155
legend: element.legend,
156156
licence: element.licence,
157+
isBeta,
157158
});
158159
}
159160

api/tests/devcomp/unit/infrastructure/factories/module-factory_test.js

+101
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ import { Grain } from '../../../../../src/devcomp/domain/models/Grain.js';
1414
import { Module } from '../../../../../src/devcomp/domain/models/module/Module.js';
1515
import { TransitionText } from '../../../../../src/devcomp/domain/models/TransitionText.js';
1616
import { ModuleFactory } from '../../../../../src/devcomp/infrastructure/factories/module-factory.js';
17+
import { DomainError } from '../../../../../src/shared/domain/errors.js';
1718
import { logger } from '../../../../../src/shared/infrastructure/utils/logger.js';
1819
import { catchErrSync, expect, sinon } from '../../../../test-helper.js';
1920
import { validateFlashcards } from '../../../shared/validateFlashcards.js';
@@ -336,6 +337,54 @@ describe('Unit | Devcomp | Infrastructure | Factories | Module ', function () {
336337
});
337338

338339
describe('With ComponentElement', function () {
340+
describe('When isBeta is false', function () {
341+
it('should instantiate a Module with a ComponentElement which contains an Image Element', function () {
342+
// given
343+
const moduleData = {
344+
id: '6282925d-4775-4bca-b513-4c3009ec5886',
345+
slug: 'title',
346+
title: 'title',
347+
isBeta: false,
348+
details: {
349+
image: 'https://images.pix.fr/modulix/placeholder-details.svg',
350+
description: 'Description',
351+
duration: 5,
352+
level: 'Débutant',
353+
tabletSupport: 'comfortable',
354+
objectives: ['Objective 1'],
355+
},
356+
grains: [
357+
{
358+
id: 'f312c33d-e7c9-4a69-9ba0-913957b8f7dd',
359+
type: 'lesson',
360+
title: 'title',
361+
components: [
362+
{
363+
type: 'element',
364+
element: {
365+
id: '8d7687c8-4a02-4d7e-bf6c-693a6d481c78',
366+
type: 'image',
367+
url: 'https://images.pix.fr/modulix/didacticiel/ordi-spatial.svg',
368+
alt: 'Alternative',
369+
alternativeText: 'Alternative textuelle',
370+
legend: 'legend',
371+
licence: 'licence',
372+
},
373+
},
374+
],
375+
},
376+
],
377+
};
378+
379+
// when
380+
const error = catchErrSync(() => ModuleFactory.build(moduleData))();
381+
382+
// then
383+
expect(error).to.be.an.instanceOf(DomainError);
384+
expect(error.message).to.equal('The image URL must be from "assets.pix.org" when module is production ready');
385+
});
386+
});
387+
339388
it('should instantiate a Module with a ComponentElement which contains an Image Element', function () {
340389
// given
341390
const moduleData = {
@@ -927,6 +976,58 @@ describe('Unit | Devcomp | Infrastructure | Factories | Module ', function () {
927976
});
928977

929978
describe('With ComponentStepper', function () {
979+
describe('When isBeta is false', function () {
980+
it('should instantiate a Module with a ComponentElement which contains an Image Element', function () {
981+
// given
982+
const moduleData = {
983+
id: '6282925d-4775-4bca-b513-4c3009ec5886',
984+
slug: 'title',
985+
title: 'title',
986+
isBeta: false,
987+
details: {
988+
image: 'https://images.pix.fr/modulix/placeholder-details.svg',
989+
description: 'Description',
990+
duration: 5,
991+
level: 'Débutant',
992+
tabletSupport: 'comfortable',
993+
objectives: ['Objective 1'],
994+
},
995+
grains: [
996+
{
997+
id: 'f312c33d-e7c9-4a69-9ba0-913957b8f7dd',
998+
type: 'lesson',
999+
title: 'title',
1000+
components: [
1001+
{
1002+
type: 'stepper',
1003+
steps: [
1004+
{
1005+
elements: [
1006+
{
1007+
id: '8d7687c8-4a02-4d7e-bf6c-693a6d481c78',
1008+
type: 'image',
1009+
url: 'https://images.pix.fr/modulix/didacticiel/ordi-spatial.svg',
1010+
alt: "Dessin détaillé dans l'alternative textuelle",
1011+
alternativeText: "Dessin d'un ordinateur dans un univers spatial.",
1012+
},
1013+
],
1014+
},
1015+
],
1016+
},
1017+
],
1018+
},
1019+
],
1020+
};
1021+
1022+
// when
1023+
const error = catchErrSync(() => ModuleFactory.build(moduleData))();
1024+
1025+
// then
1026+
expect(error).to.be.an.instanceOf(DomainError);
1027+
expect(error.message).to.equal('The image URL must be from "assets.pix.org" when module is production ready');
1028+
});
1029+
});
1030+
9301031
it('should instantiate a Module with a ComponentStepper which contains an Image Element', function () {
9311032
// given
9321033
const moduleData = {

0 commit comments

Comments
 (0)