-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✅(e2e) change accounts to facilitate SIRET and add e2e test
We also add registration ID info to the /me endpoint, via serializers
- Loading branch information
Laurent Bossavit
authored and
Laurent Bossavit
committed
Dec 23, 2024
1 parent
922cd20
commit d639871
Showing
5 changed files
with
23 additions
and
4 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -59,7 +59,7 @@ | |
"realmRoles": ["user"] | ||
}, | ||
{ | ||
"username": "marie", | ||
"username": "jean.marie", | ||
"email": "[email protected]", | ||
"firstName": "Marie", | ||
"lastName": "Devarzy", | ||
|
@@ -70,7 +70,7 @@ | |
"credentials": [ | ||
{ | ||
"type": "password", | ||
"value": "people" | ||
"value": "password-e2e-jean.marie" | ||
} | ||
], | ||
"realmRoles": ["user"] | ||
|
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
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,16 @@ | ||
import { expect, test } from '@playwright/test'; | ||
|
||
import { keyCloakSignIn } from './common'; | ||
|
||
test.beforeEach(async ({ page, browserName }) => { | ||
await page.goto('/'); | ||
await keyCloakSignIn(page, browserName, 'marie'); | ||
}); | ||
|
||
test.describe('OIDC interop with SIRET', () => { | ||
test('it checks the SIRET is displayed in /me endpoint', async ({ page, browserName }) => { | ||
const response = await page.request.get('http://localhost:8071/api/v1.0/users/me/'); | ||
expect(response.ok()).toBeTruthy(); | ||
expect(await response.json()).toMatchObject({organization: {registration_id_list:["21580304000017"]}}); | ||
}); | ||
}); |
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