mirror of
https://github.com/coder/coder.git
synced 2026-06-05 05:58:20 +00:00
962608cde0
Closes coder/internal#168 Gets rid of the "global state" authentication, and adds a `login` helper which should be called at the beginning of each test. This means that not every test needs to authenticated as admin, and we can even have tests that encompass multiple permission levels. We also now create more than just the single admin user during setup, so that we can have a set of users to pick from as appropriate.
32 lines
1.0 KiB
TypeScript
32 lines
1.0 KiB
TypeScript
import { expect, test } from "@playwright/test";
|
|
import { createGroup, getCurrentOrgId, setupApiCalls } from "../../api";
|
|
import { requiresLicense } from "../../helpers";
|
|
import { login } from "../../helpers";
|
|
import { beforeCoderTest } from "../../hooks";
|
|
|
|
test.beforeEach(async ({ page }) => {
|
|
beforeCoderTest(page);
|
|
await login(page);
|
|
await setupApiCalls(page);
|
|
});
|
|
|
|
test("remove group", async ({ page, baseURL }) => {
|
|
requiresLicense();
|
|
|
|
const orgId = await getCurrentOrgId();
|
|
const group = await createGroup(orgId);
|
|
|
|
await page.goto(`${baseURL}/groups/${group.name}`, {
|
|
waitUntil: "domcontentloaded",
|
|
});
|
|
await expect(page).toHaveTitle(`${group.display_name} - Coder`);
|
|
|
|
await page.getByRole("button", { name: "Delete" }).click();
|
|
const dialog = page.getByTestId("dialog");
|
|
await dialog.getByLabel("Name of the group to delete").fill(group.name);
|
|
await dialog.getByRole("button", { name: "Delete" }).click();
|
|
await expect(page.getByText("Group deleted successfully.")).toBeVisible();
|
|
|
|
await expect(page).toHaveTitle("Groups - Coder");
|
|
});
|