mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-19 08:31:43 +03:00
c46761199b
refs https://github.com/TryGhost/Product/issues/3349 - Simplified a few more places after switching to react-query - Improved how mocking works in specs to be more scalable as the number of queries increases
64 lines
2.2 KiB
TypeScript
64 lines
2.2 KiB
TypeScript
import {expect, test} from '@playwright/test';
|
|
import {globalDataRequests, mockApi, updatedSettingsResponse} from '../../utils/e2e';
|
|
|
|
test.describe('Site password settings', async () => {
|
|
test('Supports locking and unlocking the site', async ({page}) => {
|
|
const mockLock = await mockApi({page, requests: {
|
|
...globalDataRequests,
|
|
editSettings: {method: 'PUT', path: '/settings/', response: updatedSettingsResponse([
|
|
{key: 'is_private', value: true},
|
|
{key: 'password', value: 'password'}
|
|
])}
|
|
}});
|
|
|
|
await page.goto('/');
|
|
|
|
const section = page.getByTestId('locksite');
|
|
|
|
await expect(section.getByText('Your site is not password protected')).toHaveCount(1);
|
|
|
|
// Add a site password
|
|
|
|
await section.getByRole('button', {name: 'Edit'}).click();
|
|
|
|
await section.getByLabel(/Enable password protection/).check();
|
|
await section.getByLabel('Site password').fill('password');
|
|
|
|
await section.getByRole('button', {name: 'Save'}).click();
|
|
|
|
await expect(section.getByLabel('Site password')).toHaveCount(0);
|
|
|
|
await expect(section.getByText('Your site is password protected')).toHaveCount(1);
|
|
|
|
expect(mockLock.lastApiRequests.editSettings?.body).toEqual({
|
|
settings: [
|
|
{key: 'is_private', value: true},
|
|
{key: 'password', value: 'password'}
|
|
]
|
|
});
|
|
|
|
// Remove the site password
|
|
|
|
const mockUnlock = await mockApi({page, requests: {
|
|
...globalDataRequests,
|
|
editSettings: {method: 'PUT', path: '/settings/', response: updatedSettingsResponse([
|
|
{key: 'is_private', value: false}
|
|
])}
|
|
}});
|
|
|
|
await section.getByRole('button', {name: 'Edit'}).click();
|
|
|
|
await section.getByLabel(/Enable password protection/).uncheck();
|
|
|
|
await section.getByRole('button', {name: 'Save'}).click();
|
|
|
|
await expect(section.getByText('Your site is not password protected')).toHaveCount(1);
|
|
|
|
expect(mockUnlock.lastApiRequests.editSettings?.body).toEqual({
|
|
settings: [
|
|
{key: 'is_private', value: false}
|
|
]
|
|
});
|
|
});
|
|
});
|