-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathinsights-test.js
705 lines (621 loc) · 30.6 KB
/
insights-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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
import { clickByName, fillByLabel, visit, waitForElementToBeRemoved } from '@1024pix/ember-testing-library';
import { click, currentURL, fillIn } from '@ember/test-helpers';
import { setupMirage } from 'ember-cli-mirage/test-support';
import { setupApplicationTest } from 'ember-qunit';
import { module, test } from 'qunit';
import { authenticateAdminMemberWithRole } from '../../../../helpers/test-init';
module('Acceptance | Target Profile Insights', function (hooks) {
setupApplicationTest(hooks);
setupMirage(hooks);
module('Access restriction stuff', function (hooks) {
hooks.beforeEach(async function () {
const badge = server.create('badge', { id: 200 });
const stage = server.create('stage', { id: 100 });
const stageCollection = server.create('stage-collection', { id: 1, stages: [stage] });
server.create('target-profile', {
id: 1,
internalName: 'Profil cible extra croustillant',
badges: [badge],
stageCollection,
});
});
module('When admin member is not logged in', function () {
test('it should not be accessible by an unauthenticated user', async function (assert) {
// when / then
await visit('/target-profiles/1/insights');
assert.strictEqual(currentURL(), '/login');
await visit('/target-profiles/1/stages/100');
assert.strictEqual(currentURL(), '/login');
await visit('/target-profiles/1/badges/200');
assert.strictEqual(currentURL(), '/login');
});
});
module('When admin member is logged in', function () {
module('when admin member has role "SUPER_ADMIN", "SUPPORT" or "METIER"', function () {
test('it should be accessible for an authenticated user', async function (assert) {
// given
await authenticateAdminMemberWithRole({ isSuperAdmin: true })(server);
// when / then
await visit('/target-profiles/1/insights');
assert.strictEqual(currentURL(), '/target-profiles/1/insights');
await visit('/target-profiles/1/stages/100');
assert.strictEqual(currentURL(), '/target-profiles/1/stages/100');
await visit('/target-profiles/1/badges/200');
assert.strictEqual(currentURL(), '/target-profiles/1/badges/200');
});
test('it should set target-profiles menubar item active', async function (assert) {
// given
await authenticateAdminMemberWithRole({ isSuperAdmin: true })(server);
// when
const screen = await visit(`/target-profiles/1/insights`);
// then
assert.dom(screen.getByRole('link', { name: 'Profils cibles' })).hasClass('active');
});
});
module('when admin member has role "CERTIF"', function () {
test('it should be redirect to Organizations page', async function (assert) {
// given
await authenticateAdminMemberWithRole({ isCertif: true })(server);
// when / then
await visit('/target-profiles/1/insights');
assert.strictEqual(currentURL(), '/organizations/list');
await visit('/target-profiles/1/stages/100');
assert.strictEqual(currentURL(), '/organizations/list');
await visit('/target-profiles/1/badges/200');
assert.strictEqual(currentURL(), '/organizations/list');
});
});
});
});
module('Insights', function (hooks) {
let targetProfile, stageCollection;
hooks.beforeEach(async function () {
stageCollection = server.create('stage-collection', { id: 1, stages: [] });
targetProfile = server.create('target-profile', {
id: 1,
internalName: 'Profil cible extra croustillant',
stageCollection,
});
await authenticateAdminMemberWithRole({ isSuperAdmin: true })(server);
});
module('Stages', function () {
test('it should display a warning if target profile is linked to a campaign', async function (assert) {
// given
targetProfile.update({ hasLinkedCampaign: true });
// when
const screen = await visit('/target-profiles/1');
await clickByName('Clés de lecture');
// then
assert.strictEqual(currentURL(), '/target-profiles/1/insights');
assert.dom(screen.getByText('Ce profil cible est associé à une campagne, vous ne pouvez donc pas :')).exists();
});
test('it should not display this warning if target profile is not linked to a campaign', async function (assert) {
// given
targetProfile.update({ hasLinkedCampaign: false });
// when
const screen = await visit('/target-profiles/1');
await clickByName('Clés de lecture');
// then
assert.strictEqual(currentURL(), '/target-profiles/1/insights');
assert
.dom(screen.queryByText('Ce profil cible est associé à une campagne, vous ne pouvez donc pas :'))
.doesNotExist();
});
test('it should display existing stages', async function (assert) {
// given
const stage1 = server.create('stage', { id: 100, title: 'premier palier' });
const stage2 = server.create('stage', { id: 101, title: 'deuxième palier' });
stageCollection.update({ stages: [stage1, stage2] });
// when
const screen = await visit('/target-profiles/1');
await clickByName('Clés de lecture');
// then
assert.strictEqual(currentURL(), '/target-profiles/1/insights');
assert.dom(screen.getAllByText('premier palier')[0]).exists();
assert.dom(screen.getAllByText('deuxième palier')[0]).exists();
});
test('it should display stage details when clicking on "Voir détail"', async function (assert) {
// given
const stage = server.create('stage', {
id: 100,
level: 1,
threshold: null,
isFirstSkill: false,
title: 'premier palier',
message: 'message palier',
prescriberTitle: 'titre prescripteur',
prescriberDescription: 'description prescripteur',
});
stageCollection.update({ stages: [stage] });
// when
const screen = await visit('/target-profiles/1/insights');
await clickByName('Voir le détail du palier 100');
// then
assert.strictEqual(currentURL(), '/target-profiles/1/stages/100');
assert.dom(screen.getByText('ID : 100')).exists();
assert.dom(screen.getByText('Niveau : 1')).exists();
assert.dom(screen.getByText('Titre : premier palier')).exists();
assert.dom(screen.getByText('Message : message palier')).exists();
assert.dom(screen.getByText('Titre pour le prescripteur : titre prescripteur')).exists();
assert.dom(screen.getByText('Description pour le prescripteur : description prescripteur')).exists();
});
test('it should go back to insights when clicking on target profile header in details page', async function (assert) {
const stage = server.create('stage', { id: 100, title: 'premier palier' });
stageCollection.update({ stages: [stage] });
// when
await visit('/target-profiles/1/stages/100');
await clickByName('Profil cible extra croustillant');
// then
assert.strictEqual(currentURL(), '/target-profiles/1/insights');
});
test('it should cancel stage edition', async function (assert) {
// given
const stage = server.create('stage', { id: 100, title: 'titre initial' });
stageCollection.update({ stages: [stage] });
// when
const screen = await visit('/target-profiles/1');
await clickByName('Clés de lecture');
await clickByName('Voir le détail du palier 100');
await clickByName('Modifier');
await fillByLabel(/Titre du palier/, 'titre modifié');
await clickByName('Annuler');
// then
assert.strictEqual(currentURL(), '/target-profiles/1/stages/100');
assert.dom(screen.getByText('Titre : titre initial')).exists();
assert.dom(screen.queryByText('Enregistrer')).doesNotExist();
});
module('Stage level', function () {
test('it should add new stages', async function (assert) {
// when
const screen = await visit('/target-profiles/1');
await clickByName('Clés de lecture');
await clickByName('Palier par niveau');
await clickByName('Nouveau palier');
await clickByName('Nouveau palier');
await clickByName('Nouveau palier "1er acquis"');
const [firstStageTitleInput, secondStageTitleInput, firstSkillStageTitleInput] =
screen.getAllByLabelText(/Titre du palier/);
const [firstStageLevelButton, secondStageLevelButton] = screen.getAllByLabelText('Niveau du palier');
const [firstStageLevelMessage, secondStageLevelMessage, firstSkillStageLevelMessage] =
screen.getAllByLabelText(/Message du palier/);
await fillIn(firstStageTitleInput, 'mon premier palier');
await fillIn(secondStageTitleInput, 'mon deuxième palier');
await fillIn(firstSkillStageTitleInput, 'mon palier premier acquis');
await click(secondStageLevelButton);
await screen.findByRole('listbox');
await click(screen.getByRole('option', { name: '3' }));
await fillIn(firstStageLevelMessage, 'mon message un');
await fillIn(secondStageLevelMessage, 'mon message deux');
await fillIn(firstSkillStageLevelMessage, 'mon message premier acquis');
await clickByName('Enregistrer');
// then
assert.true(firstStageLevelButton.hasAttributes('aria-disabled', 'true'));
assert.dom(screen.getAllByText('mon premier palier')[0]).exists();
assert.dom(screen.getAllByText('mon deuxième palier')[0]).exists();
assert.dom(screen.getAllByText('mon palier premier acquis')[0]).exists();
assert.dom(screen.getAllByText('3')[0]).exists();
assert.dom(screen.getAllByText('0')[0]).exists();
assert.dom(screen.getAllByText('1er acquis')[0]).exists();
assert.dom(screen.getByText('mon message un')).exists();
assert.dom(screen.getByText('mon message deux')).exists();
assert.dom(screen.getByText('mon message premier acquis')).exists();
assert.dom(screen.queryByText('Enregistrer')).doesNotExist();
});
test('it should not display delete button stage on level 0 when there are other stages', async function (assert) {
// given
const stage = server.create('stage', {
id: 100,
level: 0,
threshold: null,
title: 'premier palier',
message: 'message palier',
prescriberTitle: 'titre prescripteur',
prescriberDescription: 'description prescripteur',
});
const anotherStage = server.create('stage', {
id: 101,
level: 1,
threshold: null,
title: 'deuxième palier',
message: 'message palier',
prescriberTitle: 'titre prescripteur',
prescriberDescription: 'description prescripteur',
});
stageCollection.update({ stages: [stage, anotherStage] });
// when
await visit('/target-profiles/1/insights');
// then
assert.dom('[aria-label="Voir le détail du palier 100"]').exists();
assert.dom('[aria-label="Voir le détail du palier 101"]').exists();
assert.dom('[aria-label="Supprimer le palier 100"]').doesNotExist();
assert.dom('[aria-label="Supprimer le palier 101"]').exists();
});
test('it should edit the stage information', async function (assert) {
// given
const stage = server.create('stage', {
id: 100,
level: 2,
threshold: null,
title: 'ancien titre',
message: 'ancien message',
prescriberTitle: 'ancien titre prescripteur',
prescriberDescription: 'ancienne description prescripteur',
});
stageCollection.update({ stages: [stage] });
// when
const screen = await visit('/target-profiles/1');
await clickByName('Clés de lecture');
await clickByName('Voir le détail du palier 100');
await clickByName('Modifier');
await click(screen.getByRole('button', { name: 'Niveau' }));
await screen.findByRole('listbox');
await click(screen.getByRole('option', { name: '1' }));
await fillByLabel(/Titre du palier/, 'nouveau titre');
await fillByLabel('Message', 'nouveau message');
await fillByLabel('Titre pour le prescripteur', 'nouveau titre prescripteur');
await fillByLabel('Description pour le prescripteur', 'nouvelle description prescripteur');
await clickByName('Enregistrer');
// then
assert.strictEqual(currentURL(), '/target-profiles/1/stages/100');
assert.dom(screen.getByText('ID : 100')).exists();
assert.dom(screen.getByText('Niveau : 1')).exists();
assert.dom(screen.getByText('Titre : nouveau titre')).exists();
assert.dom(screen.getByText('Message : nouveau message')).exists();
assert.dom(screen.getByText('Titre pour le prescripteur : nouveau titre prescripteur')).exists();
assert.dom(screen.getByText('Description pour le prescripteur : nouvelle description prescripteur')).exists();
assert.dom(screen.queryByText('Enregistrer')).doesNotExist();
});
});
module('Stage threshold', function () {
test('it should add new stages', async function (assert) {
// when
const screen = await visit('/target-profiles/1');
await clickByName('Clés de lecture');
await clickByName('Palier par seuil');
await clickByName('Nouveau palier');
await clickByName('Nouveau palier');
const [firstStageTitleInput, secondStageTitleInput] = screen.getAllByLabelText(/Titre du palier/);
const [firstStageThresholdInput, secondStageThresholdInput] = screen.getAllByLabelText(/Seuil/);
const [firstStageLevelMessage, secondStageLevelMessage] = screen.getAllByLabelText(/Message du palier/);
await fillIn(firstStageTitleInput, 'mon premier palier');
await fillIn(secondStageTitleInput, 'mon deuxième palier');
await fillIn(secondStageThresholdInput, 50);
await fillIn(firstStageLevelMessage, 'mon message 1');
await fillIn(secondStageLevelMessage, 'mon message 2');
await clickByName('Enregistrer');
// then
assert.true(firstStageThresholdInput.hasAttributes('value', '0'));
assert.dom(screen.getAllByText('mon premier palier')[0]).exists();
assert.dom(screen.getAllByText('mon deuxième palier')[0]).exists();
assert.dom(screen.getAllByText('0%')[0]).exists();
assert.dom(screen.getAllByText('50%')[0]).exists();
assert.dom(screen.getByText('mon message 1')).exists();
assert.dom(screen.getByText('mon message 2')).exists();
assert.dom(screen.queryByText('Enregistrer')).doesNotExist();
});
test('it should not display delete button stage on threshold 0 when there are other stages', async function (assert) {
// given
const stage = server.create('stage', {
id: 100,
level: null,
threshold: 0,
title: 'premier palier',
message: 'message palier',
prescriberTitle: 'titre prescripteur',
prescriberDescription: 'description prescripteur',
});
const anotherStage = server.create('stage', {
id: 101,
level: null,
threshold: 50,
title: 'deuxième palier',
message: 'message palier',
prescriberTitle: 'titre prescripteur',
prescriberDescription: 'description prescripteur',
});
stageCollection.update({ stages: [stage, anotherStage] });
// when
await visit('/target-profiles/1/insights');
// then
assert.dom('[aria-label="Voir le détail du palier 100"]').exists();
assert.dom('[aria-label="Voir le détail du palier 101"]').exists();
assert.dom('[aria-label="Supprimer le palier 100"]').doesNotExist();
assert.dom('[aria-label="Supprimer le palier 101"]').exists();
});
test('it should edit the stage information', async function (assert) {
// given
const stage = server.create('stage', {
id: 100,
threshold: 10,
level: null,
title: 'ancien titre',
message: 'ancien message',
prescriberTitle: 'ancien titre prescripteur',
prescriberDescription: 'ancienne description prescripteur',
});
stageCollection.update({ stages: [stage] });
// when
const screen = await visit('/target-profiles/1');
await clickByName('Clés de lecture');
await clickByName('Voir le détail du palier 100');
await clickByName('Modifier');
await fillByLabel(/Seuil/, 20);
await fillByLabel(/Titre du palier/, 'nouveau titre');
await fillByLabel('Message', 'nouveau message');
await fillByLabel('Titre pour le prescripteur', 'nouveau titre prescripteur');
await fillByLabel('Description pour le prescripteur', 'nouvelle description prescripteur');
await clickByName('Enregistrer');
// then
assert.strictEqual(currentURL(), '/target-profiles/1/stages/100');
assert.dom(screen.getByText('ID : 100')).exists();
assert.dom(screen.getByText('Seuil : 20')).exists();
assert.dom(screen.getByText('Titre : nouveau titre')).exists();
assert.dom(screen.getByText('Message : nouveau message')).exists();
assert.dom(screen.getByText('Titre pour le prescripteur : nouveau titre prescripteur')).exists();
assert.dom(screen.getByText('Description pour le prescripteur : nouvelle description prescripteur')).exists();
assert.dom(screen.queryByText('Enregistrer')).doesNotExist();
});
});
});
module('Badges', function () {
test('it should display existing badges', async function (assert) {
// given
const badge1 = server.create('badge', { id: 100, key: 'KEY_BADGE_1' });
const badge2 = server.create('badge', { id: 101, key: 'KEY_BADGE_2' });
targetProfile.update({ badges: [badge1, badge2] });
// when
const screen = await visit('/target-profiles/1');
await clickByName('Clés de lecture');
// then
assert.strictEqual(currentURL(), '/target-profiles/1/insights');
assert.dom(screen.getByText('KEY_BADGE_1')).exists();
assert.dom(screen.getByText('KEY_BADGE_2')).exists();
});
test('it should display badge details when clicking on "Voir détail"', async function (assert) {
// given
const badge = server.create('badge', {
id: 100,
key: 'KEY_BADGE_1',
title: 'tagada',
message: 'Coucou les zamis',
imageUrl: 'image.png',
altMessage: 'alt COUCOU LES ZAMIS',
isCertifiable: true,
isAlwaysVisible: true,
criteria: [],
});
targetProfile.update({ badges: [badge] });
// when
const screen = await visit('/target-profiles/1');
await clickByName('Clés de lecture');
await clickByName('Voir le détail du badge tagada');
// then
assert.strictEqual(currentURL(), '/target-profiles/1/badges/100');
assert.dom(screen.getByText('100')).exists();
assert.dom(screen.getByText('tagada')).exists();
assert.dom(screen.getByText('image.png')).exists();
assert.dom(screen.getByText('KEY_BADGE_1')).exists();
assert.dom(screen.getByText('Coucou les zamis')).exists();
assert.dom(screen.getByText('alt COUCOU LES ZAMIS')).exists();
assert.dom(screen.getByText('Certifiable')).exists();
assert.dom(screen.getByText('Lacunes')).exists();
assert.deepEqual(
screen.getByTestId('campaign-criterion-text').innerText,
"L'évalué doit obtenir 50% sur l'ensemble des sujets du profil cible.",
);
});
test('it should go back to insights when clicking on target profile header in details page', async function (assert) {
const badge = server.create('badge', { id: 100, key: 'KEY_BADGE_1', title: 'tagada' });
targetProfile.update({ badges: [badge] });
// when
await visit('/target-profiles/1/badges/100');
await clickByName('Profil cible extra croustillant');
// then
assert.strictEqual(currentURL(), '/target-profiles/1/insights');
});
test('it should edit the badge information', async function (assert) {
// given
const badge = server.create('badge', {
id: 100,
key: 'OLD_KEY',
title: 'ancien titre',
message: 'ancien message',
imageUrl: 'old_image.png',
altMessage: 'ancien alt',
isCertifiable: false,
isAlwaysVisible: true,
criteria: [],
});
targetProfile.update({ badges: [badge] });
// when
const screen = await visit('/target-profiles/1');
await clickByName('Clés de lecture');
await clickByName('Voir le détail du badge ancien titre');
await clickByName('Modifier les informations');
await fillIn(screen.getByLabelText('Titre *', { exact: false }), 'nouveau titre');
await fillIn(screen.getByLabelText('Clé *', { exact: false }), 'NEW_KEY');
await fillByLabel('Message', 'nouveau message');
await fillIn(screen.getByLabelText("Nom de l'image (svg) *", { exact: false }), 'new_image.svg');
await fillIn(screen.getByLabelText('Message Alternatif *', { exact: false }), 'nouveau alt');
await clickByName('Certifiable');
await clickByName('Lacunes');
await clickByName('Enregistrer');
// then
assert.strictEqual(currentURL(), '/target-profiles/1/badges/100');
assert.dom(screen.getByText('100')).exists();
assert.dom(screen.getByText('nouveau titre')).exists();
assert.dom(screen.getByText('new_image.svg')).exists();
assert.dom(screen.getByText('NEW_KEY')).exists();
assert.dom(screen.getByText('nouveau message')).exists();
assert.dom(screen.getByText('nouveau alt')).exists();
assert.dom(screen.getByText('Certifiable')).exists();
assert.dom(screen.queryByText('Lacunes')).doesNotExist();
assert.dom(screen.queryByTestId('save-badge-edit')).doesNotExist();
});
test('it should cancel badge edition', async function (assert) {
// given
const badge = server.create('badge', { id: 100, title: 'tagada' });
targetProfile.update({ badges: [badge] });
// when
const screen = await visit('/target-profiles/1');
await clickByName('Clés de lecture');
await clickByName('Voir le détail du badge tagada');
await clickByName('Modifier les informations');
await fillIn(screen.getByLabelText('Titre *', { exact: false }), 'tsouintsouin');
await clickByName('Annuler');
// then
assert.strictEqual(currentURL(), '/target-profiles/1/badges/100');
assert.dom(screen.getByText('tagada')).exists();
assert.dom(screen.queryByTestId('save-badge-edit')).doesNotExist();
});
test('it should create a badge', async function (assert) {
// given
const tubeThematicDeux = server.create('tube', {
id: 'tubeThematicDeuxNiveauQuatre',
name: '@tubeThematicDeuxNiveauQuatre',
practicalTitle: 'Mon tube thématique 2 de niveau quatre',
practicalDescription: 'Un tube très intéressant de niveau quatre',
mobile: false,
tablet: true,
level: 4,
});
const tubeThematicUn = server.create('tube', {
id: 'tubeThematicUnNiveauDeux',
name: '@tubeThematicUnNiveauDeux',
practicalTitle: 'Mon tube thématique 1 de niveau deux',
mobile: false,
tablet: false,
level: 2,
});
const thematicDeux = server.create('thematic', {
id: 'thematicDeux',
index: '2',
name: 'thematicDeux',
tubes: [tubeThematicDeux],
});
const thematicUn = server.create('thematic', {
id: 'thematicUn',
index: '1',
name: 'thematicUn',
tubes: [tubeThematicUn],
});
const competenceUn = server.create('competence', {
id: 'competenceUn',
name: 'competenceUn',
index: '1.1',
thematics: [thematicUn, thematicDeux],
});
const areaUn = server.create('area', {
id: 'areaUn',
title: 'areaUn',
code: '1',
color: 'blue',
frameworkId: 'frameworkId',
competences: [competenceUn],
});
targetProfile.update({ areas: [areaUn] });
// when
const screen = await visit('/target-profiles/1');
await clickByName('Clés de lecture');
await clickByName('Nouveau badge');
await fillByLabel(/Nom du badge :/, 'Mon nouveau badge');
await fillIn(screen.getByLabelText("Nom de l'image (svg) *", { exact: false }), 'troll.png');
await fillByLabel(/Texte alternatif pour l'image :/, 'Je mets du png je fais ce que je veux');
await fillByLabel('Message :', 'message de mon badge');
await fillByLabel(/Clé/, 'MY_BADGE');
await clickByName('Certifiable');
await clickByName('Lacunes');
await clickByName("sur l'ensemble du profil cible");
await clickByName('sur une sélection de sujets du profil cible');
await clickByName('Ajouter une nouvelle sélection de sujets');
const [tubeGroupNameInput] = screen.getAllByLabelText('Nom du critère :');
await fillIn(tubeGroupNameInput, "Le tube de l'année");
const thresholdInputs = screen.getAllByLabelText('Taux de réussite requis *', { exact: false });
await fillIn(thresholdInputs[0], 50);
await fillIn(thresholdInputs[1], 60);
await fillIn(thresholdInputs[2], 70);
const areaButtons = screen.getAllByText('1 · areaUn');
await click(areaButtons[0]);
await click(areaButtons[1]);
const competenceButtons = screen.getAllByText('1.1 competenceUn');
await click(competenceButtons[0]);
await click(competenceButtons[1]);
const thematicUnButtons = screen.getAllByText('thematicUn');
await click(thematicUnButtons[0]);
const thematicDeuxButtons = screen.getAllByText('thematicDeux');
await click(thematicDeuxButtons[1]);
const selectLevelTubeThematicUnNiveauDeux = screen.getAllByRole('button', {
name: 'Sélection du niveau du sujet suivant : Mon tube thématique 1 de niveau deux',
});
await click(selectLevelTubeThematicUnNiveauDeux[0]);
await screen.findByRole('listbox');
await click(screen.getByRole('option', { name: '2' }));
await waitForElementToBeRemoved(() => screen.queryByRole('listbox'));
const selectLevelTubeThematicDeuxNiveauQuatre = screen.getAllByRole('button', {
name: 'Sélection du niveau du sujet suivant : Mon tube thématique 2 de niveau quatre',
});
await click(selectLevelTubeThematicDeuxNiveauQuatre[1]);
await screen.findByRole('listbox');
await click(screen.getByRole('option', { name: '3' }));
await waitForElementToBeRemoved(() => screen.queryByRole('listbox'));
await clickByName('Enregistrer le badge');
await clickByName('Voir le détail du badge Mon nouveau badge');
// then
assert.strictEqual(currentURL(), '/target-profiles/1/badges/1');
assert.dom(screen.getByText('1')).exists();
assert.dom(screen.getByText('Mon nouveau badge')).exists();
assert.dom(screen.getByText('troll.png')).exists();
assert.dom(screen.getByText('MY_BADGE')).exists();
assert.dom(screen.getByText('message de mon badge')).exists();
assert.dom(screen.getByText('Je mets du png je fais ce que je veux')).exists();
assert.dom(screen.getByText('Certifiable')).exists();
assert.dom(screen.getByText('Lacunes')).exists();
assert.dom(screen.getByText("Critère d'obtention basé sur l'ensemble du profil cible :")).exists();
assert.deepEqual(
screen.getByTestId('campaign-criterion-text').innerText,
"L'évalué doit obtenir 50% sur l'ensemble des sujets du profil cible.",
);
assert
.dom(screen.getByText("Liste des critères d'obtention basés sur une sélection de sujets du profil cible :"))
.exists();
const labelsForCappedTubes = screen.getAllByTestId('toujourstriste');
assert.deepEqual(
labelsForCappedTubes[0].innerText,
"L'évalué doit obtenir 60% sur le groupe Le tube de l'année possédant les sujets plafonnés par niveau suivants :",
);
assert.deepEqual(
labelsForCappedTubes[1].innerText,
"L'évalué doit obtenir 70% sur tous les sujets plafonnés par niveau suivants :",
);
});
test('it should cancel badge creation', async function (assert) {
// when
const screen = await visit('/target-profiles/1');
await clickByName('Clés de lecture');
await clickByName('Nouveau badge');
await clickByName('Annuler');
// then
assert.strictEqual(currentURL(), '/target-profiles/1/insights');
assert.dom(screen.queryByText('Enregistrer')).doesNotExist();
assert.dom(screen.queryByText('Voir détail')).doesNotExist();
});
test('it should edit a campaign criterion', async function (assert) {
// given
const badge = server.create('badge');
targetProfile.update({ badges: [badge] });
// when
const screen = await visit(`/target-profiles/1/badges/${badge.id}`);
await clickByName('Modifier le seuil de ce critère');
await screen.findByRole('dialog');
await fillByLabel(/Nouveau seuil d'obtention du critère :/, 99);
await click(screen.getByRole('button', { name: 'Enregistrer' }));
// then
assert.dom(screen.getByText("Seuil d'obtention du critère modifié avec succès.")).exists();
assert.deepEqual(
screen.getByTestId('campaign-criterion-text').innerText,
"L'évalué doit obtenir 99% sur l'ensemble des sujets du profil cible.",
);
});
});
});
});