mirror of
https://github.com/snapotter-hq/SnapOtter.git
synced 2026-08-03 07:46:42 +02:00
59 lines
1.9 KiB
TypeScript
59 lines
1.9 KiB
TypeScript
// @vitest-environment jsdom
|
|||
|
|
import { TOOLS } from "@snapotter/shared";
|
||
|
|
import { cleanup, fireEvent, render, screen } from "@testing-library/react";
|
||
|
|
import { MemoryRouter } from "react-router-dom";
|
||
|
|
import { afterEach, beforeEach, describe, expect, it, vi } from "vitest";
|
||
|
|
import { ToolCard } from "@/components/common/tool-card";
|
||
|
|
import { usePinnedToolsStore } from "@/stores/pinned-tools-store";
|
||
|
|
|
||
|
|
// Make the store's optimistic persistence a no-op so the test stays server-free.
|
||
|
|
vi.mock("@/lib/api", () => ({
|
||
|
|
apiGet: vi.fn(() => Promise.resolve({ preferences: {} })),
|
||
|
|
apiPut: vi.fn(() => Promise.resolve({ ok: true })),
|
||
|
|
}));
|
||
|
|
|
||
|
|
const resize = TOOLS.find((tool) => tool.id === "resize");
|
||
|
|
if (!resize) throw new Error("resize tool missing from TOOLS");
|
||
|
|
|
||
|
|
afterEach(cleanup);
|
||
|
|
|
||
|
|
beforeEach(() => {
|
||
|
|
usePinnedToolsStore.setState({
|
||
|
|
pinnedTools: [],
|
||
|
|
lastConfirmed: [],
|
||
|
|
loaded: true,
|
||
|
|
loadError: false,
|
||
|
|
});
|
||
|
|
});
|
||
|
|
|
||
|
|
function renderCard(showPin: boolean) {
|
||
|
|
return render(
|
||
|
|
<MemoryRouter>
|
||
|
|
<ToolCard tool={resize} variant="descriptive" showPin={showPin} />
|
||
|
|
</MemoryRouter>,
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
describe("ToolCard pin button", () => {
|
||
|
|
it("renders no pin button unless showPin is set", () => {
|
||
|
|
renderCard(false);
|
||
|
|
expect(screen.queryByTestId("pin-toggle-resize")).toBeNull();
|
||
|
|
});
|
||
|
|
|
||
|
|
it("toggles pinned state and aria label when clicked", () => {
|
||
|
|
renderCard(true);
|
||
|
|
const btn = screen.getByTestId("pin-toggle-resize");
|
||
|
|
expect(btn.getAttribute("aria-label")).toBe("Pin");
|
||
|
|
expect(btn.getAttribute("aria-pressed")).toBe("false");
|
||
|
|
|
||
|
|
fireEvent.click(btn);
|
||
|
|
expect(usePinnedToolsStore.getState().pinnedTools).toEqual(["resize"]);
|
||
|
|
const pinnedBtn = screen.getByTestId("pin-toggle-resize");
|
||
|
|
expect(pinnedBtn.getAttribute("aria-label")).toBe("Unpin");
|
||
|
|
expect(pinnedBtn.getAttribute("aria-pressed")).toBe("true");
|
||
|
|
|
||
|
|
fireEvent.click(pinnedBtn);
|
||
|
|
expect(usePinnedToolsStore.getState().pinnedTools).toEqual([]);
|
||
|
|
});
|
||
|
|
});
|