mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2026-05-13 06:20:24 +00:00
This PR fixes a number of typos throughout the entire repository. Running https://github.com/crate-ci/typos and then changing all occurrences that I naively deemed "safe enough". Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/10753 Reviewed-by: Gusted <gusted@noreply.codeberg.org> Co-authored-by: Christoph Mewes <christoph@kubermatic.com> Co-committed-by: Christoph Mewes <christoph@kubermatic.com>
61 lines
2.4 KiB
TypeScript
61 lines
2.4 KiB
TypeScript
// @watch start
|
|
// templates/org/team/new.tmpl
|
|
// web_src/css/form.css
|
|
// web_src/js/features/org-team.js
|
|
// @watch end
|
|
|
|
import {expect} from '@playwright/test';
|
|
import {test} from './utils_e2e.ts';
|
|
import {screenshot} from './shared/screenshots.ts';
|
|
import {validate_form} from './shared/forms.ts';
|
|
|
|
test.use({user: 'user2'});
|
|
|
|
test('org team settings', async ({page}) => {
|
|
const response = await page.goto('/org/org3/teams/team1/edit');
|
|
expect(response?.status()).toBe(200);
|
|
|
|
await page.locator('input[name="permission"][value="admin"]').click();
|
|
await expect(page.locator('.hide-unless-checked')).toBeHidden();
|
|
await screenshot(page);
|
|
|
|
await page.locator('input[name="permission"][value="read"]').click();
|
|
await expect(page.locator('.hide-unless-checked')).toBeVisible();
|
|
await screenshot(page);
|
|
|
|
// we are validating the form here to include the part that could be hidden
|
|
await validate_form({page});
|
|
});
|
|
|
|
test('org add and remove team repositories', async ({page}) => {
|
|
const response = await page.goto('/org/org3/teams/team1/repositories');
|
|
expect(response?.status()).toBe(200);
|
|
|
|
// As this is a shared state between multiple runs, always add repo3 to have some initial state.
|
|
await page.getByPlaceholder('Search repos…').fill('repo3');
|
|
await page.getByRole('button', {name: 'Add', exact: true}).click();
|
|
await expect(page.getByText('org3/repo3')).toBeVisible();
|
|
|
|
// Open remove all dialog.
|
|
await page.getByRole('button', {name: 'Remove all'}).click();
|
|
await expect(page.locator('#removeall-repos-modal')).toBeVisible();
|
|
await screenshot(page, page.locator('#removeall-repos-modal'));
|
|
// Remove all repositories.
|
|
await page.getByRole('button', {name: 'Yes'}).click();
|
|
|
|
// Check that all repositories are removed.
|
|
await expect(page.getByText('No repositories could be accessed by this team.')).toBeVisible();
|
|
|
|
// Open add all dialog.
|
|
await page.getByRole('button', {name: 'Add all'}).click();
|
|
await expect(page.locator('#addall-repos-modal')).toBeVisible();
|
|
await screenshot(page, page.locator('#addall-repos-modal'));
|
|
// Add all repositories.
|
|
await page.getByRole('button', {name: 'Yes'}).click();
|
|
|
|
// Check that there are three repositories.
|
|
await expect(page.getByText('No repositories could be accessed by this team.')).toBeHidden();
|
|
await expect(page.getByText('org3/repo3')).toBeVisible();
|
|
await expect(page.getByText('org3/repo21')).toBeVisible();
|
|
await expect(page.getByText('org3/repo5')).toBeVisible();
|
|
});
|