291 lines
9.0 KiB
React
291 lines
9.0 KiB
React
import { describe, test, expect } from "vitest";
|
|
import {
|
|
renderWithProviders as render,
|
|
screen,
|
|
waitFor,
|
|
} from "../utils/test-utils";
|
|
import Page from "../../app/(marketing)/page";
|
|
|
|
describe("Page", () => {
|
|
test("renders all main sections", async () => {
|
|
render(<Page />);
|
|
|
|
// Check that all main sections are rendered (using getAllByText since there are multiple instances)
|
|
expect(screen.getAllByText("Collaborate").length).toBeGreaterThan(0);
|
|
expect(screen.getAllByText("with clarity").length).toBeGreaterThan(0);
|
|
expect(
|
|
screen.getAllByText(
|
|
"Help your community make important decisions in a way that reflects its unique values.",
|
|
).length,
|
|
).toBeGreaterThan(0);
|
|
|
|
// Wait for dynamically imported components to load
|
|
// Check numbered cards section (using getAllByText since there are multiple instances)
|
|
await waitFor(() => {
|
|
expect(
|
|
screen.getAllByText("How CommunityRule works").length,
|
|
).toBeGreaterThan(0);
|
|
});
|
|
expect(
|
|
screen.getAllByText(
|
|
"Here's a quick overview of the process, from start to finish.",
|
|
).length,
|
|
).toBeGreaterThan(0);
|
|
|
|
// FeatureGrid is next/dynamic — wait like other code-split sections
|
|
await waitFor(() => {
|
|
expect(
|
|
screen.getAllByText("We've got your back, every step of the way")
|
|
.length,
|
|
).toBeGreaterThan(0);
|
|
});
|
|
expect(
|
|
screen.getAllByText(
|
|
"Use our toolkit to improve, document, and evolve your organization.",
|
|
).length,
|
|
).toBeGreaterThan(0);
|
|
|
|
// Check ask organizer section (using getAllByText since there are multiple instances)
|
|
expect(screen.getAllByText("Still have questions?").length).toBeGreaterThan(
|
|
0,
|
|
);
|
|
expect(
|
|
screen.getAllByText("Get answers from an experienced organizer").length,
|
|
).toBeGreaterThan(0);
|
|
});
|
|
|
|
test("renders hero banner with correct data", () => {
|
|
render(<Page />);
|
|
|
|
// Check hero banner content (using getAllByText since there are multiple instances)
|
|
expect(screen.getAllByText("Collaborate").length).toBeGreaterThan(0);
|
|
expect(screen.getAllByText("with clarity").length).toBeGreaterThan(0);
|
|
expect(
|
|
screen.getAllByText(
|
|
"Help your community make important decisions in a way that reflects its unique values.",
|
|
).length,
|
|
).toBeGreaterThan(0);
|
|
expect(
|
|
screen.getAllByText("Learn how CommunityRule works").length,
|
|
).toBeGreaterThan(0);
|
|
});
|
|
|
|
test("renders numbered cards with correct data", async () => {
|
|
render(<Page />);
|
|
|
|
// Wait for dynamically imported NumberedCards component to load
|
|
await waitFor(() => {
|
|
expect(
|
|
screen.getAllByText("How CommunityRule works").length,
|
|
).toBeGreaterThan(0);
|
|
});
|
|
expect(
|
|
screen.getAllByText(
|
|
"Here's a quick overview of the process, from start to finish.",
|
|
).length,
|
|
).toBeGreaterThan(0);
|
|
|
|
// Check individual card content (using getAllByText since there are multiple instances)
|
|
expect(
|
|
screen.getAllByText("Document how your community makes decisions").length,
|
|
).toBeGreaterThan(0);
|
|
expect(
|
|
screen.getAllByText(
|
|
"Build an operating manual for a successful community",
|
|
).length,
|
|
).toBeGreaterThan(0);
|
|
expect(
|
|
screen.getAllByText(
|
|
"Get a link to your manual for your group to review and evolve",
|
|
).length,
|
|
).toBeGreaterThan(0);
|
|
});
|
|
|
|
test("renders feature grid with correct data", async () => {
|
|
render(<Page />);
|
|
|
|
// Wait for dynamically imported FeatureGrid component to load
|
|
await waitFor(() => {
|
|
expect(
|
|
screen.getAllByText("We've got your back, every step of the way")
|
|
.length,
|
|
).toBeGreaterThan(0);
|
|
});
|
|
expect(
|
|
screen.getAllByText(
|
|
"Use our toolkit to improve, document, and evolve your organization.",
|
|
).length,
|
|
).toBeGreaterThan(0);
|
|
});
|
|
|
|
test("renders ask organizer section with correct data", () => {
|
|
render(<Page />);
|
|
|
|
// Check ask organizer content (using getAllByText since there are multiple instances)
|
|
expect(screen.getAllByText("Still have questions?").length).toBeGreaterThan(
|
|
0,
|
|
);
|
|
expect(
|
|
screen.getAllByText("Get answers from an experienced organizer").length,
|
|
).toBeGreaterThan(0);
|
|
expect(screen.getAllByText("Ask an organizer").length).toBeGreaterThan(0);
|
|
});
|
|
|
|
test("renders all component sections", async () => {
|
|
render(<Page />);
|
|
|
|
// Check that all major components are present by looking for their content
|
|
// HeroBanner
|
|
expect(screen.getAllByText("Collaborate").length).toBeGreaterThan(0);
|
|
|
|
// Wait for dynamically imported components to load
|
|
// LogoWall - should be present (even if just the component structure)
|
|
// NumberedCards
|
|
await waitFor(() => {
|
|
expect(
|
|
screen.getAllByText("How CommunityRule works").length,
|
|
).toBeGreaterThan(0);
|
|
});
|
|
|
|
// RuleStack - should be present
|
|
// FeatureGrid
|
|
await waitFor(() => {
|
|
expect(
|
|
screen.getAllByText("We've got your back, every step of the way")
|
|
.length,
|
|
).toBeGreaterThan(0);
|
|
});
|
|
|
|
// QuoteBlock - should be present
|
|
// AskOrganizer
|
|
expect(screen.getAllByText("Still have questions?").length).toBeGreaterThan(
|
|
0,
|
|
);
|
|
});
|
|
|
|
test("has correct page structure", () => {
|
|
render(<Page />);
|
|
|
|
const mainContainer = screen.getAllByText("Collaborate")[0].closest("div");
|
|
expect(mainContainer).toBeInTheDocument();
|
|
});
|
|
|
|
test("renders call-to-action elements", () => {
|
|
render(<Page />);
|
|
|
|
// Check CTA button in hero banner
|
|
expect(
|
|
screen.getAllByText("Learn how CommunityRule works").length,
|
|
).toBeGreaterThan(0);
|
|
|
|
// Check CTA button in ask organizer section
|
|
expect(screen.getAllByText("Ask an organizer").length).toBeGreaterThan(0);
|
|
});
|
|
|
|
test("renders descriptive text content", async () => {
|
|
render(<Page />);
|
|
|
|
// Check main description (using getAllByText since there are multiple instances)
|
|
expect(
|
|
screen.getAllByText(
|
|
"Help your community make important decisions in a way that reflects its unique values.",
|
|
).length,
|
|
).toBeGreaterThan(0);
|
|
|
|
// Wait for dynamically imported NumberedCards component
|
|
await waitFor(() => {
|
|
expect(
|
|
screen.getAllByText(
|
|
"Here's a quick overview of the process, from start to finish.",
|
|
).length,
|
|
).toBeGreaterThan(0);
|
|
});
|
|
|
|
// Wait for dynamically imported FeatureGrid component
|
|
await waitFor(() => {
|
|
expect(
|
|
screen.getAllByText(
|
|
"Use our toolkit to improve, document, and evolve your organization.",
|
|
).length,
|
|
).toBeGreaterThan(0);
|
|
});
|
|
|
|
// Check ask organizer description (using getAllByText since there are multiple instances)
|
|
expect(
|
|
screen.getAllByText("Get answers from an experienced organizer").length,
|
|
).toBeGreaterThan(0);
|
|
});
|
|
|
|
test("renders section titles correctly", async () => {
|
|
render(<Page />);
|
|
|
|
// Check all section titles (using getAllByText since there are multiple instances)
|
|
expect(screen.getAllByText("Collaborate").length).toBeGreaterThan(0);
|
|
|
|
// Wait for dynamically imported components
|
|
await waitFor(() => {
|
|
expect(
|
|
screen.getAllByText("How CommunityRule works").length,
|
|
).toBeGreaterThan(0);
|
|
});
|
|
await waitFor(() => {
|
|
expect(
|
|
screen.getAllByText("We've got your back, every step of the way")
|
|
.length,
|
|
).toBeGreaterThan(0);
|
|
});
|
|
expect(screen.getAllByText("Still have questions?").length).toBeGreaterThan(
|
|
0,
|
|
);
|
|
});
|
|
|
|
test("renders numbered card items with correct content", async () => {
|
|
render(<Page />);
|
|
|
|
// Wait for dynamically imported NumberedCards component
|
|
await waitFor(() => {
|
|
// Check all three numbered card items (using getAllByText since there are multiple instances)
|
|
expect(
|
|
screen.getAllByText("Document how your community makes decisions")
|
|
.length,
|
|
).toBeGreaterThan(0);
|
|
});
|
|
expect(
|
|
screen.getAllByText(
|
|
"Build an operating manual for a successful community",
|
|
).length,
|
|
).toBeGreaterThan(0);
|
|
expect(
|
|
screen.getAllByText(
|
|
"Get a link to your manual for your group to review and evolve",
|
|
).length,
|
|
).toBeGreaterThan(0);
|
|
});
|
|
|
|
test("renders subtitle content correctly", async () => {
|
|
render(<Page />);
|
|
|
|
// Check subtitles (using getAllByText since there are multiple instances)
|
|
expect(screen.getAllByText("with clarity").length).toBeGreaterThan(0);
|
|
|
|
// Wait for dynamically imported components
|
|
await waitFor(() => {
|
|
expect(
|
|
screen.getAllByText(
|
|
"Here's a quick overview of the process, from start to finish.",
|
|
).length,
|
|
).toBeGreaterThan(0);
|
|
});
|
|
await waitFor(() => {
|
|
expect(
|
|
screen.getAllByText(
|
|
"Use our toolkit to improve, document, and evolve your organization.",
|
|
).length,
|
|
).toBeGreaterThan(0);
|
|
});
|
|
expect(
|
|
screen.getAllByText("Get answers from an experienced organizer").length,
|
|
).toBeGreaterThan(0);
|
|
});
|
|
});
|