import { describe, it, expect, vi, beforeEach } from "vitest"; import { render, screen } from "@testing-library/react"; import RelatedArticles from "../../app/components/RelatedArticles"; // Mock ContentThumbnailTemplate with a simple implementation vi.mock("../../app/components/ContentThumbnailTemplate", () => ({ default: ({ post, variant }) => (

{post.frontmatter?.title || "Untitled"}

{post.frontmatter?.description || "No description"}

), })); // Mock blog post data const mockRelatedPosts = [ { slug: "resolving-active-conflicts", frontmatter: { title: "Resolving Active Conflicts", description: "Practical steps for resolving conflicts while maintaining trust", author: "Test Author", date: "2025-04-15", }, }, { slug: "operational-security-mutual-aid", frontmatter: { title: "Operational Security for Mutual Aid", description: "Tactics to protect members, secure communication, and prevent infiltration", author: "Test Author", date: "2025-04-14", }, }, { slug: "making-decisions-without-hierarchy", frontmatter: { title: "Making Decisions Without Hierarchy", description: "A brief guide to collaborative nonhierarchical decision making", author: "Test Author", date: "2025-04-13", }, }, ]; describe("Blog Core Integration", () => { beforeEach(() => { // Mock window.innerWidth for responsive tests Object.defineProperty(window, "innerWidth", { writable: true, configurable: true, value: 1024, // Desktop width }); }); it("should render RelatedArticles component with correct structure", () => { render( ); // Verify the section exists expect(screen.getByRole("heading", { level: 2 })).toHaveTextContent( "Related Articles" ); // Verify thumbnails are rendered expect( screen.getByTestId("thumbnail-operational-security-mutual-aid") ).toBeInTheDocument(); expect( screen.getByTestId("thumbnail-making-decisions-without-hierarchy") ).toBeInTheDocument(); // Current post should not be displayed expect( screen.queryByTestId("thumbnail-resolving-active-conflicts") ).not.toBeInTheDocument(); }); it("should filter out current post from related articles", () => { render( ); // Current post should not be displayed expect( screen.queryByTestId("thumbnail-resolving-active-conflicts") ).not.toBeInTheDocument(); // Other posts should be displayed expect( screen.getByTestId("thumbnail-operational-security-mutual-aid") ).toBeInTheDocument(); expect( screen.getByTestId("thumbnail-making-decisions-without-hierarchy") ).toBeInTheDocument(); }); it("should display all posts when no current post is specified", () => { render(); // All posts should be displayed expect( screen.getByTestId("thumbnail-resolving-active-conflicts") ).toBeInTheDocument(); expect( screen.getByTestId("thumbnail-operational-security-mutual-aid") ).toBeInTheDocument(); expect( screen.getByTestId("thumbnail-making-decisions-without-hierarchy") ).toBeInTheDocument(); }); it("should handle empty related posts array", () => { const { container } = render( ); expect(container.firstChild).toBeNull(); }); it("should create correct links for each thumbnail", () => { render( ); // Verify links are created correctly const operationalLink = screen .getByTestId("thumbnail-operational-security-mutual-aid") .querySelector("a"); const hierarchyLink = screen .getByTestId("thumbnail-making-decisions-without-hierarchy") .querySelector("a"); expect(operationalLink).toHaveAttribute( "href", "/blog/operational-security-mutual-aid" ); expect(hierarchyLink).toHaveAttribute( "href", "/blog/making-decisions-without-hierarchy" ); }); it("should display section heading", () => { render( ); expect(screen.getByRole("heading", { level: 2 })).toHaveTextContent( "Related Articles" ); }); });