-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathindex-test.gjs
101 lines (89 loc) · 3.67 KB
/
index-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
import { render as renderScreen, within } from '@1024pix/ember-testing-library';
import Badges from 'pix-admin/components/complementary-certifications/attach-badges/badges/index';
import { module, test } from 'qunit';
import sinon from 'sinon';
import setupIntlRenderingTest from '../../../../../helpers/setup-intl-rendering';
module('Integration | Component | complementary-certifications/attach-badges/badges', function (hooks) {
setupIntlRenderingTest(hooks);
module('when data are loading', function () {
test('it should display the loader', async function (assert) {
// given
const store = this.owner.lookup('service:store');
store.queryRecord = sinon.stub().returns(new Promise(() => {}));
const attachableTargetProfile = store.createRecord('attachable-target-profile', {
name: 'ALEX TARGET',
id: 1,
});
const noop = () => {};
// when
const screen = await renderScreen(
<template><Badges @targetProfile={{attachableTargetProfile}} @onError={{noop}} /></template>,
);
// then
assert.dom(screen.getByRole('progressbar', { name: 'chargement' })).exists();
assert.dom(screen.queryByRole('alert')).doesNotExist();
});
});
module('when data are loaded', function () {
module('when there are no badges', function () {
test('it should display an error message when there are no badges provided', async function (assert) {
// given
const store = this.owner.lookup('service:store');
store.queryRecord = sinon.stub().resolves({
hasMany: sinon.stub().returns({
value: sinon.stub().returns([]),
}),
});
const attachableTargetProfile = store.createRecord('attachable-target-profile', {
name: 'ALEX TARGET',
id: 1,
});
const noop = () => {};
// when
const screen = await renderScreen(
<template><Badges @targetProfile={{attachableTargetProfile}} @onError={{noop}} /></template>,
);
// then
assert
.dom(
screen.getByRole('alert', {
value:
'Seul un profil cible comportant au moins un badge certifiant peut être rattaché à une certification complémentaire. Le profil cible que vous avez sélectionné ne comporte pas de badge certifiant. Veuillez le modifier puis rafraîchir cette page ou bien sélectionner un autre profil cible.',
}),
)
.exists();
});
});
module('when there are badges', function () {
test('it should display target profile badges', async function (assert) {
// given
const store = this.owner.lookup('service:store');
store.queryRecord = sinon.stub().resolves({
hasMany: sinon.stub().returns({
value: sinon.stub().returns([
{
id: 1000,
title: 'canards',
isCertifiable: true,
},
]),
}),
});
const attachableTargetProfile = store.createRecord('attachable-target-profile', {
name: 'ALEX TARGET',
id: 1,
});
const noop = () => {};
// when
const screen = await renderScreen(
<template><Badges @targetProfile={{attachableTargetProfile}} @onError={{noop}} /></template>,
);
// then
assert.dom(await screen.queryByRole('alert')).doesNotExist();
const table = screen.getByRole('table', { name: 'Liste des badges' });
assert.dom(within(table).getByRole('cell', { name: '1000' })).exists();
assert.dom(within(table).getByRole('cell', { name: 'canards' })).exists();
});
});
});
});