|
| 1 | +import { render } from '@1024pix/ember-testing-library'; |
| 2 | +import Service from '@ember/service'; |
| 3 | +import { setupRenderingTest } from 'ember-qunit'; |
| 4 | +import Cgu from 'pix-admin/components/users/cgu'; |
| 5 | +import { module, test } from 'qunit'; |
| 6 | + |
| 7 | +import setupIntl from '../../../helpers/setup-intl'; |
| 8 | + |
| 9 | +module('Integration | Component | cgu', function (hooks) { |
| 10 | + setupRenderingTest(hooks); |
| 11 | + setupIntl(hooks); |
| 12 | + |
| 13 | + class AccessControlStub extends Service { |
| 14 | + hasAccessToUsersActionsScope = true; |
| 15 | + } |
| 16 | + |
| 17 | + hooks.beforeEach(function () { |
| 18 | + this.intl = this.owner.lookup('service:intl'); |
| 19 | + this.owner.register('service:access-control', AccessControlStub); |
| 20 | + }); |
| 21 | + |
| 22 | + test('displays correct Terms of Service status for Pix App, Pix Orga and Pix Certif', async function (assert) { |
| 23 | + //Given |
| 24 | + |
| 25 | + const cgu = true; |
| 26 | + const lastTermsOfServiceValidatedAt = new Date('2021-12-10'); |
| 27 | + const pixOrgaTermsOfServiceAccepted = true; |
| 28 | + const lastPixOrgaTermsOfServiceValidatedAt = null; |
| 29 | + const pixCertifTermsOfServiceAccepted = false; |
| 30 | + const lastPixCertifTermsOfServiceValidatedAt = null; |
| 31 | + |
| 32 | + const appDomain = this.intl.t('components.users.user-detail-personal-information.cgu.validation.domain.pix-app'); |
| 33 | + const validatedWithDate = this.intl.t( |
| 34 | + 'components.users.user-detail-personal-information.cgu.validation.status.validated-with-date', |
| 35 | + { formattedDate: '10/12/2021' }, |
| 36 | + ); |
| 37 | + |
| 38 | + const orgaDomain = this.intl.t('components.users.user-detail-personal-information.cgu.validation.domain.pix-orga'); |
| 39 | + const validated = this.intl.t('components.users.user-detail-personal-information.cgu.validation.status.validated'); |
| 40 | + |
| 41 | + const certifDomain = this.intl.t( |
| 42 | + 'components.users.user-detail-personal-information.cgu.validation.domain.pix-certif', |
| 43 | + ); |
| 44 | + const nonValidated = this.intl.t( |
| 45 | + 'components.users.user-detail-personal-information.cgu.validation.status.non-validated', |
| 46 | + ); |
| 47 | + |
| 48 | + //When |
| 49 | + const screen = await render( |
| 50 | + <template> |
| 51 | + <Cgu |
| 52 | + @lastTermsOfServiceValidatedAt={{lastTermsOfServiceValidatedAt}} |
| 53 | + @cgu={{cgu}} |
| 54 | + @lastPixOrgaTermsOfServiceValidatedAt={{lastPixOrgaTermsOfServiceValidatedAt}} |
| 55 | + @pixOrgaTermsOfServiceAccepted={{pixOrgaTermsOfServiceAccepted}} |
| 56 | + @lastPixCertifTermsOfServiceValidatedAt={{lastPixCertifTermsOfServiceValidatedAt}} |
| 57 | + @pixCertifTermsOfServiceAccepted={{pixCertifTermsOfServiceAccepted}} |
| 58 | + /> |
| 59 | + </template>, |
| 60 | + ); |
| 61 | + |
| 62 | + //Then |
| 63 | + assert.dom(screen.queryByText(`${appDomain} ${validatedWithDate}`)).exists(); |
| 64 | + assert.dom(screen.queryByText(`${orgaDomain} ${validated}`)).exists(); |
| 65 | + assert.dom(screen.queryByText(`${certifDomain} ${nonValidated}`)).exists(); |
| 66 | + }); |
| 67 | +}); |
0 commit comments