Skip to content

Commit 6406179

Browse files
committed
test(e2e): add onboarding test with existing account
Co-authored-by: Guillaume Lagorce <guillame.lagorce@pix.fr>
1 parent c47f165 commit 6406179

File tree

1 file changed

+22
-9
lines changed

1 file changed

+22
-9
lines changed

high-level-tests/e2e-playwright/pix-orga/onboarding.test.ts

+22-9
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,12 @@ import { expect } from '@playwright/test';
33
import { databaseBuilder } from '../helpers/db.ts';
44
import { test } from '../helpers/fixtures.ts';
55

6-
let invitation: { id: string; code: string };
7-
const email = 'admin@example.net';
8-
9-
test.beforeEach(async function () {
10-
invitation = databaseBuilder.factory.buildOrganizationInvitation({
11-
email,
12-
});
6+
test('Join an organization without having an account', async function ({ page }) {
7+
const invitation = databaseBuilder.factory.buildOrganizationInvitation();
138
await databaseBuilder.commit();
14-
});
159

16-
test('Join an organization without having an account', async function ({ page }) {
1710
await page.goto(`/rejoindre?invitationId=${invitation.id}&code=${invitation.code}`);
11+
1812
await expect(page.getByText('Vous êtes invité(e) à')).toBeVisible();
1913
await page.getByRole('textbox', { name: 'Prénom' }).fill('mini');
2014
await page.getByRole('textbox', { name: 'Nom', exact: true }).fill('pixou');
@@ -26,3 +20,22 @@ test('Join an organization without having an account', async function ({ page })
2620
await page.getByRole('button', { name: 'Accepter et continuer' }).click();
2721
await expect(page.getByRole('heading', { name: 'Campagnes' })).toBeVisible();
2822
});
23+
test('Join an organization with an existing account', async function ({ page }) {
24+
const invitation = databaseBuilder.factory.buildOrganizationInvitation();
25+
databaseBuilder.factory.buildUser.withRawPassword({
26+
email: 'random-account@example.net',
27+
});
28+
await databaseBuilder.commit();
29+
30+
await page.goto(`/rejoindre?invitationId=${invitation.id}&code=${invitation.code}`);
31+
32+
await page.getByRole('button', { name: 'Se connecter' }).click();
33+
await page.getByRole('textbox', { name: 'Adresse e-mail' }).fill('random-account@example.net');
34+
await page.getByRole('textbox', { name: 'Mot de passe' }).fill('pix123');
35+
await page.getByRole('button', { name: 'Je me connecte' }).click();
36+
await expect(
37+
page.getByRole('heading', { name: "Veuillez accepter nos Conditions Générales d'Utilisation" }),
38+
).toBeVisible();
39+
await page.getByRole('button', { name: 'Accepter et continuer' }).click();
40+
await expect(page.getByRole('heading', { name: 'Campagnes' })).toBeVisible();
41+
});

0 commit comments

Comments
 (0)