0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-01 02:41:39 -05:00

Fixed leftover state in invites browser tests ()

no issue

- The invite tests were signing out as the owner user and then signing
in as a user with different privileges. At the end of the test, it was
left in this state, so the next file run by that playwright worker was
still logged in as a user with lower than owner privileges so e.g. the
settings couldn't be accessed.
- This change signs out from the newly created user and signs back in as
the owner user after each of the invites tests.
This commit is contained in:
Chris Raible 2025-02-06 17:46:11 -08:00 committed by GitHub
parent 659863a848
commit eb64fb3830
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 33 additions and 16 deletions
ghost/core/test/e2e-browser

View file

@ -2,6 +2,7 @@ const {expect} = require('@playwright/test');
const test = require('../fixtures/ghost-test');
const security = require('@tryghost/security');
const models = require('../../../core/server/models');
const {signInAsUserById, signOutCurrentUser} = require('../utils/e2e-browser-utils');
test.describe('Portal', () => {
test.describe('Invites', () => {
@ -43,11 +44,7 @@ test.describe('Portal', () => {
const encodedToken = security.url.encodeBase64(token);
const inviteUrl = `${adminUrl}/signup/${encodedToken}/`;
//signout current user
await sharedPage.goto('/ghost/#/dashboard');
await sharedPage.waitForLoadState('networkidle');
await sharedPage.locator('[data-test-nav="arrow-down"]').click();
await sharedPage.getByRole('link', {name: 'Sign out'}).click();
await signOutCurrentUser(sharedPage);
// Open invite URL
await sharedPage.goto(inviteUrl);
@ -66,6 +63,10 @@ test.describe('Portal', () => {
await sharedPage.locator('[data-test-nav="arrow-down"]').click();
await expect(sharedPage.locator(`text=${testEmail}`)).toBeVisible();
await signOutCurrentUser(sharedPage);
await signInAsUserById(sharedPage, '1');
});
test.describe('2FA invite test', () => {
@ -126,11 +127,7 @@ test.describe('Portal', () => {
const context = await sharedPage.context();
await context.clearCookies();
//signout current user
await sharedPage.goto('/ghost/#/dashboard');
await sharedPage.waitForLoadState('networkidle');
await sharedPage.locator('[data-test-nav="arrow-down"]').click();
await sharedPage.getByRole('link', {name: 'Sign out'}).click();
await signOutCurrentUser(sharedPage);
// Open invite URL
await sharedPage.goto(inviteUrl);
@ -150,6 +147,10 @@ test.describe('Portal', () => {
await sharedPage.locator('[data-test-nav="arrow-down"]').click();
await expect(sharedPage.locator(`text=${testEmail}`)).toBeVisible();
await signOutCurrentUser(sharedPage);
await signInAsUserById(sharedPage, '1');
});
});
});

View file

@ -43,12 +43,7 @@ const setupGhost = async (page) => {
const ownerUser = DataGenerator.Content.users.find(user => user.id === '1');
if (action === actions.signin) {
// Fill email + password
await page.locator('#identification').fill(ownerUser.email);
await page.locator('#password').fill(ownerUser.password);
await page.getByRole('button', {name: 'Sign in'}).click();
// Confirm we have reached Ghost Admin
await page.locator('.gh-nav').waitFor(options);
await signInAsUserById(page, '1');
} else if (action === actions.setup) {
// Complete setup process
await page.getByPlaceholder('The Daily Awesome').click();
@ -65,6 +60,25 @@ const setupGhost = async (page) => {
}
};
const signInAsUserById = async (page, userId) => {
await page.goto('/ghost');
// Add owner user data from usual fixture
const user = DataGenerator.Content.users.find(u => u.id === userId);
// Fill email + password
await page.locator('#identification').fill(user.email);
await page.locator('#password').fill(user.password);
await page.getByRole('button', {name: 'Sign in'}).click();
// Confirm we have reached Ghost Admin
await page.locator('.gh-nav').waitFor({state: 'visible', timeout: 10000});
};
const signOutCurrentUser = async (page) => {
await page.goto('/ghost/#/signout');
await page.waitForLoadState('networkidle');
await page.locator('.gh-signin').waitFor({state: 'visible', timeout: 10000});
};
const disconnectStripe = async (page) => {
await deleteAllMembers(page);
await page.locator('.gh-nav a[href="#/settings/"]').click();
@ -530,6 +544,8 @@ module.exports = {
generateStripeIntegrationToken,
setupMailgun,
deleteAllMembers,
signInAsUserById,
signOutCurrentUser,
createTier,
createOffer,
createMember,