mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-09-14 23:07:14 +00:00
Fixes #4118 - Unicode escape now works in wiki - edit and escape buttons are better placed - edit icon is now under the warning Before: https://codeberg.org/attachments/4414f0cb-776a-4e62-a3b5-99de0914bf26 After: https://codeberg.org/attachments/93aad13f-e36b-42f9-a827-7ff7259da581 Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/8923 Reviewed-by: 0ko <0ko@noreply.codeberg.org> Co-authored-by: zokki <zokki.softwareschmiede@gmail.com> Co-committed-by: zokki <zokki.softwareschmiede@gmail.com>
62 lines
2.8 KiB
TypeScript
62 lines
2.8 KiB
TypeScript
// @watch start
|
|
// templates/repo/wiki/**
|
|
// web_src/css/repo**
|
|
// @watch end
|
|
|
|
import {expect} from '@playwright/test';
|
|
import {save_visual, test} from './utils_e2e.ts';
|
|
|
|
for (const searchTerm of ['space', 'consectetur']) {
|
|
for (const width of [null, 2560, 4000]) {
|
|
test(`Search for '${searchTerm}' and test for no overflow ${width && `on ${width}-wide viewport` || ''}`, async ({page, viewport}, workerInfo) => {
|
|
test.skip(workerInfo.project.name === 'Mobile Safari', 'Fails as always, see https://codeberg.org/forgejo/forgejo/pulls/5326#issuecomment-2313275');
|
|
|
|
await page.setViewportSize({
|
|
width: width ?? viewport.width,
|
|
height: 1440, // We're testing that we fit horizontally - vertical scrolling is fine.
|
|
});
|
|
await page.goto('/user2/repo1/wiki');
|
|
await page.getByPlaceholder('Search wiki').fill(searchTerm);
|
|
await page.getByPlaceholder('Search wiki').click();
|
|
// workaround: HTMX listens on keyup events, playwright's fill only triggers the input event
|
|
// so we manually "type" the last letter
|
|
await page.getByPlaceholder('Search wiki').dispatchEvent('keyup');
|
|
|
|
await expect(page.locator('#wiki-search a[href]')).toBeInViewport({
|
|
ratio: workerInfo.project.name === 'webkit' ? 0.9 : 1,
|
|
});
|
|
await save_visual(page);
|
|
});
|
|
}
|
|
}
|
|
|
|
test(`Search results show titles (and not file names)`, async ({page}, workerInfo) => {
|
|
test.skip(workerInfo.project.name === 'Mobile Safari', 'Fails as always, see https://codeberg.org/forgejo/forgejo/pulls/5326#issuecomment-2313275');
|
|
await page.goto('/user2/repo1/wiki');
|
|
await page.getByPlaceholder('Search wiki').fill('spaces');
|
|
await page.getByPlaceholder('Search wiki').click();
|
|
// workaround: HTMX listens on keyup events, playwright's fill only triggers the input event
|
|
// so we manually "type" the last letter
|
|
await page.getByPlaceholder('Search wiki').dispatchEvent('keyup');
|
|
await expect(page.locator('#wiki-search a[href] b')).toHaveText('Page With Spaced Name');
|
|
await save_visual(page);
|
|
});
|
|
|
|
test('Wiki unicode-escape', async ({page}) => {
|
|
await page.goto('/user2/unicode-escaping/wiki');
|
|
await save_visual(page);
|
|
|
|
expect(await page.locator('.ui.message.unicode-escape-prompt').count()).toEqual(3);
|
|
|
|
const unescapedElements = page.locator('.ambiguous-code-point');
|
|
for (let i = 0; i < await unescapedElements.count(); i++) {
|
|
expect(await unescapedElements.nth(i).evaluate((el) => getComputedStyle(el).border)).toEqual('0px solid rgb(24, 24, 27)');
|
|
}
|
|
|
|
await page.locator('a.escape-button').click();
|
|
|
|
const escapedElements = page.locator('.ambiguous-code-point');
|
|
for (let i = 0; i < await escapedElements.count(); i++) {
|
|
expect(await escapedElements.nth(i).evaluate((el) => getComputedStyle(el).border)).toEqual('1px solid rgb(202, 138, 4)');
|
|
}
|
|
});
|