Files
web/src/__tests__/ImpersonationBanner.test.tsx
T
groombook-engineer[bot] 45ed3587ba feat: extract groombook/web from monorepo
- Copy apps/web/ with all src, components, pages, portal
- Inline packages/types/ as local packages/types module
- Add tsconfig path aliases for @groombook/types
- Port Dockerfile and CI workflow
- Image name: ghcr.io/groombook/web

Co-Authored-By: Paperclip <noreply@paperclip.ing>
2026-05-02 21:38:42 +00:00

136 lines
3.7 KiB
TypeScript

import { describe, it, expect, vi, beforeEach, afterEach } from "vitest";
import { render, screen, fireEvent, act } from "@testing-library/react";
import { ImpersonationBanner } from "../portal/ImpersonationBanner.js";
import type { ImpersonationSession } from "@groombook/types";
function makeSession(overrides: Partial<ImpersonationSession> = {}): ImpersonationSession {
const now = new Date();
const expires = new Date(now.getTime() + 30 * 60 * 1000); // 30 min from now
return {
id: "session-uuid-1",
staffId: "staff-uuid-1",
clientId: "client-uuid-1",
reason: "Customer requested help",
status: "active",
startedAt: now.toISOString(),
endedAt: null,
expiresAt: expires.toISOString(),
createdAt: now.toISOString(),
...overrides,
};
}
describe("ImpersonationBanner", () => {
const onEnd = vi.fn();
const onExtend = vi.fn();
const onShowAudit = vi.fn();
beforeEach(() => {
vi.clearAllMocks();
vi.useFakeTimers();
});
afterEach(() => {
vi.useRealTimers();
});
it("renders banner when session is active", () => {
render(
<ImpersonationBanner
session={makeSession()}
isExtended={false}
onEnd={onEnd}
onExtend={onExtend}
onShowAudit={onShowAudit}
/>
);
expect(screen.getByText(/STAFF VIEW/)).toBeInTheDocument();
});
it("calls onEnd when End Session is clicked", () => {
render(
<ImpersonationBanner
session={makeSession()}
isExtended={false}
onEnd={onEnd}
onExtend={onExtend}
onShowAudit={onShowAudit}
/>
);
fireEvent.click(screen.getByRole("button", { name: /end session/i }));
expect(onEnd).toHaveBeenCalledTimes(1);
});
it("calls onShowAudit when Audit is clicked", () => {
render(
<ImpersonationBanner
session={makeSession()}
isExtended={false}
onEnd={onEnd}
onExtend={onExtend}
onShowAudit={onShowAudit}
/>
);
fireEvent.click(screen.getByRole("button", { name: /audit/i }));
expect(onShowAudit).toHaveBeenCalledTimes(1);
});
it("calls onEnd automatically when session expires", async () => {
const expiredSoon = new Date(Date.now() + 500);
const session = makeSession({ expiresAt: expiredSoon.toISOString() });
render(
<ImpersonationBanner
session={session}
isExtended={false}
onEnd={onEnd}
onExtend={onExtend}
onShowAudit={onShowAudit}
/>
);
// Advance past expiry
await act(async () => {
vi.advanceTimersByTime(2000);
});
expect(onEnd).toHaveBeenCalled();
});
it("shows Extend button when warning is active and session not yet extended", () => {
// Set expiry to 3 min from now — within warning threshold (< 5 min)
const expiresAt = new Date(Date.now() + 3 * 60 * 1000).toISOString();
render(
<ImpersonationBanner
session={makeSession({ expiresAt })}
isExtended={false}
onEnd={onEnd}
onExtend={onExtend}
onShowAudit={onShowAudit}
/>
);
// Tick the timer once to trigger showWarning
act(() => {
vi.advanceTimersByTime(1000);
});
expect(screen.getByRole("button", { name: /extend/i })).toBeInTheDocument();
});
it("does not show Extend button when already extended", () => {
const expiresAt = new Date(Date.now() + 3 * 60 * 1000).toISOString();
render(
<ImpersonationBanner
session={makeSession({ expiresAt })}
isExtended={true}
onEnd={onEnd}
onExtend={onExtend}
onShowAudit={onShowAudit}
/>
);
act(() => {
vi.advanceTimersByTime(1000);
});
expect(screen.queryByRole("button", { name: /extend/i })).not.toBeInTheDocument();
});
});