mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-02-14 19:40:48 -05:00
![forgejo-backport-action](/assets/img/avatar_default.png)
**Backport:** https://codeberg.org/forgejo/forgejo/pulls/6400 Replaced manual login and context loading across tests with Playwright's `test.use` configuration for user authentication. This simplifies test setup, improves readability, and reduces repetition. #6362 first part ## Checklist The [contributor guide](https://forgejo.org/docs/next/contributor/) contains information that will be helpful to first time contributors. There also are a few [conditions for merging Pull Requests in Forgejo repositories](https://codeberg.org/forgejo/governance/src/branch/main/PullRequestsAgreement.md). You are also welcome to join the [Forgejo development chatroom](https://matrix.to/#/#forgejo-development:matrix.org). ### Tests - I added test coverage for Go changes... - [ ] in their respective `*_test.go` for unit tests. - [ ] in the `tests/integration` directory if it involves interactions with a live Forgejo server. - I added test coverage for JavaScript changes... - [ ] in `web_src/js/*.test.js` if it can be unit tested. - [ ] in `tests/e2e/*.test.e2e.js` if it requires interactions with a live Forgejo server (see also the [developer guide for JavaScript testing](https://codeberg.org/forgejo/forgejo/src/branch/forgejo/tests/e2e/README.md#end-to-end-tests)). ### Documentation - [x] I created a pull request [to the documentation](https://codeberg.org/forgejo/docs) to explain to Forgejo users how to use this change. - [ ] I did not document these changes and I do not expect someone else to do it. ### Release notes - [x] I do not want this change to show in the release notes. - [ ] I want the title to show in the release notes with a link to this pull request. - [ ] I want the content of the `release-notes/<pull request number>.md` to be be used for the release notes instead of the title. Co-authored-by: Julian Schlarb <julian.schlarb@denktmit.de> Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/6585 Reviewed-by: Otto <otto@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>
83 lines
3.9 KiB
TypeScript
83 lines
3.9 KiB
TypeScript
// @watch start
|
|
// models/repo/attachment.go
|
|
// modules/structs/attachment.go
|
|
// routers/web/repo/**
|
|
// services/attachment/**
|
|
// services/release/**
|
|
// templates/repo/release/**
|
|
// web_src/js/features/repo-release.js
|
|
// @watch end
|
|
|
|
import {expect} from '@playwright/test';
|
|
import {save_visual, test} from './utils_e2e.ts';
|
|
import {validate_form} from './shared/forms.ts';
|
|
|
|
test.use({user: 'user2'});
|
|
|
|
test.describe.configure({
|
|
timeout: 30000,
|
|
});
|
|
|
|
test('External Release Attachments', async ({page, isMobile}) => {
|
|
test.skip(isMobile);
|
|
|
|
// Click "New Release"
|
|
await page.goto('/user2/repo2/releases');
|
|
await page.click('.button.small.primary');
|
|
|
|
// Fill out form and create new release
|
|
await expect(page).toHaveURL('/user2/repo2/releases/new');
|
|
await validate_form({page}, 'fieldset');
|
|
await page.fill('input[name=tag_name]', '2.0');
|
|
await page.fill('input[name=title]', '2.0');
|
|
await page.click('#add-external-link');
|
|
await page.click('#add-external-link');
|
|
await page.fill('input[name=attachment-new-name-2]', 'Test');
|
|
await page.fill('input[name=attachment-new-exturl-2]', 'https://forgejo.org/');
|
|
await page.click('.remove-rel-attach');
|
|
await save_visual(page);
|
|
await page.click('.button.small.primary');
|
|
|
|
// Validate release page and click edit
|
|
await expect(page).toHaveURL('/user2/repo2/releases');
|
|
await expect(page.locator('.download[open] li')).toHaveCount(3);
|
|
await expect(page.locator('.download[open] li:nth-of-type(1)')).toContainText('Source code (ZIP)');
|
|
await expect(page.locator('.download[open] li:nth-of-type(1) a')).toHaveAttribute('href', '/user2/repo2/archive/2.0.zip');
|
|
await expect(page.locator('.download[open] li:nth-of-type(2)')).toContainText('Source code (TAR.GZ)');
|
|
await expect(page.locator('.download[open] li:nth-of-type(2) a')).toHaveAttribute('href', '/user2/repo2/archive/2.0.tar.gz');
|
|
await expect(page.locator('.download[open] li:nth-of-type(3)')).toContainText('Test');
|
|
await expect(page.locator('.download[open] li:nth-of-type(3) a')).toHaveAttribute('href', 'https://forgejo.org/');
|
|
await save_visual(page);
|
|
await page.locator('.octicon-pencil').first().click();
|
|
|
|
// Validate edit page and edit the release
|
|
await expect(page).toHaveURL('/user2/repo2/releases/edit/2.0');
|
|
await validate_form({page}, 'fieldset');
|
|
await expect(page.locator('.attachment_edit:visible')).toHaveCount(2);
|
|
await expect(page.locator('.attachment_edit:visible').nth(0)).toHaveValue('Test');
|
|
await expect(page.locator('.attachment_edit:visible').nth(1)).toHaveValue('https://forgejo.org/');
|
|
await page.locator('.attachment_edit:visible').nth(0).fill('Test2');
|
|
await page.locator('.attachment_edit:visible').nth(1).fill('https://gitea.io/');
|
|
await page.click('#add-external-link');
|
|
await expect(page.locator('.attachment_edit:visible')).toHaveCount(4);
|
|
await page.locator('.attachment_edit:visible').nth(2).fill('Test3');
|
|
await page.locator('.attachment_edit:visible').nth(3).fill('https://gitea.com/');
|
|
await save_visual(page);
|
|
await page.click('.button.small.primary');
|
|
|
|
// Validate release page and click edit
|
|
await expect(page).toHaveURL('/user2/repo2/releases');
|
|
await expect(page.locator('.download[open] li')).toHaveCount(4);
|
|
await expect(page.locator('.download[open] li:nth-of-type(3)')).toContainText('Test2');
|
|
await expect(page.locator('.download[open] li:nth-of-type(3) a')).toHaveAttribute('href', 'https://gitea.io/');
|
|
await expect(page.locator('.download[open] li:nth-of-type(4)')).toContainText('Test3');
|
|
await expect(page.locator('.download[open] li:nth-of-type(4) a')).toHaveAttribute('href', 'https://gitea.com/');
|
|
await save_visual(page);
|
|
await page.locator('.octicon-pencil').first().click();
|
|
|
|
// Delete release
|
|
await expect(page).toHaveURL('/user2/repo2/releases/edit/2.0');
|
|
await page.click('.delete-button');
|
|
await page.click('.button.ok');
|
|
await expect(page).toHaveURL('/user2/repo2/releases');
|
|
});
|