-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(admin): add new route, model and and link for CGU
- Loading branch information
1 parent
ca76e7b
commit faa10a4
Showing
4 changed files
with
30 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import Route from '@ember/routing/route'; | ||
|
||
export default class UserCguRoute extends Route { | ||
async model() { | ||
const user = this.modelFor('authenticated.users.get'); | ||
return { | ||
cgu: user.cgu, | ||
pixOrgaTermsOfServiceAccepted: user.pixOrgaTermsOfServiceAccepted, | ||
pixCertifTermsOfServiceAccepted: user.pixCertifTermsOfServiceAccepted, | ||
lastTermsOfServiceValidatedAt: user.lastTermsOfServiceValidatedAt, | ||
lastPixOrgaTermsOfServiceValidatedAt: user.lastPixOrgaTermsOfServiceValidatedAt, | ||
lastPixCertifTermsOfServiceValidatedAt: user.lastPixCertifTermsOfServiceValidatedAt, | ||
}; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,9 +5,12 @@ import { setupApplicationTest } from 'ember-qunit'; | |
import { createAuthenticateSession } from 'pix-admin/tests/helpers/test-init'; | ||
import { module, test } from 'qunit'; | ||
|
||
import setupIntl from '../../../helpers/setup-intl'; | ||
|
||
module('Acceptance | authenticated/users/get', function (hooks) { | ||
setupApplicationTest(hooks); | ||
setupMirage(hooks); | ||
setupIntl(hooks); | ||
|
||
test('access to user details page by URL /users/:id', async function (assert) { | ||
// when | ||
|
@@ -20,14 +23,14 @@ module('Acceptance | authenticated/users/get', function (hooks) { | |
|
||
test('displays user detail information page', async function (assert) { | ||
// given | ||
this.intl = this.owner.lookup('service:intl'); | ||
const user = await _buildAndAuthenticateUser(this.server, { email: '[email protected]', username: null }); | ||
const expectedOrganizationMembershipsCount = 2; | ||
const expectedParticipationCount = 1; | ||
const expectedCertificationCenterCount = 3; | ||
|
||
// when | ||
const screen = await visit(`/users/${user.id}`); | ||
|
||
// then | ||
assert.dom(screen.getByRole('heading', { name: "Informations de l'utilisateur" })).exists(); | ||
assert.dom(screen.getByRole('heading', { name: 'Informations prescrit' })).exists(); | ||
|
@@ -43,6 +46,7 @@ module('Acceptance | authenticated/users/get', function (hooks) { | |
assert | ||
.dom(userNavigation.getByLabelText('Organisations de l’utilisateur')) | ||
.hasText(`Pix Orga (${expectedOrganizationMembershipsCount})`); | ||
assert.dom(userNavigation.getByRole('link', { name: this.intl.t('pages.user-details.navbar.cgu-aria-label') })).exists(); | ||
}); | ||
|
||
test('redirects to list users page when click page title', async function (assert) { | ||
|