Files
homepage/src/components/services/ping.test.jsx
2026-02-04 19:58:39 -08:00

77 lines
2.4 KiB
JavaScript

// @vitest-environment jsdom
import { render, screen } from "@testing-library/react";
import { beforeEach, describe, expect, it, vi } from "vitest";
const { useSWR } = vi.hoisted(() => ({ useSWR: vi.fn() }));
vi.mock("swr", () => ({
default: useSWR,
}));
import Ping from "./ping";
describe("components/services/ping", () => {
beforeEach(() => {
vi.clearAllMocks();
});
it("renders a loading state when data is not available yet", () => {
useSWR.mockReturnValue({ data: undefined, error: undefined });
render(<Ping groupName="g" serviceName="s" />);
expect(screen.getByText("ping.ping")).toBeInTheDocument();
expect(screen.getByText("ping.ping").closest(".ping-status")).toHaveAttribute(
"title",
expect.stringContaining("ping.not_available"),
);
});
it("renders an error label when SWR returns error", () => {
useSWR.mockReturnValue({ data: undefined, error: new Error("boom") });
render(<Ping groupName="g" serviceName="s" />);
expect(screen.getByText("ping.error")).toBeInTheDocument();
});
it("renders down when the host is not alive", () => {
useSWR.mockReturnValue({ data: { alive: false, time: 0 }, error: undefined });
render(<Ping groupName="g" serviceName="s" />);
expect(screen.getByText("ping.down")).toBeInTheDocument();
});
it("renders the ping time when the host is alive", () => {
useSWR.mockReturnValue({ data: { alive: true, time: 123 }, error: undefined });
render(<Ping groupName="g" serviceName="s" />);
expect(useSWR).toHaveBeenCalledWith("/api/ping?groupName=g&serviceName=s", { refreshInterval: 30000 });
expect(screen.getByText("123")).toBeInTheDocument();
expect(screen.getByText("123").closest(".ping-status")).toHaveAttribute(
"title",
expect.stringContaining("ping.up"),
);
});
it("renders an up label for basic style", () => {
useSWR.mockReturnValue({ data: { alive: true, time: 1 }, error: undefined });
render(<Ping groupName="g" serviceName="s" style="basic" />);
expect(screen.getByText("ping.up")).toBeInTheDocument();
});
it("renders a dot when style is dot", () => {
useSWR.mockReturnValue({ data: { alive: true, time: 5 }, error: undefined });
const { container } = render(<Ping groupName="g" serviceName="s" style="dot" />);
expect(screen.queryByText("5")).not.toBeInTheDocument();
expect(container.querySelector(".rounded-full")).toBeTruthy();
});
});