mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-10 04:05:42 +01:00
[v7.0/forgejo] fix(ui): handle out-of-bounds end line in code selection (#4820)
Some checks are pending
/ release (push) Waiting to run
testing / backend-checks (push) Waiting to run
testing / frontend-checks (push) Waiting to run
testing / test-unit (push) Blocked by required conditions
testing / test-mysql (push) Blocked by required conditions
testing / test-pgsql (push) Blocked by required conditions
testing / test-sqlite (push) Blocked by required conditions
Some checks are pending
/ release (push) Waiting to run
testing / backend-checks (push) Waiting to run
testing / frontend-checks (push) Waiting to run
testing / test-unit (push) Blocked by required conditions
testing / test-mysql (push) Blocked by required conditions
testing / test-pgsql (push) Blocked by required conditions
testing / test-sqlite (push) Blocked by required conditions
Backport of https://codeberg.org/forgejo/forgejo/pulls/4788. - fallback to the last line, preventing TypeError - add E2E test Co-authored-by: Solomon Victorino <git@solomonvictorino.com> Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/4820 Reviewed-by: 0ko <0ko@noreply.codeberg.org> Co-authored-by: forgejo-backport-action <forgejo-backport-action@noreply.codeberg.org> Co-committed-by: forgejo-backport-action <forgejo-backport-action@noreply.codeberg.org>
This commit is contained in:
parent
ae2312b767
commit
0f7cd8d46a
2 changed files with 55 additions and 1 deletions
53
tests/e2e/repo-code.test.e2e.js
Normal file
53
tests/e2e/repo-code.test.e2e.js
Normal file
|
@ -0,0 +1,53 @@
|
|||
// @ts-check
|
||||
import {test, expect} from '@playwright/test';
|
||||
import {login_user, load_logged_in_context} from './utils_e2e.js';
|
||||
|
||||
test.beforeAll(async ({browser}, workerInfo) => {
|
||||
await login_user(browser, workerInfo, 'user2');
|
||||
});
|
||||
|
||||
async function assertSelectedLines(page, nums) {
|
||||
const pageAssertions = async () => {
|
||||
expect(
|
||||
await Promise.all((await page.locator('tr.active [data-line-number]').all()).map((line) => line.getAttribute('data-line-number'))),
|
||||
)
|
||||
.toStrictEqual(nums);
|
||||
|
||||
// the first line selected has an action button
|
||||
if (nums.length > 0) await expect(page.locator(`#L${nums[0]} .code-line-button`)).toBeVisible();
|
||||
};
|
||||
|
||||
await pageAssertions();
|
||||
|
||||
// URL has the expected state
|
||||
expect(new URL(page.url()).hash)
|
||||
.toEqual(nums.length === 0 ? '' : nums.length === 1 ? `#L${nums[0]}` : `#L${nums[0]}-L${nums.at(-1)}`);
|
||||
|
||||
// test selection restored from URL hash
|
||||
await page.reload();
|
||||
return pageAssertions();
|
||||
}
|
||||
|
||||
test('Line Range Selection', async ({browser}, workerInfo) => {
|
||||
const context = await load_logged_in_context(browser, workerInfo, 'user2');
|
||||
const page = await context.newPage();
|
||||
|
||||
const filePath = '/user2/repo1/src/branch/master/README.md?display=source';
|
||||
|
||||
const response = await page.goto(filePath);
|
||||
await expect(response?.status()).toBe(200);
|
||||
|
||||
await assertSelectedLines(page, []);
|
||||
await page.locator('span#L1').click();
|
||||
await assertSelectedLines(page, ['1']);
|
||||
await page.locator('span#L3').click({modifiers: ['Shift']});
|
||||
await assertSelectedLines(page, ['1', '2', '3']);
|
||||
await page.locator('span#L2').click();
|
||||
await assertSelectedLines(page, ['2']);
|
||||
await page.locator('span#L1').click({modifiers: ['Shift']});
|
||||
await assertSelectedLines(page, ['1', '2']);
|
||||
|
||||
// out-of-bounds end line
|
||||
await page.goto(`${filePath}#L1-L100`);
|
||||
await assertSelectedLines(page, ['1', '2', '3']);
|
||||
});
|
|
@ -156,7 +156,8 @@ export function initRepoCodeView() {
|
|||
if (m) {
|
||||
$first = $linesEls.filter(`[rel=${m[1]}]`);
|
||||
if ($first.length) {
|
||||
selectRange($linesEls, $first, $linesEls.filter(`[rel=${m[2]}]`));
|
||||
const $last = $linesEls.filter(`[rel=${m[2]}]`);
|
||||
selectRange($linesEls, $first, $last.length ? $last : $linesEls.last());
|
||||
|
||||
// show code view menu marker (don't show in blame page)
|
||||
if (!isBlame()) {
|
||||
|
|
Loading…
Reference in a new issue