mirror of
https://github.com/go-gitea/gitea.git
synced 2026-04-26 23:50:46 +00:00
- add pr-review e2e test - speed up most tests by logging in via POST to avoid the login form, login form is still exercised in a dedicated test - speed up most tests be removing post-test cleanup, unnecessary because each repo is created with a unique name - misc parallelization and api call reduction - total suite runtime is about the same as before --------- Co-authored-by: Claude (Opus 4.7) <noreply@anthropic.com> Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
30 lines
1.7 KiB
TypeScript
30 lines
1.7 KiB
TypeScript
import {env} from 'node:process';
|
|
import {test, expect} from '@playwright/test';
|
|
import {login, apiCreateRepo, apiCreateIssue, createProjectColumn, randomString} from './utils.ts';
|
|
|
|
test('assign issue to project and change column', async ({page}) => {
|
|
const repoName = `e2e-issue-project-${randomString(8)}`;
|
|
const user = env.GITEA_TEST_E2E_USER;
|
|
await Promise.all([login(page), apiCreateRepo(page.request, {name: repoName})]);
|
|
await page.goto(`/${user}/${repoName}/projects/new`);
|
|
await page.locator('input[name="title"]').fill('Kanban Board');
|
|
await page.getByRole('button', {name: 'Create Project'}).click();
|
|
const projectLink = page.locator('.milestone-list a', {hasText: 'Kanban Board'}).first();
|
|
await expect(projectLink).toBeVisible();
|
|
const href = await projectLink.getAttribute('href');
|
|
const projectID = href!.split('/').pop()!;
|
|
// columns created via POST because the web UI uses modals that are hard to drive
|
|
await Promise.all([
|
|
...['Backlog', 'In Progress', 'Done'].map((title) => createProjectColumn(page.request, user, repoName, projectID, title)),
|
|
apiCreateIssue(page.request, user, repoName, {title: 'Column picker test'}),
|
|
]);
|
|
await page.goto(`/${user}/${repoName}/issues/1`);
|
|
await page.locator('.sidebar-project-combo .ui.dropdown').click();
|
|
await page.locator('.sidebar-project-combo .menu a.item', {hasText: 'Kanban Board'}).click();
|
|
const columnCombo = page.locator('.sidebar-project-column-combo');
|
|
await expect(columnCombo).toBeVisible();
|
|
await columnCombo.locator('.ui.dropdown').click();
|
|
await columnCombo.locator('.menu a.item', {hasText: 'In Progress'}).click();
|
|
await expect(columnCombo.getByTestId('sidebar-project-column-text')).toHaveText('In Progress');
|
|
});
|