mirror of
https://github.com/alkimake/paperclip.git
synced 2026-06-19 12:10:37 +09:00
138 lines
3.4 KiB
TypeScript
138 lines
3.4 KiB
TypeScript
|
|
// @vitest-environment jsdom
|
||
|
|
|
||
|
|
import { act } from "react";
|
||
|
|
import { createRoot } from "react-dom/client";
|
||
|
|
import { QueryClient, QueryClientProvider } from "@tanstack/react-query";
|
||
|
|
import { afterEach, beforeEach, describe, expect, it, vi } from "vitest";
|
||
|
|
import { CompanySettingsSidebar } from "./CompanySettingsSidebar";
|
||
|
|
|
||
|
|
const sidebarNavItemMock = vi.hoisted(() => vi.fn());
|
||
|
|
const mockSidebarBadgesApi = vi.hoisted(() => ({
|
||
|
|
get: vi.fn(),
|
||
|
|
}));
|
||
|
|
|
||
|
|
vi.mock("@/lib/router", () => ({
|
||
|
|
Link: ({
|
||
|
|
children,
|
||
|
|
to,
|
||
|
|
onClick,
|
||
|
|
}: {
|
||
|
|
children: React.ReactNode;
|
||
|
|
to: string;
|
||
|
|
onClick?: () => void;
|
||
|
|
}) => (
|
||
|
|
<button type="button" data-to={to} onClick={onClick}>
|
||
|
|
{children}
|
||
|
|
</button>
|
||
|
|
),
|
||
|
|
}));
|
||
|
|
|
||
|
|
vi.mock("@/context/CompanyContext", () => ({
|
||
|
|
useCompany: () => ({
|
||
|
|
selectedCompanyId: "company-1",
|
||
|
|
selectedCompany: { id: "company-1", name: "Paperclip" },
|
||
|
|
}),
|
||
|
|
}));
|
||
|
|
|
||
|
|
vi.mock("@/context/SidebarContext", () => ({
|
||
|
|
useSidebar: () => ({
|
||
|
|
isMobile: false,
|
||
|
|
setSidebarOpen: vi.fn(),
|
||
|
|
}),
|
||
|
|
}));
|
||
|
|
|
||
|
|
vi.mock("./SidebarNavItem", () => ({
|
||
|
|
SidebarNavItem: (props: {
|
||
|
|
to: string;
|
||
|
|
label: string;
|
||
|
|
end?: boolean;
|
||
|
|
badge?: number;
|
||
|
|
}) => {
|
||
|
|
sidebarNavItemMock(props);
|
||
|
|
return <div>{props.label}</div>;
|
||
|
|
},
|
||
|
|
}));
|
||
|
|
|
||
|
|
vi.mock("@/api/sidebarBadges", () => ({
|
||
|
|
sidebarBadgesApi: mockSidebarBadgesApi,
|
||
|
|
}));
|
||
|
|
|
||
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||
|
|
(globalThis as any).IS_REACT_ACT_ENVIRONMENT = true;
|
||
|
|
|
||
|
|
async function flushReact() {
|
||
|
|
await act(async () => {
|
||
|
|
await Promise.resolve();
|
||
|
|
await new Promise((resolve) => window.setTimeout(resolve, 0));
|
||
|
|
});
|
||
|
|
}
|
||
|
|
|
||
|
|
describe("CompanySettingsSidebar", () => {
|
||
|
|
let container: HTMLDivElement;
|
||
|
|
|
||
|
|
beforeEach(() => {
|
||
|
|
container = document.createElement("div");
|
||
|
|
document.body.appendChild(container);
|
||
|
|
mockSidebarBadgesApi.get.mockResolvedValue({
|
||
|
|
inbox: 0,
|
||
|
|
approvals: 0,
|
||
|
|
failedRuns: 0,
|
||
|
|
joinRequests: 2,
|
||
|
|
});
|
||
|
|
});
|
||
|
|
|
||
|
|
afterEach(() => {
|
||
|
|
container.remove();
|
||
|
|
document.body.innerHTML = "";
|
||
|
|
vi.clearAllMocks();
|
||
|
|
});
|
||
|
|
|
||
|
|
it("renders the company back link and the settings sections in the sidebar", async () => {
|
||
|
|
const root = createRoot(container);
|
||
|
|
const queryClient = new QueryClient({
|
||
|
|
defaultOptions: { queries: { retry: false } },
|
||
|
|
});
|
||
|
|
|
||
|
|
await act(async () => {
|
||
|
|
root.render(
|
||
|
|
<QueryClientProvider client={queryClient}>
|
||
|
|
<CompanySettingsSidebar />
|
||
|
|
</QueryClientProvider>,
|
||
|
|
);
|
||
|
|
});
|
||
|
|
await flushReact();
|
||
|
|
|
||
|
|
expect(container.textContent).toContain("Paperclip");
|
||
|
|
expect(container.textContent).toContain("Company Settings");
|
||
|
|
expect(container.textContent).toContain("General");
|
||
|
|
expect(container.textContent).toContain("Access");
|
||
|
|
expect(container.textContent).toContain("Invites");
|
||
|
|
expect(sidebarNavItemMock).toHaveBeenCalledWith(
|
||
|
|
expect.objectContaining({
|
||
|
|
to: "/company/settings",
|
||
|
|
label: "General",
|
||
|
|
end: true,
|
||
|
|
}),
|
||
|
|
);
|
||
|
|
expect(sidebarNavItemMock).toHaveBeenCalledWith(
|
||
|
|
expect.objectContaining({
|
||
|
|
to: "/company/settings/access",
|
||
|
|
label: "Access",
|
||
|
|
badge: 2,
|
||
|
|
end: true,
|
||
|
|
}),
|
||
|
|
);
|
||
|
|
expect(sidebarNavItemMock).toHaveBeenCalledWith(
|
||
|
|
expect.objectContaining({
|
||
|
|
to: "/company/settings/invites",
|
||
|
|
label: "Invites",
|
||
|
|
end: true,
|
||
|
|
}),
|
||
|
|
);
|
||
|
|
|
||
|
|
await act(async () => {
|
||
|
|
root.unmount();
|
||
|
|
});
|
||
|
|
});
|
||
|
|
});
|