mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-02-12 19:24:52 -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>
64 lines
2.5 KiB
TypeScript
64 lines
2.5 KiB
TypeScript
// @watch start
|
|
// templates/webhook/shared-settings.tmpl
|
|
// templates/repo/settings/**
|
|
// web_src/css/{form,repo}.css
|
|
// web_src/css/modules/grid.css
|
|
// web_src/js/features/comp/WebHookEditor.js
|
|
// @watch end
|
|
|
|
import {expect} from '@playwright/test';
|
|
import {test, save_visual} from './utils_e2e.ts';
|
|
import {validate_form} from './shared/forms.ts';
|
|
|
|
test.use({user: 'user2'});
|
|
|
|
test('repo webhook settings', async ({page}, workerInfo) => {
|
|
test.skip(workerInfo.project.name === 'Mobile Safari', 'Cannot get it to work - as usual');
|
|
const response = await page.goto('/user2/repo1/settings/hooks/forgejo/new');
|
|
expect(response?.status()).toBe(200);
|
|
|
|
await page.locator('input[name="events"][value="choose_events"]').click();
|
|
await expect(page.locator('.hide-unless-checked')).toBeVisible();
|
|
|
|
// check accessibility including the custom events (now visible) part
|
|
await validate_form({page}, 'fieldset');
|
|
await save_visual(page);
|
|
|
|
await page.locator('input[name="events"][value="push_only"]').click();
|
|
await expect(page.locator('.hide-unless-checked')).toBeHidden();
|
|
await page.locator('input[name="events"][value="send_everything"]').click();
|
|
await expect(page.locator('.hide-unless-checked')).toBeHidden();
|
|
await save_visual(page);
|
|
});
|
|
|
|
test.describe('repo branch protection settings', () => {
|
|
test('form', async ({page}, {project}) => {
|
|
test.skip(project.name === 'Mobile Safari', 'Cannot get it to work - as usual');
|
|
const response = await page.goto('/user2/repo1/settings/branches/edit');
|
|
expect(response?.status()).toBe(200);
|
|
|
|
await validate_form({page}, 'fieldset');
|
|
|
|
// verify header is new
|
|
await expect(page.locator('h4')).toContainText('new');
|
|
await page.locator('input[name="rule_name"]').fill('testrule');
|
|
await save_visual(page);
|
|
await page.getByText('Save rule').click();
|
|
// verify header is in edit mode
|
|
await page.waitForLoadState('domcontentloaded');
|
|
await save_visual(page);
|
|
await page.getByText('Edit').click();
|
|
await expect(page.locator('h4')).toContainText('Protection rules for branch');
|
|
await save_visual(page);
|
|
});
|
|
|
|
test.afterEach(async ({page}) => {
|
|
// delete the rule for the next test
|
|
await page.goto('/user2/repo1/settings/branches/');
|
|
await page.waitForLoadState('domcontentloaded');
|
|
test.skip(await page.getByText('Delete rule').isHidden(), 'Nothing to delete at this time');
|
|
await page.getByText('Delete rule').click();
|
|
await page.getByText('Yes').click();
|
|
await page.waitForLoadState('load');
|
|
});
|
|
});
|