137 lines
4.3 KiB
TypeScript
137 lines
4.3 KiB
TypeScript
import React from "react";
|
|
import { screen } from "@testing-library/react";
|
|
import { describe, it, expect, vi } from "vitest";
|
|
import { renderWithProviders as render } from "../utils/test-utils";
|
|
import ContentBanner from "../../app/components/sections/ContentBanner";
|
|
import type { BlogPost } from "../../lib/content";
|
|
|
|
vi.mock("next/link", () => ({
|
|
default: ({
|
|
children,
|
|
href,
|
|
...props
|
|
}: {
|
|
children?: React.ReactNode;
|
|
href?: string;
|
|
[key: string]: unknown;
|
|
}) => (
|
|
<a href={href} {...props}>
|
|
{children}
|
|
</a>
|
|
),
|
|
}));
|
|
|
|
vi.mock("../../lib/assetUtils", async (importOriginal) => {
|
|
const actual =
|
|
(await importOriginal()) as typeof import("../../lib/assetUtils");
|
|
return {
|
|
...actual,
|
|
getAssetPath: vi.fn((asset: string) => `/assets/${asset}`),
|
|
};
|
|
});
|
|
|
|
const mockPost: BlogPost = {
|
|
slug: "test-article",
|
|
frontmatter: {
|
|
title: "Test Article",
|
|
description: "Test description",
|
|
author: "Test Author",
|
|
date: "2025-04-15",
|
|
},
|
|
content: "",
|
|
htmlContent: "",
|
|
filePath: "test-article.md",
|
|
lastModified: new Date("2025-04-15"),
|
|
};
|
|
|
|
// Pure presentational; no provider context needed.
|
|
describe("ContentBanner", () => {
|
|
it("renders without crashing", () => {
|
|
render(<ContentBanner post={mockPost} />);
|
|
});
|
|
|
|
it("renders article title", () => {
|
|
render(<ContentBanner post={mockPost} />);
|
|
expect(
|
|
screen.getByRole("heading", { name: "Test Article" }),
|
|
).toBeInTheDocument();
|
|
});
|
|
|
|
it("renders article description", () => {
|
|
render(<ContentBanner post={mockPost} />);
|
|
expect(screen.getByText("Test description")).toBeInTheDocument();
|
|
});
|
|
|
|
it("renders useCase variant rule preview as link when href is set", () => {
|
|
const { container } = render(
|
|
<ContentBanner
|
|
post={mockPost}
|
|
variant="useCase"
|
|
rulePreview={{
|
|
title: "Sample Operating Manual",
|
|
description: "Governance preview for the case study.",
|
|
backgroundColor: "bg-[var(--color-surface-invert-brand-lavender)]",
|
|
iconPath: "assets/case-study/case-study-mutual-aid.svg",
|
|
href: "/use-cases/mutual-aid-colorado/rule",
|
|
}}
|
|
/>,
|
|
);
|
|
|
|
const link = screen.getByRole("link", {
|
|
name: /view sample operating manual community rule/i,
|
|
});
|
|
expect(link).toHaveAttribute("href", "/use-cases/mutual-aid-colorado/rule");
|
|
expect(container.querySelector(".pointer-events-none")).toBeNull();
|
|
});
|
|
|
|
it("renders useCase variant with ContentContainer copy and rule preview", () => {
|
|
const { container } = render(
|
|
<ContentBanner
|
|
post={mockPost}
|
|
variant="useCase"
|
|
rulePreview={{
|
|
title: "Sample Operating Manual",
|
|
description: "Governance preview for the case study.",
|
|
backgroundColor: "bg-[var(--color-surface-invert-brand-lavender)]",
|
|
iconPath: "assets/case-study/case-study-mutual-aid.svg",
|
|
}}
|
|
/>,
|
|
);
|
|
|
|
const title = screen.getByRole("heading", { name: "Test Article" });
|
|
expect(title).toBeInTheDocument();
|
|
expect(title).toHaveClass("sm:text-[24px]", "md:text-[32px]");
|
|
expect(screen.getByText("Sample Operating Manual")).toBeInTheDocument();
|
|
const copyColumn = container.querySelector('[data-node-id="19189:9171"]');
|
|
expect(copyColumn).toHaveClass("lg:max-w-[365px]");
|
|
expect(copyColumn).not.toHaveClass("max-w-[365px]");
|
|
const bannerRow = container.querySelector(
|
|
'[data-figma-node="22015:42621"]',
|
|
);
|
|
expect(bannerRow).toBeInTheDocument();
|
|
expect(bannerRow).toHaveClass("lg:grid-cols-2");
|
|
});
|
|
|
|
it("renders guide variant with left-aligned copy and logo mark", () => {
|
|
const { container } = render(
|
|
<ContentBanner post={mockPost} variant="guide" />,
|
|
);
|
|
expect(
|
|
screen.getByRole("heading", { name: "Test Article" }),
|
|
).toBeInTheDocument();
|
|
expect(screen.getByText("Test description")).toBeInTheDocument();
|
|
expect(screen.queryByText("Test Author")).not.toBeInTheDocument();
|
|
|
|
const bannerRow = container.querySelector('[data-node-id="19189:9358"]');
|
|
expect(bannerRow).toHaveClass("md:flex-row");
|
|
|
|
const logoMark = container.querySelector(
|
|
'[data-node-id="22078:806960"] img',
|
|
);
|
|
expect(logoMark).toHaveAttribute(
|
|
"src",
|
|
expect.stringContaining("guide-banner-logo-arrow.svg"),
|
|
);
|
|
});
|
|
});
|