mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-20 01:03:23 +03:00
66 lines
2.1 KiB
TypeScript
66 lines
2.1 KiB
TypeScript
import {expect, test} from '@playwright/test';
|
|
import {mockApi, updatedSettingsResponse} from '../../utils/e2e';
|
|
|
|
test.describe('Site password settings', async () => {
|
|
test('Supports locking and unlocking the site', async ({page}) => {
|
|
let lastApiRequest = await mockApi({page, responses: {
|
|
settings: {
|
|
edit: 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(lastApiRequest.body).toEqual({
|
|
settings: [
|
|
{key: 'is_private', value: true},
|
|
{key: 'password', value: 'password'}
|
|
]
|
|
});
|
|
|
|
// Remove the site password
|
|
|
|
lastApiRequest = await mockApi({page, responses: {
|
|
settings: {
|
|
edit: 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(lastApiRequest.body).toEqual({
|
|
settings: [
|
|
{key: 'is_private', value: false}
|
|
]
|
|
});
|
|
});
|
|
});
|