-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathtarget-profile-test.gjs
106 lines (90 loc) · 4.31 KB
/
target-profile-test.gjs
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
101
102
103
104
105
106
import { render } from '@1024pix/ember-testing-library';
import { t } from 'ember-intl/test-support';
import TargetProfile from 'pix-admin/components/target-profiles/target-profile';
import { module, test } from 'qunit';
import setupIntlRenderingTest from '../../../helpers/setup-intl-rendering';
module('Integration | Component | TargetProfile', function (hooks) {
setupIntlRenderingTest(hooks);
const targetProfileSampleData = {
areKnowledgeElementsResettable: false,
category: 'PREDEFINED',
createdAt: new Date('2024-03-01'),
hasLinkedCampaign: false,
hasLinkedAutonomousCourse: false,
id: 666,
isSimplifiedAccess: false,
maxLevel: 7,
name: 'Dummy target-profile',
outdated: false,
ownerOrganizationId: '100',
tubesCount: 6,
};
module('target profile overview section', function () {
module('basic informations', function () {
test('it should display target profile basic informations', async function (assert) {
//given
const model = { ...targetProfileSampleData };
// when
const screen = await render(<template><TargetProfile @model={{model}} /></template>);
// then
assert.ok(_findByListItemText(screen, `ID : ${model.id}`));
assert.ok(_findByListItemText(screen, `Organisation de référence : ${model.ownerOrganizationId}`));
assert.ok(_findByListItemText(screen, 'Date de création : 01/03/2024'));
assert.ok(_findByListItemText(screen, 'Obsolète : Non'));
assert.ok(_findByListItemText(screen, 'Parcours Accès Simplifié : Non'));
assert.ok(_findByListItemText(screen, `${t('pages.target-profiles.resettable-checkbox.label')} : Non`));
assert.ok(_findByListItemText(screen, `${t('pages.target-profiles.tubes-count')} : ${model.tubesCount}`));
});
});
module('when no campaign is linked', function () {
test('it should display a no-link information', async function (assert) {
// given
const model = { ...targetProfileSampleData };
// when
const screen = await render(<template><TargetProfile @model={{model}} /></template>);
// then
assert.dom(_findByListItemText(screen, 'Est associé à une campagne : Oui')).doesNotExist();
assert.dom(_findByListItemText(screen, 'Est associé à un parcours autonome : Oui')).doesNotExist();
assert.dom(_findByListItemText(screen, 'Associé à une campagne ou un parcours autonome : Non')).exists();
});
});
module('when a campaign is linked', function () {
test('it should display a link information', async function (assert) {
// given
const model = { ...targetProfileSampleData, hasLinkedCampaign: true };
// when
const screen = await render(<template><TargetProfile @model={{model}} /></template>);
// then
assert.dom(_findByListItemText(screen, 'Est associé à une campagne : Oui')).exists();
assert.dom(_findByListItemText(screen, 'Est associé à un parcours autonome : Oui')).doesNotExist();
assert.dom(_findByListItemText(screen, 'Associé à une campagne ou un parcours autonome : Non')).doesNotExist();
});
});
module('when an autonomous course is linked', function () {
test('it should display specific information', async function (assert) {
// given
const model = {
...targetProfileSampleData,
hasLinkedCampaign: true,
hasLinkedAutonomousCourse: true,
isSimplifiedAccess: true,
};
// when
const screen = await render(<template><TargetProfile @model={{model}} /></template>);
// then
assert.dom(_findByListItemText(screen, 'Est associé à une campagne : Oui')).exists();
assert.dom(_findByListItemText(screen, 'Est associé à un parcours autonome : Oui')).exists();
assert.dom(_findByListItemText(screen, 'Associé à une campagne ou un parcours autonome : Non')).doesNotExist();
assert.dom(_findByListItemText(screen, 'Parcours Accès Simplifié : Oui')).exists();
});
});
});
});
function _findByListItemText(screen, text) {
return (
screen.getAllByRole('listitem').find((listitem) => {
const cleanListItemText = listitem.textContent.replace(/(\r\n|\n|\r)/gm, '').trim();
return cleanListItemText === text;
}) || null
);
}