Files
Nexus/apps/web/e2e/dev-system/rbac-permissions.spec.ts
T
Hartmut 4a5edeef3e
CI / Unit Tests (pull_request) Successful in 5m46s
CI / Lint (pull_request) Failing after 3m49s
CI / E2E Tests (pull_request) Has been skipped
CI / Fresh-Linux Docker Deploy (pull_request) Has been skipped
CI / Assistant Split Regression (pull_request) Failing after 35s
CI / Architecture Guardrails (pull_request) Failing after 2m14s
CI / Typecheck (pull_request) Successful in 4m22s
CI / Build (pull_request) Has been skipped
CI / Release Images (pull_request) Has been skipped
rename(phase 1): CapaKraken → Nexus across code, UI, docs, CI
- @capakraken/* → @nexus/* across 12 packages (root + 11 workspaces),
  1551 import lines migrated via codemod
- User-visible brand strings renamed (emails, page titles, PWA
  manifest, mobile header, MFA backup-codes header, tooltips, signin
  page, invite page, weekly digest, install prompt)
- TOTP issuer "CapaKraken" → "Nexus" (existing secrets still valid;
  re-enrollment relabels them in users' authenticator apps)
- Function rename: assertCapaKrakenDbTarget → assertNexusDbTarget
- LocalStorage migration shim in apps/web/src/app/layout.tsx copies
  capakraken_* → nexus_* on first load (guarded by nexus_migrated_v1
  sentinel; runs once per browser, then never again)
- Service-worker cache name capakraken-v2 → nexus-v2 with one-time
  caches.delete('capakraken-v2') from the same shim
- Email-domain fixtures @capakraken.{dev,app} → @nexus.{dev,app} in
  seed data, e2e specs, SMTP default fallback
- Dockerfile.dev / Dockerfile.prod / all .github/workflows/*.yml
  pnpm --filter @capakraken/* → @nexus/*
- README, CLAUDE.md, LEARNINGS.md, all docs/*.md, .env.example,
  tooling/deploy/.env.production.example brand sweep

Phase 1 deliberately leaves untouched (handled in Phase 3 cutover):
- PostgreSQL DB name "capakraken" and POSTGRES_USER "capakraken"
- Volume names capakraken_pgdata etc.
- Compose project name "capakraken" / "capakraken-prod"
- db-target-guard default expectedDatabase
- env-var CAPAKRAKEN_EXPECTED_DB_NAME
- Container DNS names in docker-compose.ci.yml

Quality gates green: pnpm typecheck (7/7), pnpm test:unit (7/7),
pnpm lint (0 errors), check:exports/imports/architecture all pass.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-21 15:10:44 +02:00

174 lines
6.3 KiB
TypeScript

/**
* RBAC / permissions tests — dev system
*
* Validates that role-based access control is enforced correctly
* against the running dev server with real seed data.
*
* All tests reuse pre-authenticated storage states from global setup
* so they don't trigger the auth rate limiter.
*
* Role hierarchy:
* ADMIN — full access including all /admin/* routes
* MANAGER — can view allocations, cannot access /admin/users etc.
* VIEWER — limited read-only; allocations are forbidden (TRPC FORBIDDEN)
*/
import { expect, test } from "@playwright/test";
import { STORAGE_STATE } from "../../playwright.dev.config.js";
// ---------------------------------------------------------------------------
// Admin routes — admin session
// ---------------------------------------------------------------------------
test.describe("RBAC — admin routes (admin session)", () => {
test.use({ storageState: STORAGE_STATE.admin });
test("admin can access /admin/users and sees user rows", async ({ page }) => {
await page.goto("/admin/users");
await page.waitForLoadState("networkidle");
await expect(page.locator("table")).toBeVisible({ timeout: 10000 });
// Seed users have planarchy.dev or nexus.dev email domains
await expect(page.locator("text=/planarchy\\.dev|capakraken\\.dev/").first()).toBeVisible({
timeout: 10000,
});
});
test("admin can access /admin/system-roles without errors", async ({ page }) => {
await page.goto("/admin/system-roles");
await page.waitForLoadState("networkidle");
await expect(page.locator("h1,h2").first()).toBeVisible({ timeout: 10000 });
});
test("admin can access /admin/blueprints without errors", async ({ page }) => {
await page.goto("/admin/blueprints");
await page.waitForLoadState("networkidle");
await expect(page.locator("h1,h2,h3").first()).toBeVisible({ timeout: 10000 });
});
});
// ---------------------------------------------------------------------------
// Admin routes — non-admin sessions should be blocked
// ---------------------------------------------------------------------------
test.describe("RBAC — /admin/users blocked for manager", () => {
test.use({ storageState: STORAGE_STATE.manager });
test("manager is redirected or sees an error on /admin/users", async ({ page }) => {
await page.goto("/admin/users");
await page.waitForLoadState("networkidle");
const isRedirected = !page.url().includes("/admin/users");
const hasForbiddenText = await page
.locator("text=/forbidden|permission|access denied|not authorized|unauthorized/i")
.first()
.isVisible()
.catch(() => false);
expect(isRedirected || hasForbiddenText).toBe(true);
});
});
test.describe("RBAC — /admin/users blocked for viewer", () => {
test.use({ storageState: STORAGE_STATE.viewer });
test("viewer is redirected or sees an error on /admin/users", async ({ page }) => {
await page.goto("/admin/users");
await page.waitForLoadState("networkidle");
const isRedirected = !page.url().includes("/admin/users");
const hasForbiddenText = await page
.locator("text=/forbidden|permission|access denied|not authorized|unauthorized/i")
.first()
.isVisible()
.catch(() => false);
expect(isRedirected || hasForbiddenText).toBe(true);
});
});
// ---------------------------------------------------------------------------
// Allocations access by role
// ---------------------------------------------------------------------------
test.describe("RBAC — allocations permitted for admin", () => {
test.use({ storageState: STORAGE_STATE.admin });
test("admin can view /allocations without permission errors", async ({ page }) => {
await page.goto("/allocations");
await page.waitForLoadState("networkidle");
await expect(page.locator("text=/do not have permission to view allocations/i")).toHaveCount(
0,
{ timeout: 8000 },
);
});
});
test.describe("RBAC — allocations permitted for manager", () => {
test.use({ storageState: STORAGE_STATE.manager });
test("manager can view /allocations without permission errors", async ({ page }) => {
await page.goto("/allocations");
await page.waitForLoadState("networkidle");
await expect(page.locator("text=/do not have permission to view allocations/i")).toHaveCount(
0,
{ timeout: 8000 },
);
});
});
test.describe("RBAC — allocations forbidden for viewer", () => {
test.use({ storageState: STORAGE_STATE.viewer });
test("viewer sees a permission error on /allocations", async ({ page }) => {
await page.goto("/allocations");
await page.waitForLoadState("networkidle");
// AllocationsClient renders the message in both the page subtitle and the card body;
// use .first() to avoid strict-mode violation.
await expect(
page.locator("text=/permission|forbidden|not have permission/i").first(),
).toBeVisible({ timeout: 10000 });
});
});
// ---------------------------------------------------------------------------
// Dashboard loads for every role
// ---------------------------------------------------------------------------
test.describe("RBAC — dashboard (admin)", () => {
test.use({ storageState: STORAGE_STATE.admin });
test("admin dashboard loads without errors", async ({ page }) => {
await page.goto("/dashboard");
await page.waitForLoadState("networkidle");
await expect(page).not.toHaveURL(/\/auth\/signin/, { timeout: 5000 });
await expect(page.locator("text=/500|Internal Server Error/i")).toHaveCount(0);
});
});
test.describe("RBAC — dashboard (manager)", () => {
test.use({ storageState: STORAGE_STATE.manager });
test("manager dashboard loads without errors", async ({ page }) => {
await page.goto("/dashboard");
await page.waitForLoadState("networkidle");
await expect(page).not.toHaveURL(/\/auth\/signin/, { timeout: 5000 });
await expect(page.locator("text=/500|Internal Server Error/i")).toHaveCount(0);
});
});
test.describe("RBAC — dashboard (viewer)", () => {
test.use({ storageState: STORAGE_STATE.viewer });
test("viewer dashboard loads without errors", async ({ page }) => {
await page.goto("/dashboard");
await page.waitForLoadState("networkidle");
await expect(page).not.toHaveURL(/\/auth\/signin/, { timeout: 5000 });
await expect(page.locator("text=/500|Internal Server Error/i")).toHaveCount(0);
});
});