@@ -14,6 +14,7 @@ import { Grain } from '../../../../../src/devcomp/domain/models/Grain.js';
14
14
import { Module } from '../../../../../src/devcomp/domain/models/module/Module.js' ;
15
15
import { TransitionText } from '../../../../../src/devcomp/domain/models/TransitionText.js' ;
16
16
import { ModuleFactory } from '../../../../../src/devcomp/infrastructure/factories/module-factory.js' ;
17
+ import { DomainError } from '../../../../../src/shared/domain/errors.js' ;
17
18
import { logger } from '../../../../../src/shared/infrastructure/utils/logger.js' ;
18
19
import { catchErrSync , expect , sinon } from '../../../../test-helper.js' ;
19
20
import { validateFlashcards } from '../../../shared/validateFlashcards.js' ;
@@ -336,6 +337,54 @@ describe('Unit | Devcomp | Infrastructure | Factories | Module ', function () {
336
337
} ) ;
337
338
338
339
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
+
339
388
it ( 'should instantiate a Module with a ComponentElement which contains an Image Element' , function ( ) {
340
389
// given
341
390
const moduleData = {
@@ -927,6 +976,58 @@ describe('Unit | Devcomp | Infrastructure | Factories | Module ', function () {
927
976
} ) ;
928
977
929
978
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
+
930
1031
it ( 'should instantiate a Module with a ComponentStepper which contains an Image Element' , function ( ) {
931
1032
// given
932
1033
const moduleData = {
0 commit comments