@@ -3,18 +3,12 @@ import { expect } from '@playwright/test';
3
3
import { databaseBuilder } from '../helpers/db.ts' ;
4
4
import { test } from '../helpers/fixtures.ts' ;
5
5
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 ( ) ;
13
8
await databaseBuilder . commit ( ) ;
14
- } ) ;
15
9
16
- test ( 'Join an organization without having an account' , async function ( { page } ) {
17
10
await page . goto ( `/rejoindre?invitationId=${ invitation . id } &code=${ invitation . code } ` ) ;
11
+
18
12
await expect ( page . getByText ( 'Vous êtes invité(e) à' ) ) . toBeVisible ( ) ;
19
13
await page . getByRole ( 'textbox' , { name : 'Prénom' } ) . fill ( 'mini' ) ;
20
14
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 })
26
20
await page . getByRole ( 'button' , { name : 'Accepter et continuer' } ) . click ( ) ;
27
21
await expect ( page . getByRole ( 'heading' , { name : 'Campagnes' } ) ) . toBeVisible ( ) ;
28
22
} ) ;
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