Files
cc-switch/tests/hooks/useDragSort.test.tsx
Jason bbf830a1da test: add frontend testing infrastructure with vitest
- Introduce Vitest + React Testing Library + jsdom environment
- Add useDragSort hook unit tests covering:
  * Sorting logic (sortIndex → createdAt → name)
  * Successful drag operation (API call + cache invalidation)
  * Failed drag operation (error toast display)
  * Edge case (no valid target, no API call)
- Configure global test setup (i18n mock, auto cleanup)
- Update TypeScript configs to include tests/ directory
- Add test development plan documentation

Test Coverage:
  ✓ Provider drag-and-drop sorting core logic
  ✓ React Query cache refresh
  ✓ Toast notification display
  ✓ Boundary condition handling

Test Results: 4/4 passed (671ms)
Next Steps: Sprint 2 - component tests with MSW mock layer
2025-10-25 10:08:06 +08:00

170 lines
4.1 KiB
TypeScript

import type { ReactNode } from "react";
import { renderHook, act } from "@testing-library/react";
import { QueryClient, QueryClientProvider } from "@tanstack/react-query";
import { describe, expect, it, vi, beforeEach, afterAll } from "vitest";
import type { Provider } from "@/types";
import { useDragSort } from "@/hooks/useDragSort";
const updateSortOrderMock = vi.fn();
const toastSuccessMock = vi.fn();
const toastErrorMock = vi.fn();
const consoleErrorSpy = vi.spyOn(console, "error").mockImplementation(() => {});
vi.mock("sonner", () => ({
toast: {
success: (...args: unknown[]) => toastSuccessMock(...args),
error: (...args: unknown[]) => toastErrorMock(...args),
},
}));
vi.mock("@/lib/api", () => ({
providersApi: {
updateSortOrder: (...args: unknown[]) => updateSortOrderMock(...args),
},
}));
interface WrapperProps {
children: ReactNode;
}
function createWrapper() {
const queryClient = new QueryClient();
const wrapper = ({ children }: WrapperProps) => (
<QueryClientProvider client={queryClient}>{children}</QueryClientProvider>
);
return { wrapper, queryClient };
}
const mockProviders: Record<string, Provider> = {
a: {
id: "a",
name: "AAA",
settingsConfig: {},
sortIndex: 1,
createdAt: 5,
},
b: {
id: "b",
name: "BBB",
settingsConfig: {},
sortIndex: 0,
createdAt: 10,
},
c: {
id: "c",
name: "CCC",
settingsConfig: {},
createdAt: 1,
},
};
describe("useDragSort", () => {
beforeEach(() => {
updateSortOrderMock.mockReset();
toastSuccessMock.mockReset();
toastErrorMock.mockReset();
consoleErrorSpy.mockClear();
});
afterAll(() => {
consoleErrorSpy.mockRestore();
});
it("should sort providers by sortIndex, createdAt, and name", () => {
const { wrapper } = createWrapper();
const { result } = renderHook(
() => useDragSort(mockProviders, "claude"),
{
wrapper,
},
);
expect(result.current.sortedProviders.map((item) => item.id)).toEqual([
"b",
"a",
"c",
]);
});
it("should call API and invalidate query cache after successful drag", async () => {
updateSortOrderMock.mockResolvedValue(true);
const { wrapper, queryClient } = createWrapper();
const invalidateSpy = vi.spyOn(queryClient, "invalidateQueries");
const { result } = renderHook(
() => useDragSort(mockProviders, "claude"),
{
wrapper,
},
);
await act(async () => {
await result.current.handleDragEnd({
active: { id: "b" },
over: { id: "a" },
} as any);
});
expect(updateSortOrderMock).toHaveBeenCalledTimes(1);
expect(updateSortOrderMock).toHaveBeenCalledWith(
[
{ id: "a", sortIndex: 0 },
{ id: "b", sortIndex: 1 },
{ id: "c", sortIndex: 2 },
],
"claude",
);
expect(invalidateSpy).toHaveBeenCalledWith({
queryKey: ["providers", "claude"],
});
expect(toastSuccessMock).toHaveBeenCalledTimes(1);
expect(toastErrorMock).not.toHaveBeenCalled();
});
it("should show error toast when drag operation fails", async () => {
updateSortOrderMock.mockRejectedValue(new Error("network"));
const { wrapper } = createWrapper();
const { result } = renderHook(
() => useDragSort(mockProviders, "claude"),
{
wrapper,
},
);
await act(async () => {
await result.current.handleDragEnd({
active: { id: "b" },
over: { id: "a" },
} as any);
});
expect(toastErrorMock).toHaveBeenCalledTimes(1);
expect(toastSuccessMock).not.toHaveBeenCalled();
expect(consoleErrorSpy).toHaveBeenCalled();
});
it("should not trigger API call when there is no valid target", async () => {
const { wrapper } = createWrapper();
const { result } = renderHook(
() => useDragSort(mockProviders, "claude"),
{
wrapper,
},
);
await act(async () => {
await result.current.handleDragEnd({
active: { id: "b" },
over: null,
} as any);
});
expect(updateSortOrderMock).not.toHaveBeenCalled();
});
});