-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathCustomElement_test.js
100 lines (93 loc) · 3.19 KB
/
CustomElement_test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
import { CustomElement } from '../../../../../../src/devcomp/domain/models/element/CustomElement.js';
import { DomainError } from '../../../../../../src/shared/domain/errors.js';
import { catchErrSync, expect } from '../../../../../test-helper.js';
describe('Unit | Devcomp | Domain | Models | Element | CustomElement', function () {
describe('#constructor', function () {
it('should create a valid CustomElement object', function () {
// given
const attributes = {
id: '5ce0ddf1-8620-43b5-9e43-cd9b2ffaca17',
tagName: 'qcu-image',
props: {
name: "Liste d'applications",
maxChoicesPerLine: 3,
imageChoicesSize: 'icon',
choices: [
{
name: 'Google',
image: {
width: 534,
height: 544,
loading: 'lazy',
decoding: 'async',
src: 'https://epreuves.pix.fr/_astro/Google.B1bcY5Go_1BynY8.svg',
},
},
{
name: 'LibreOffice Writer',
image: {
width: 205,
height: 246,
loading: 'lazy',
decoding: 'async',
src: 'https://epreuves.pix.fr/_astro/writer.3bR8N2DK_Z1iWuJ9.webp',
},
},
{
name: 'Explorateur',
image: {
width: 128,
height: 128,
loading: 'lazy',
decoding: 'async',
src: 'https://epreuves.pix.fr/_astro/windows-file-explorer.CnF8MYwI_23driA.webp',
},
},
{
name: 'Geogebra',
image: {
width: 640,
height: 640,
loading: 'lazy',
decoding: 'async',
src: 'https://epreuves.pix.fr/_astro/geogebra.CZH9VYqc_19v4nj.webp',
},
},
],
},
};
// when
const result = new CustomElement(attributes);
// then
expect(result.id).to.equal(attributes.id);
expect(result.tagName).to.equal(attributes.tagName);
expect(result.props).to.deep.equal(attributes.props);
expect(result.type).to.equal('custom');
});
});
describe('A CustomElement without a tagName', function () {
it('should throw an error', function () {
const attributes = {
id: '5ce0ddf1-8620-43b5-9e43-cd9b2ffaca17',
};
// when
const error = catchErrSync(() => new CustomElement(attributes))();
// then
expect(error).to.be.instanceOf(DomainError);
expect(error.message).to.equal('The tagName is required for a CustomElement element');
});
});
describe('A CustomElement without props', function () {
it('should throw an error', function () {
const attributes = {
id: '5ce0ddf1-8620-43b5-9e43-cd9b2ffaca17',
tagName: 'qcu-image',
};
// when
const error = catchErrSync(() => new CustomElement(attributes))();
// then
expect(error).to.be.instanceOf(DomainError);
expect(error.message).to.equal('The props are required for a CustomElement element');
});
});
});