Files
homepage/src/widgets/healthchecks/component.test.jsx
shamoon 614a87d768 DRY
2026-02-20 20:25:34 -08:00

77 lines
2.8 KiB
JavaScript

// @vitest-environment jsdom
import { screen } from "@testing-library/react";
import { beforeEach, describe, expect, it, vi } from "vitest";
import { renderWithProviders } from "test-utils/render-with-providers";
import { expectBlockValue } from "test-utils/widget-assertions";
const { useWidgetAPI } = vi.hoisted(() => ({ useWidgetAPI: vi.fn() }));
vi.mock("utils/proxy/use-widget-api", () => ({ default: useWidgetAPI }));
import Component from "./component";
describe("widgets/healthchecks/component", () => {
beforeEach(() => {
vi.clearAllMocks();
});
it("renders placeholders while loading", () => {
useWidgetAPI.mockReturnValue({ data: undefined, error: undefined });
const { container } = renderWithProviders(
<Component service={{ widget: { type: "healthchecks", url: "http://x" } }} />,
{ settings: { hideErrors: false } },
);
expect(container.querySelectorAll(".service-block")).toHaveLength(2);
expect(screen.getByText("healthchecks.status")).toBeInTheDocument();
expect(screen.getByText("healthchecks.last_ping")).toBeInTheDocument();
});
it("renders error UI when widget API errors", () => {
useWidgetAPI.mockReturnValue({ data: undefined, error: { message: "nope" } });
renderWithProviders(<Component service={{ widget: { type: "healthchecks", url: "http://x" } }} />, {
settings: { hideErrors: false },
});
expect(screen.getAllByText(/widget\.api_error/i).length).toBeGreaterThan(0);
expect(screen.getByText("nope")).toBeInTheDocument();
});
it("renders up/down counts when widget.uuid is not set", () => {
useWidgetAPI.mockReturnValue({
data: {
checks: [{ status: "up" }, { status: "down" }, { status: "up" }, { status: "paused" }],
},
error: undefined,
});
const { container } = renderWithProviders(
<Component service={{ widget: { type: "healthchecks", url: "http://x" } }} />,
{ settings: { hideErrors: false } },
);
expect(container.querySelectorAll(".service-block")).toHaveLength(2);
expectBlockValue(container, "healthchecks.up", 2);
expectBlockValue(container, "healthchecks.down", 1);
});
it("renders status and never when widget.uuid is set but last_ping is missing", () => {
useWidgetAPI.mockReturnValue({
data: { status: "up", last_ping: null, checks: [] },
error: undefined,
});
const { container } = renderWithProviders(
<Component service={{ widget: { type: "healthchecks", url: "http://x", uuid: "abc" } }} />,
{ settings: { hideErrors: false } },
);
expect(container.querySelectorAll(".service-block")).toHaveLength(2);
expectBlockValue(container, "healthchecks.status", "healthchecks.up");
expectBlockValue(container, "healthchecks.last_ping", "healthchecks.never");
});
});