2023-08-08 04:08:19 -05:00
|
|
|
import {expect, test} from '@playwright/test';
|
|
|
|
import {globalDataRequests, mockApi, updatedSettingsResponse} from '../../utils/e2e';
|
|
|
|
|
2023-08-31 13:54:39 -05:00
|
|
|
// CodeMirror takes some time to load in Playwright meaning the first few characters typed don't always
|
|
|
|
// show up in the input. Since that lag is not consistent, this workaround ensures we type enough
|
|
|
|
// characters to consistently include the full string we want
|
|
|
|
const PADDING = 'xxxxx ';
|
|
|
|
|
2023-08-08 04:08:19 -05:00
|
|
|
test.describe('Code injection settings', async () => {
|
|
|
|
test('Supports adding injected code', async ({page}) => {
|
|
|
|
const {lastApiRequests} = await mockApi({page, requests: {
|
|
|
|
...globalDataRequests,
|
|
|
|
editSettings: {method: 'PUT', path: '/settings/', response: updatedSettingsResponse([
|
|
|
|
{key: 'codeinjection_head', value: '<testhead />'},
|
|
|
|
{key: 'codeinjection_foot', value: '<testfoot />'}
|
|
|
|
])}
|
|
|
|
}});
|
|
|
|
|
|
|
|
await page.goto('/');
|
|
|
|
|
|
|
|
const section = page.getByTestId('code-injection');
|
|
|
|
|
|
|
|
await section.getByRole('button', {name: 'Edit'}).click();
|
|
|
|
|
2023-08-31 13:54:39 -05:00
|
|
|
for (const character of PADDING + '<testhead>'.split('')) {
|
2023-08-08 04:08:19 -05:00
|
|
|
await page.keyboard.press(character);
|
|
|
|
}
|
|
|
|
|
|
|
|
await section.getByRole('tab', {name: 'Site footer'}).click();
|
|
|
|
await section.getByTestId('footer-code').click();
|
|
|
|
|
2023-08-31 13:54:39 -05:00
|
|
|
for (const character of PADDING + '<testfoot>'.split('')) {
|
2023-08-08 04:08:19 -05:00
|
|
|
await page.keyboard.press(character);
|
|
|
|
}
|
|
|
|
|
|
|
|
await section.getByRole('button', {name: 'Save'}).click();
|
|
|
|
|
2023-08-31 13:54:39 -05:00
|
|
|
expect(lastApiRequests.editSettings?.body).toMatchObject({
|
2023-08-08 04:08:19 -05:00
|
|
|
settings: [
|
2023-08-31 13:54:39 -05:00
|
|
|
{key: 'codeinjection_head', value: /<testhead>$/},
|
|
|
|
{key: 'codeinjection_foot', value: /<testfoot>$/}
|
2023-08-08 04:08:19 -05:00
|
|
|
]
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
test('Supports continuing editing in fullscreen', async ({page}) => {
|
|
|
|
const {lastApiRequests} = await mockApi({page, requests: {
|
|
|
|
...globalDataRequests,
|
|
|
|
editSettings: {method: 'PUT', path: '/settings/', response: updatedSettingsResponse([
|
|
|
|
{key: 'codeinjection_head', value: '<1 /><2 /><3 />'}
|
|
|
|
])}
|
|
|
|
}});
|
|
|
|
|
|
|
|
await page.goto('/');
|
|
|
|
|
|
|
|
const section = page.getByTestId('code-injection');
|
|
|
|
|
|
|
|
await section.getByRole('button', {name: 'Edit'}).click();
|
|
|
|
|
2023-08-31 13:54:39 -05:00
|
|
|
for (const character of PADDING.split('')) {
|
|
|
|
await page.keyboard.press(character);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const character of '<1>'.split('')) {
|
2023-08-08 04:08:19 -05:00
|
|
|
await page.keyboard.press(character);
|
|
|
|
}
|
|
|
|
|
|
|
|
await section.getByRole('button', {name: 'Fullscreen'}).click();
|
|
|
|
|
|
|
|
await page.keyboard.press('End');
|
2023-08-31 13:54:39 -05:00
|
|
|
for (const character of '<2>'.split('')) {
|
2023-08-08 04:08:19 -05:00
|
|
|
await page.keyboard.press(character);
|
|
|
|
}
|
|
|
|
|
|
|
|
await page.getByTestId('modal-code').getByRole('button', {name: 'Done'}).click();
|
|
|
|
|
|
|
|
await page.keyboard.press('End');
|
2023-08-31 13:54:39 -05:00
|
|
|
for (const character of '<3>'.split('')) {
|
2023-08-08 04:08:19 -05:00
|
|
|
await page.keyboard.press(character);
|
|
|
|
}
|
|
|
|
|
|
|
|
await section.getByRole('button', {name: 'Save'}).click();
|
|
|
|
|
2023-08-31 13:54:39 -05:00
|
|
|
expect(lastApiRequests.editSettings?.body).toMatchObject({
|
2023-08-08 04:08:19 -05:00
|
|
|
settings: [
|
2023-08-31 13:54:39 -05:00
|
|
|
{key: 'codeinjection_head', value: /<1><2><3>$/}
|
2023-08-08 04:08:19 -05:00
|
|
|
]
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|