2023-06-12 02:04:19 +03:00
|
|
|
import {expect, test} from '@playwright/test';
|
|
|
|
import {mockApi} from '../../utils/e2e';
|
|
|
|
|
2023-06-23 11:16:01 +03:00
|
|
|
test.describe('Design settings', async () => {
|
2023-06-12 02:04:19 +03:00
|
|
|
test('Editing brand settings', async ({page}) => {
|
2023-06-23 11:16:01 +03:00
|
|
|
const lastApiRequests = await mockApi({page, responses: {
|
2023-06-12 02:04:19 +03:00
|
|
|
previewHtml: {
|
|
|
|
homepage: '<html><head><style></style></head><body><div>homepage preview</div></body></html>'
|
|
|
|
}
|
|
|
|
}});
|
|
|
|
|
|
|
|
await page.goto('/');
|
|
|
|
|
|
|
|
const section = page.getByTestId('design');
|
|
|
|
|
|
|
|
await section.getByRole('button', {name: 'Customize'}).click();
|
|
|
|
|
|
|
|
const modal = page.getByTestId('design-modal');
|
|
|
|
|
|
|
|
await expect(modal.frameLocator('[data-testid="theme-preview"]').getByText('homepage preview')).toHaveCount(1);
|
|
|
|
|
|
|
|
await modal.getByLabel('Site description').fill('new description');
|
|
|
|
await modal.getByRole('button', {name: 'Save'}).click();
|
|
|
|
|
2023-06-13 11:57:29 +03:00
|
|
|
await expect(modal).not.toBeVisible();
|
2023-06-12 02:04:19 +03:00
|
|
|
|
2023-06-23 11:16:01 +03:00
|
|
|
expect(lastApiRequests.previewHtml.homepage.headers?.['x-ghost-preview']).toMatch(/&d=new\+description&/);
|
|
|
|
|
|
|
|
expect(lastApiRequests.settings.edit.body).toEqual({
|
2023-06-12 02:04:19 +03:00
|
|
|
settings: [
|
|
|
|
{key: 'description', value: 'new description'}
|
|
|
|
]
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
test('Editing custom theme settings', async ({page}) => {
|
2023-06-23 11:16:01 +03:00
|
|
|
const lastApiRequests = await mockApi({page, responses: {
|
|
|
|
custom_theme_settings: {
|
|
|
|
browse: {
|
|
|
|
custom_theme_settings: [{
|
|
|
|
type: 'select',
|
|
|
|
options: [
|
|
|
|
'Logo on cover',
|
|
|
|
'Logo in the middle',
|
|
|
|
'Stacked'
|
|
|
|
],
|
|
|
|
default: 'Logo on cover',
|
|
|
|
id: '648047658d265b0c8b33c591',
|
|
|
|
value: 'Stacked',
|
|
|
|
key: 'navigation_layout'
|
|
|
|
}]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}});
|
2023-06-12 02:04:19 +03:00
|
|
|
|
|
|
|
await page.goto('/');
|
|
|
|
|
|
|
|
const section = page.getByTestId('design');
|
|
|
|
|
|
|
|
await section.getByRole('button', {name: 'Customize'}).click();
|
|
|
|
|
|
|
|
const modal = page.getByTestId('design-modal');
|
|
|
|
|
|
|
|
await modal.getByRole('tab', {name: 'Site wide'}).click();
|
|
|
|
|
|
|
|
await modal.getByLabel('Navigation layout').selectOption('Logo in the middle');
|
|
|
|
await modal.getByRole('button', {name: 'Save'}).click();
|
|
|
|
|
2023-06-13 11:57:29 +03:00
|
|
|
await expect(modal).not.toBeVisible();
|
2023-06-12 02:04:19 +03:00
|
|
|
|
2023-06-23 11:16:01 +03:00
|
|
|
const expectedSettings = {navigation_layout: 'Logo in the middle'};
|
|
|
|
const expectedEncoded = new URLSearchParams([['custom', JSON.stringify(expectedSettings)]]).toString();
|
|
|
|
expect(lastApiRequests.previewHtml.homepage.headers?.['x-ghost-preview']).toMatch(new RegExp(`&${expectedEncoded.replace(/\+/g, '\\+')}`));
|
|
|
|
|
|
|
|
expect(lastApiRequests.custom_theme_settings.edit.body).toMatchObject({
|
2023-06-12 02:04:19 +03:00
|
|
|
custom_theme_settings: [
|
2023-06-23 11:16:01 +03:00
|
|
|
{key: 'navigation_layout', value: 'Logo in the middle'}
|
2023-06-12 02:04:19 +03:00
|
|
|
]
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|