@@ -8,16 +8,17 @@ describe('Unit | Devcomp | Domain | Models | Element | Image', function () {
8
8
// when
9
9
const image = new Image ( {
10
10
id : 'id' ,
11
- url : 'url ' ,
11
+ url : 'https://assets.pix.org/modules/placeholder-details.svg ' ,
12
12
alt : 'alt' ,
13
13
alternativeText : 'alternativeText' ,
14
14
legend : 'legend' ,
15
15
licence : 'licence' ,
16
+ isBeta : false ,
16
17
} ) ;
17
18
18
19
// then
19
20
expect ( image . id ) . to . equal ( 'id' ) ;
20
- expect ( image . url ) . to . equal ( 'url ' ) ;
21
+ expect ( image . url ) . to . equal ( 'https://assets.pix.org/modules/placeholder-details.svg ' ) ;
21
22
expect ( image . alt ) . to . equal ( 'alt' ) ;
22
23
expect ( image . alternativeText ) . to . equal ( 'alternativeText' ) ;
23
24
expect ( image . legend ) . to . equal ( 'legend' ) ;
@@ -48,11 +49,22 @@ describe('Unit | Devcomp | Domain | Models | Element | Image', function () {
48
49
} ) ;
49
50
} ) ;
50
51
51
- describe ( 'An image without alt ' , function ( ) {
52
+ describe ( 'An image with invalid url ' , function ( ) {
52
53
it ( 'should throw an error' , function ( ) {
53
54
// when
54
55
const error = catchErrSync ( ( ) => new Image ( { id : 'id' , url : 'url' } ) ) ( ) ;
55
56
57
+ // then
58
+ expect ( error ) . to . be . instanceOf ( DomainError ) ;
59
+ expect ( error . message ) . to . equal ( 'The URL must be a valid URL for an image' ) ;
60
+ } ) ;
61
+ } ) ;
62
+
63
+ describe ( 'An image without alt' , function ( ) {
64
+ it ( 'should throw an error' , function ( ) {
65
+ // when
66
+ const error = catchErrSync ( ( ) => new Image ( { id : 'id' , url : 'https://images.pix.fr/coolcat.jpg' } ) ) ( ) ;
67
+
56
68
// then
57
69
expect ( error ) . to . be . instanceOf ( DomainError ) ;
58
70
expect ( error . message ) . to . equal ( 'The alt text is required for an image' ) ;
@@ -62,11 +74,35 @@ describe('Unit | Devcomp | Domain | Models | Element | Image', function () {
62
74
describe ( 'An image without an alternative text' , function ( ) {
63
75
it ( 'should throw an error' , function ( ) {
64
76
// when
65
- const error = catchErrSync ( ( ) => new Image ( { id : 'id' , url : 'url ' , alt : 'alt' } ) ) ( ) ;
77
+ const error = catchErrSync ( ( ) => new Image ( { id : 'id' , url : 'https://images.pix.fr/coolcat.jpg ' , alt : 'alt' } ) ) ( ) ;
66
78
67
79
// then
68
80
expect ( error ) . to . be . instanceOf ( DomainError ) ;
69
81
expect ( error . message ) . to . equal ( 'The alternative text is required for an image' ) ;
70
82
} ) ;
71
83
} ) ;
84
+
85
+ describe ( 'When isBeta is false' , function ( ) {
86
+ describe ( 'and image URL is not from assets.pix.org' , function ( ) {
87
+ it ( 'should throw an error' , function ( ) {
88
+ // given & when
89
+ const error = catchErrSync (
90
+ ( ) =>
91
+ new Image ( {
92
+ id : 'id' ,
93
+ url : 'https://images.pix.fr/coolcat.jpg' ,
94
+ alt : 'alt' ,
95
+ alternativeText : 'alternativeText' ,
96
+ legend : 'legend' ,
97
+ licence : 'licence' ,
98
+ isBeta : false ,
99
+ } ) ,
100
+ ) ( ) ;
101
+
102
+ // then
103
+ expect ( error ) . to . be . instanceOf ( DomainError ) ;
104
+ expect ( error . message ) . to . equal ( 'The image URL must be from "assets.pix.org" when module is production ready' ) ;
105
+ } ) ;
106
+ } ) ;
107
+ } ) ;
72
108
} ) ;
0 commit comments