|
1 |
| -import { clickByName, render, within } from '@1024pix/ember-testing-library'; |
| 1 | +import { clickByName, clickByText, render } from '@1024pix/ember-testing-library'; |
2 | 2 | import { click } from '@ember/test-helpers';
|
3 | 3 | import { t } from 'ember-intl/test-support';
|
4 | 4 | import ModulixNavbar from 'mon-pix/components/module/navbar';
|
5 | 5 | import { module, test } from 'qunit';
|
| 6 | +import sinon from 'sinon'; |
6 | 7 |
|
7 | 8 | import setupIntlRenderingTest from '../../../helpers/setup-intl-rendering';
|
8 |
| -import { waitForDialog } from '../../../helpers/wait-for'; |
| 9 | +import { waitForDialog, waitForDialogClose } from '../../../helpers/wait-for'; |
9 | 10 |
|
10 | 11 | module('Integration | Component | Module | Navbar', function (hooks) {
|
11 | 12 | setupIntlRenderingTest(hooks);
|
@@ -126,26 +127,88 @@ module('Integration | Component | Module | Navbar', function (hooks) {
|
126 | 127 | await waitForDialog();
|
127 | 128 |
|
128 | 129 | // then
|
129 |
| - assert.ok(screen); |
130 |
| - const list = screen.getByRole('list'); |
131 |
| - assert.dom(list).exists(); |
132 |
| - const items = within(list).getAllByRole('listitem'); |
133 |
| - assert.strictEqual(items.length, 3); |
134 |
| - assert.strictEqual(items[0].textContent.trim(), t('pages.modulix.grain.tag.discovery')); |
135 |
| - assert.strictEqual(items[1].textContent.trim(), t('pages.modulix.grain.tag.activity')); |
136 |
| - assert.strictEqual(items[2].textContent.trim(), t('pages.modulix.grain.tag.lesson')); |
137 |
| - assert.dom(items[2]).hasAria('current', 'step'); |
138 |
| - assert.dom(screen.queryByRole('listitem', { name: t('pages.modulix.grain.tag.summary') })).doesNotExist(); |
| 130 | + assert.strictEqual( |
| 131 | + screen.getByRole('link', { name: 'Découverte' }).textContent.trim(), |
| 132 | + t('pages.modulix.grain.tag.discovery'), |
| 133 | + ); |
| 134 | + assert.strictEqual( |
| 135 | + screen.getByRole('link', { name: 'Activité' }).textContent.trim(), |
| 136 | + t('pages.modulix.grain.tag.activity'), |
| 137 | + ); |
| 138 | + assert.strictEqual( |
| 139 | + screen.getByRole('link', { name: 'Leçon' }).textContent.trim(), |
| 140 | + t('pages.modulix.grain.tag.lesson'), |
| 141 | + ); |
| 142 | + assert.dom(screen.getByRole('link', { name: 'Leçon' })).hasAria('current', 'step'); |
| 143 | + |
| 144 | + assert.dom(screen.queryByRole('link', { name: "Récap'" })).doesNotExist(); |
| 145 | + }); |
| 146 | + |
| 147 | + module('when user clicks on grain’s type', function () { |
| 148 | + test('should call goToGrain action on matching grain element', async function (assert) { |
| 149 | + // given |
| 150 | + const module = createModule(this.owner); |
| 151 | + const threeFirstGrains = module.grains.slice(0, -1); |
| 152 | + const goToGrainSpy = sinon.spy(); |
| 153 | + |
| 154 | + // when |
| 155 | + await render( |
| 156 | + <template> |
| 157 | + <ModulixNavbar |
| 158 | + @currentStep={{3}} |
| 159 | + @totalSteps={{4}} |
| 160 | + @module={{module}} |
| 161 | + @grainsToDisplay={{threeFirstGrains}} |
| 162 | + @goToGrain={{goToGrainSpy}} |
| 163 | + /> |
| 164 | + </template>, |
| 165 | + ); |
| 166 | + await clickByName('Afficher les étapes du module'); |
| 167 | + await waitForDialog(); |
| 168 | + await clickByText('Activité'); |
| 169 | + |
| 170 | + // then |
| 171 | + sinon.assert.calledOnce(goToGrainSpy); |
| 172 | + sinon.assert.calledWithExactly(goToGrainSpy, '234-abc'); |
| 173 | + assert.ok(true); |
| 174 | + }); |
| 175 | + |
| 176 | + test('should close sidebar', async function (assert) { |
| 177 | + // given |
| 178 | + const module = createModule(this.owner); |
| 179 | + const threeFirstGrains = module.grains.slice(0, -1); |
| 180 | + const goToGrainMock = sinon.mock(); |
| 181 | + |
| 182 | + // when |
| 183 | + const screen = await render( |
| 184 | + <template> |
| 185 | + <ModulixNavbar |
| 186 | + @currentStep={{3}} |
| 187 | + @totalSteps={{4}} |
| 188 | + @module={{module}} |
| 189 | + @grainsToDisplay={{threeFirstGrains}} |
| 190 | + @goToGrain={{goToGrainMock}} |
| 191 | + /> |
| 192 | + </template>, |
| 193 | + ); |
| 194 | + await clickByName('Afficher les étapes du module'); |
| 195 | + await waitForDialog(); |
| 196 | + await clickByText('Activité'); |
| 197 | + await waitForDialogClose(); |
| 198 | + |
| 199 | + // then |
| 200 | + assert.dom(screen.queryByRole('dialog', { name: module.title })).doesNotExist(); |
| 201 | + }); |
139 | 202 | });
|
140 | 203 | });
|
141 | 204 | });
|
142 | 205 |
|
143 | 206 | function createModule(owner) {
|
144 | 207 | const store = owner.lookup('service:store');
|
145 |
| - const grain1 = store.createRecord('grain', { title: 'Grain title', type: 'discovery' }); |
146 |
| - const grain2 = store.createRecord('grain', { title: 'Grain title', type: 'activity' }); |
147 |
| - const grain3 = store.createRecord('grain', { title: 'Grain title', type: 'lesson' }); |
148 |
| - const grain4 = store.createRecord('grain', { title: 'Grain title', type: 'summary' }); |
| 208 | + const grain1 = store.createRecord('grain', { title: 'Grain title', type: 'discovery', id: '123-abc' }); |
| 209 | + const grain2 = store.createRecord('grain', { title: 'Grain title', type: 'activity', id: '234-abc' }); |
| 210 | + const grain3 = store.createRecord('grain', { title: 'Grain title', type: 'lesson', id: '345-abc' }); |
| 211 | + const grain4 = store.createRecord('grain', { title: 'Grain title', type: 'summary', id: '456-abc' }); |
149 | 212 | return store.createRecord('module', {
|
150 | 213 | title: 'Didacticiel',
|
151 | 214 | grains: [grain1, grain2, grain3, grain4],
|
|
0 commit comments