103 lines
3.4 KiB
TypeScript
103 lines
3.4 KiB
TypeScript
import { useLayoutEffect } from "react";
|
|
import { describe, it, expect } from "vitest";
|
|
import {
|
|
renderWithProviders as render,
|
|
screen,
|
|
waitFor,
|
|
} from "../utils/test-utils";
|
|
import "@testing-library/jest-dom/vitest";
|
|
import FinalReviewPage from "../../app/create/final-review/page";
|
|
import { useCreateFlow } from "../../app/create/context/CreateFlowContext";
|
|
|
|
const FALLBACK_CARD_TITLE = "Your community";
|
|
const FALLBACK_CARD_DESCRIPTION_SNIPPET =
|
|
"Add a short description of your community";
|
|
|
|
function FinalReviewWithFlowState({
|
|
title,
|
|
summary,
|
|
}: {
|
|
title: string;
|
|
summary?: string;
|
|
}) {
|
|
const { replaceState } = useCreateFlow();
|
|
useLayoutEffect(() => {
|
|
replaceState({ title, ...(summary !== undefined ? { summary } : {}) });
|
|
}, [replaceState, title, summary]);
|
|
return <FinalReviewPage />;
|
|
}
|
|
|
|
describe("FinalReviewPage", () => {
|
|
it("renders without crashing", () => {
|
|
render(<FinalReviewPage />);
|
|
expect(screen.getByRole("heading", { level: 1 })).toBeInTheDocument();
|
|
});
|
|
|
|
it("renders HeaderLockup with expected title", () => {
|
|
render(<FinalReviewPage />);
|
|
expect(
|
|
screen.getByRole("heading", {
|
|
name: "Review your CommunityRule",
|
|
}),
|
|
).toBeInTheDocument();
|
|
});
|
|
|
|
it("renders HeaderLockup with expected description", () => {
|
|
render(<FinalReviewPage />);
|
|
expect(
|
|
screen.getByText(
|
|
/Here's what other people will see. Make sure everything looks good before you finalize everything. Once the rule is finalized, you must use one of your decision-making mechanisms to edit it again./i,
|
|
),
|
|
).toBeInTheDocument();
|
|
});
|
|
|
|
it("renders RuleCard with fallback title when context has no name", () => {
|
|
render(<FinalReviewPage />);
|
|
expect(screen.getByText(FALLBACK_CARD_TITLE)).toBeInTheDocument();
|
|
});
|
|
|
|
it("renders RuleCard with fallback description when context has no summary", () => {
|
|
render(<FinalReviewPage />);
|
|
expect(
|
|
screen.getByText(new RegExp(FALLBACK_CARD_DESCRIPTION_SNIPPET, "i")),
|
|
).toBeInTheDocument();
|
|
});
|
|
|
|
it("renders RuleCard title from create flow state", async () => {
|
|
render(
|
|
<FinalReviewWithFlowState title="Oak Park Commons" summary="Local mutual aid." />,
|
|
);
|
|
await waitFor(() => {
|
|
expect(screen.getByText("Oak Park Commons")).toBeInTheDocument();
|
|
});
|
|
expect(
|
|
screen.getByText(/Local mutual aid\./i),
|
|
).toBeInTheDocument();
|
|
});
|
|
|
|
it("renders RuleCard as a button (card is interactive)", () => {
|
|
render(<FinalReviewPage />);
|
|
const buttons = screen.getAllByRole("button");
|
|
expect(buttons.length).toBeGreaterThanOrEqual(1);
|
|
expect(
|
|
buttons.some((el) => el.textContent?.includes(FALLBACK_CARD_TITLE)),
|
|
).toBe(true);
|
|
});
|
|
|
|
it("renders expanded RuleCard with category labels", () => {
|
|
render(<FinalReviewPage />);
|
|
expect(screen.getByText("Values")).toBeInTheDocument();
|
|
expect(screen.getByText("Communication")).toBeInTheDocument();
|
|
expect(screen.getByText("Membership")).toBeInTheDocument();
|
|
expect(screen.getByText("Decision-making")).toBeInTheDocument();
|
|
expect(screen.getByText("Conflict management")).toBeInTheDocument();
|
|
});
|
|
|
|
it("renders category chips", () => {
|
|
render(<FinalReviewPage />);
|
|
expect(screen.getByText("Consciousness")).toBeInTheDocument();
|
|
expect(screen.getByText("Signal")).toBeInTheDocument();
|
|
expect(screen.getByText("Open Admission")).toBeInTheDocument();
|
|
});
|
|
});
|