mirror of
https://github.com/gethomepage/homepage.git
synced 2026-09-17 09:35:50 -07:00
49 lines
1.8 KiB
React
49 lines
1.8 KiB
React
// @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/readarr/component", () => {
|
|
beforeEach(() => {
|
|
vi.clearAllMocks();
|
|
});
|
|
|
|
it("renders placeholders while loading", () => {
|
|
useWidgetAPI.mockReturnValue({ data: undefined, error: undefined });
|
|
|
|
const { container } = renderWithProviders(<Component service={{ widget: { type: "readarr" } }} />, {
|
|
settings: { hideErrors: false },
|
|
});
|
|
|
|
expect(container.querySelectorAll(".service-block")).toHaveLength(3);
|
|
expect(screen.getByText("readarr.wanted")).toBeInTheDocument();
|
|
expect(screen.getByText("readarr.queued")).toBeInTheDocument();
|
|
expect(screen.getByText("readarr.books")).toBeInTheDocument();
|
|
});
|
|
|
|
it("renders counts when loaded", () => {
|
|
useWidgetAPI.mockImplementation((_widget, endpoint) => {
|
|
if (endpoint === "book") return { data: { have: 10 }, error: undefined };
|
|
if (endpoint === "wanted/missing") return { data: { totalRecords: 2 }, error: undefined };
|
|
if (endpoint === "queue/status") return { data: { totalCount: 3 }, error: undefined };
|
|
return { data: undefined, error: undefined };
|
|
});
|
|
|
|
const { container } = renderWithProviders(<Component service={{ widget: { type: "readarr" } }} />, {
|
|
settings: { hideErrors: false },
|
|
});
|
|
|
|
expectBlockValue(container, "readarr.wanted", 2);
|
|
expectBlockValue(container, "readarr.queued", 3);
|
|
expectBlockValue(container, "readarr.books", 10);
|
|
});
|
|
});
|