1
0
forked from baron/baron-sso
Files
baron-sso/adminfront/tests/users_bulk.spec.ts

76 lines
2.6 KiB
TypeScript

import { expect, test } from "@playwright/test";
test.describe("Users Bulk Upload", () => {
test.beforeEach(async ({ page }) => {
// Authenticate
await page.addInitScript(() => {
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-user",
name: "Admin User",
email: "admin@example.com",
},
expires_at: Math.floor(Date.now() / 1000) + 3600,
};
window.localStorage.setItem(key, JSON.stringify(authData));
});
// Mock OIDC config
await page.route("**/oidc/.well-known/openid-configuration", async (route) => {
await route.fulfill({ json: { issuer: "http://localhost:5000/oidc" } });
});
// Mock user profile
await page.route("**/api/v1/user/me", async (route) => {
await route.fulfill({
json: { id: "admin-user", name: "Admin User", email: "admin@example.com", role: "super_admin" },
});
});
// Mock users list
await page.route("**/api/v1/admin/users?*", async (route) => {
await route.fulfill({
json: { items: [], total: 0, limit: 50, offset: 0 },
});
});
});
test("should open bulk upload modal and show preview", async ({ page }) => {
await page.goto("/users");
const bulkBtn = page.getByRole("button", { name: /일괄 등록|Bulk Import/i });
await expect(bulkBtn).toBeVisible();
await bulkBtn.click();
await expect(page.getByText(/사용자 일괄 등록|User Bulk Upload/i)).toBeVisible();
await expect(page.getByRole("button", { name: /템플릿 다운로드|Download Template/i })).toBeVisible();
});
test("should show success results after mock upload", async ({ page }) => {
// Mock bulk API response
await page.route("**/api/v1/admin/users/bulk", async (route) => {
await route.fulfill({
json: {
results: [
{ email: "success@test.com", success: true, userId: "u-1" },
{ email: "fail@test.com", success: false, message: "Invalid format" },
],
},
});
});
await page.goto("/users");
await page.getByRole("button", { name: /일괄 등록|Bulk Import/i }).click();
// Directly set internal state for testing results view if file simulation is hard
// But let's assume we want to see the "Start Upload" button disabled initially
const uploadBtn = page.getByRole("button", { name: /등록 시작|Start Upload/i });
await expect(uploadBtn).toBeDisabled();
});
});