forked from baron/baron-sso
184 lines
5.5 KiB
TypeScript
184 lines
5.5 KiB
TypeScript
import { expect, test } from "@playwright/test";
|
|
|
|
test.describe("Bulk Actions and Tree Search", () => {
|
|
test.beforeEach(async ({ page }) => {
|
|
await page.addInitScript(() => {
|
|
window.localStorage.setItem("locale", "ko");
|
|
window.localStorage.setItem("admin_session", "fake-token");
|
|
(
|
|
window as Window & typeof globalThis & { _IS_TEST_MODE?: boolean }
|
|
)._IS_TEST_MODE = true;
|
|
|
|
const authority = "http://localhost:5000/oidc";
|
|
const client_id = "adminfront";
|
|
const key = `oidc.user:${authority}:${client_id}`;
|
|
const authData = {
|
|
access_token: "fake-token",
|
|
token_type: "Bearer",
|
|
profile: { sub: "admin", role: "super_admin", name: "Admin" },
|
|
expires_at: Math.floor(Date.now() / 1000) + 36000,
|
|
};
|
|
window.localStorage.setItem(key, JSON.stringify(authData));
|
|
});
|
|
|
|
// Capture ALL API calls to our mock host
|
|
await page.route("**/api/v1/**", async (route) => {
|
|
const url = route.request().url();
|
|
const headers = { "Access-Control-Allow-Origin": "*" };
|
|
|
|
if (url.includes("/user/me")) {
|
|
return route.fulfill({
|
|
json: {
|
|
id: "admin",
|
|
role: "super_admin",
|
|
name: "Admin",
|
|
manageableTenants: [],
|
|
},
|
|
headers,
|
|
});
|
|
}
|
|
if (url.includes("/admin/users")) {
|
|
return route.fulfill({
|
|
json: {
|
|
items: [
|
|
{
|
|
id: "u-1",
|
|
name: "User One",
|
|
email: "u1@test.com",
|
|
status: "active",
|
|
role: "user",
|
|
createdAt: new Date().toISOString(),
|
|
},
|
|
{
|
|
id: "u-2",
|
|
name: "User Two",
|
|
email: "u2@test.com",
|
|
status: "active",
|
|
role: "user",
|
|
createdAt: new Date().toISOString(),
|
|
},
|
|
],
|
|
total: 2,
|
|
},
|
|
headers,
|
|
});
|
|
}
|
|
if (url.includes("/organization")) {
|
|
return route.fulfill({
|
|
json: [
|
|
{ id: "g-1", name: "Engineering", slug: "eng", tenantId: "t-1" },
|
|
{ id: "g-2", name: "Sales", slug: "sales", tenantId: "t-1" },
|
|
],
|
|
headers,
|
|
});
|
|
}
|
|
if (url.includes("/admin/tenants/t-1")) {
|
|
return route.fulfill({
|
|
json: {
|
|
id: "t-1",
|
|
name: "Main Tenant",
|
|
slug: "main",
|
|
status: "active",
|
|
type: "COMPANY",
|
|
},
|
|
headers,
|
|
});
|
|
}
|
|
if (url.includes("/admin/tenants")) {
|
|
return route.fulfill({
|
|
json: {
|
|
items: [
|
|
{ id: "t-1", name: "Main Tenant", slug: "main", type: "COMPANY" },
|
|
{
|
|
id: "g-1",
|
|
name: "Engineering",
|
|
slug: "eng",
|
|
parentId: "t-1",
|
|
type: "USER_GROUP",
|
|
},
|
|
{
|
|
id: "g-2",
|
|
name: "Sales",
|
|
slug: "sales",
|
|
parentId: "t-1",
|
|
type: "USER_GROUP",
|
|
},
|
|
],
|
|
total: 3,
|
|
},
|
|
headers,
|
|
});
|
|
}
|
|
|
|
return route.fulfill({ json: { items: [], total: 0 }, headers });
|
|
});
|
|
|
|
await page.route("**/oidc/**", async (route) => {
|
|
await route.fulfill({ json: { issuer: "http://localhost:5000/oidc" } });
|
|
});
|
|
});
|
|
|
|
test("should show bulk action bar when users are selected", async ({
|
|
page,
|
|
}) => {
|
|
await page.goto("/users");
|
|
// 로딩바 대기 대신 실제 데이터 텍스트 대기
|
|
const table = page.locator("table");
|
|
await expect(table).toContainText("User One", { timeout: 20000 });
|
|
|
|
// 첫 번째 데이터의 체크박스 선택
|
|
const userCheckbox = page.locator('table input[type="checkbox"]').nth(1);
|
|
await userCheckbox.click();
|
|
|
|
// 일괄 작업 바 확인
|
|
const selectionBar = page.getByTestId("bulk-action-bar");
|
|
await expect(selectionBar).toBeVisible({ timeout: 15000 });
|
|
|
|
// 활성화 버튼 확인
|
|
const activeBtn = page.getByTestId("bulk-active-btn");
|
|
await expect(activeBtn).toBeVisible({ timeout: 10000 });
|
|
|
|
// 전체 선택
|
|
await page.locator('table input[type="checkbox"]').first().click();
|
|
await expect(selectionBar).toBeVisible();
|
|
|
|
// 선택 해제 버튼
|
|
const closeBtn = page.getByTestId("bulk-close-btn");
|
|
await closeBtn.click();
|
|
|
|
await expect(selectionBar).not.toBeVisible({ timeout: 10000 });
|
|
});
|
|
|
|
test("should filter and highlight nodes in organization tree", async ({
|
|
page,
|
|
}) => {
|
|
await page.goto("/tenants/t-1");
|
|
// 테넌트 이름이 제목으로 나올 때까지 대기
|
|
await expect(page.locator("h2").last()).toContainText(
|
|
/Main Tenant|상세|Profile/i,
|
|
{ timeout: 20000 },
|
|
);
|
|
|
|
const subTenantLink = page
|
|
.locator("a, button")
|
|
.filter({ hasText: /조직 관리|Organization|Sub-tenant/i })
|
|
.first();
|
|
await subTenantLink.click();
|
|
|
|
// 트리 검색 입력창 대기 (더 유연한 셀렉터)
|
|
const searchInput = page
|
|
.locator('input[placeholder*="검색"], input[placeholder*="Search"]')
|
|
.first();
|
|
await expect(searchInput).toBeVisible({ timeout: 15000 });
|
|
|
|
await searchInput.fill("Eng");
|
|
|
|
const engNode = page
|
|
.locator("button")
|
|
.filter({ hasText: "Engineering" })
|
|
.first();
|
|
await expect(engNode).toBeVisible();
|
|
await expect(engNode).toHaveClass(/bg-primary\/5/);
|
|
});
|
|
});
|