171 lines
5.0 KiB
TypeScript
171 lines
5.0 KiB
TypeScript
|
|
import { renderHook, act, waitFor } from "@testing-library/react";
|
||
|
|
import { describe, it, expect, vi, beforeEach, afterEach } from "vitest";
|
||
|
|
import i18n from "i18next";
|
||
|
|
import { useSettingsForm } from "@/hooks/useSettingsForm";
|
||
|
|
|
||
|
|
const useSettingsQueryMock = vi.fn();
|
||
|
|
|
||
|
|
vi.mock("@/lib/query", () => ({
|
||
|
|
useSettingsQuery: (...args: unknown[]) => useSettingsQueryMock(...args),
|
||
|
|
}));
|
||
|
|
|
||
|
|
let changeLanguageSpy: ReturnType<typeof vi.spyOn<any, any>>;
|
||
|
|
|
||
|
|
beforeEach(() => {
|
||
|
|
useSettingsQueryMock.mockReset();
|
||
|
|
window.localStorage.clear();
|
||
|
|
(i18n as any).language = "zh";
|
||
|
|
changeLanguageSpy = vi
|
||
|
|
.spyOn(i18n, "changeLanguage")
|
||
|
|
.mockImplementation(async (lang?: string) => {
|
||
|
|
(i18n as any).language = lang;
|
||
|
|
return i18n.t;
|
||
|
|
});
|
||
|
|
});
|
||
|
|
|
||
|
|
afterEach(() => {
|
||
|
|
changeLanguageSpy.mockRestore();
|
||
|
|
});
|
||
|
|
|
||
|
|
describe("useSettingsForm Hook", () => {
|
||
|
|
it("should normalize settings and sync language on initialization", async () => {
|
||
|
|
useSettingsQueryMock.mockReturnValue({
|
||
|
|
data: {
|
||
|
|
showInTray: undefined,
|
||
|
|
minimizeToTrayOnClose: undefined,
|
||
|
|
enableClaudePluginIntegration: undefined,
|
||
|
|
claudeConfigDir: " /Users/demo ",
|
||
|
|
codexConfigDir: " ",
|
||
|
|
language: "en",
|
||
|
|
},
|
||
|
|
isLoading: false,
|
||
|
|
});
|
||
|
|
|
||
|
|
const { result } = renderHook(() => useSettingsForm());
|
||
|
|
|
||
|
|
await waitFor(() => {
|
||
|
|
expect(result.current.settings).not.toBeNull();
|
||
|
|
});
|
||
|
|
|
||
|
|
const settings = result.current.settings!;
|
||
|
|
expect(settings.showInTray).toBe(true);
|
||
|
|
expect(settings.minimizeToTrayOnClose).toBe(true);
|
||
|
|
expect(settings.enableClaudePluginIntegration).toBe(false);
|
||
|
|
expect(settings.claudeConfigDir).toBe("/Users/demo");
|
||
|
|
expect(settings.codexConfigDir).toBeUndefined();
|
||
|
|
expect(settings.language).toBe("en");
|
||
|
|
expect(result.current.initialLanguage).toBe("en");
|
||
|
|
expect(changeLanguageSpy).toHaveBeenCalledWith("en");
|
||
|
|
});
|
||
|
|
|
||
|
|
it("should prioritize reading language from local storage in readPersistedLanguage", () => {
|
||
|
|
useSettingsQueryMock.mockReturnValue({
|
||
|
|
data: null,
|
||
|
|
isLoading: false,
|
||
|
|
});
|
||
|
|
window.localStorage.setItem("language", "en");
|
||
|
|
|
||
|
|
const { result } = renderHook(() => useSettingsForm());
|
||
|
|
|
||
|
|
const lang = result.current.readPersistedLanguage();
|
||
|
|
expect(lang).toBe("en");
|
||
|
|
expect(changeLanguageSpy).not.toHaveBeenCalled();
|
||
|
|
});
|
||
|
|
|
||
|
|
it("should update fields and sync language when language changes in updateSettings", () => {
|
||
|
|
useSettingsQueryMock.mockReturnValue({
|
||
|
|
data: null,
|
||
|
|
isLoading: false,
|
||
|
|
});
|
||
|
|
|
||
|
|
const { result } = renderHook(() => useSettingsForm());
|
||
|
|
|
||
|
|
act(() => {
|
||
|
|
result.current.updateSettings({ showInTray: false });
|
||
|
|
});
|
||
|
|
|
||
|
|
expect(result.current.settings?.showInTray).toBe(false);
|
||
|
|
|
||
|
|
changeLanguageSpy.mockClear();
|
||
|
|
act(() => {
|
||
|
|
result.current.updateSettings({ language: "en" });
|
||
|
|
});
|
||
|
|
|
||
|
|
expect(result.current.settings?.language).toBe("en");
|
||
|
|
expect(changeLanguageSpy).toHaveBeenCalledWith("en");
|
||
|
|
});
|
||
|
|
|
||
|
|
it("should reset with server data and restore initial language in resetSettings", async () => {
|
||
|
|
useSettingsQueryMock.mockReturnValue({
|
||
|
|
data: {
|
||
|
|
showInTray: true,
|
||
|
|
minimizeToTrayOnClose: true,
|
||
|
|
enableClaudePluginIntegration: false,
|
||
|
|
claudeConfigDir: "/origin",
|
||
|
|
codexConfigDir: null,
|
||
|
|
language: "en",
|
||
|
|
},
|
||
|
|
isLoading: false,
|
||
|
|
});
|
||
|
|
|
||
|
|
const { result } = renderHook(() => useSettingsForm());
|
||
|
|
|
||
|
|
await waitFor(() => {
|
||
|
|
expect(result.current.settings).not.toBeNull();
|
||
|
|
});
|
||
|
|
|
||
|
|
changeLanguageSpy.mockClear();
|
||
|
|
(i18n as any).language = "zh";
|
||
|
|
|
||
|
|
act(() => {
|
||
|
|
result.current.resetSettings({
|
||
|
|
showInTray: false,
|
||
|
|
minimizeToTrayOnClose: false,
|
||
|
|
enableClaudePluginIntegration: true,
|
||
|
|
claudeConfigDir: " /reset ",
|
||
|
|
codexConfigDir: " ",
|
||
|
|
language: "zh",
|
||
|
|
});
|
||
|
|
});
|
||
|
|
|
||
|
|
const settings = result.current.settings!;
|
||
|
|
expect(settings.showInTray).toBe(false);
|
||
|
|
expect(settings.minimizeToTrayOnClose).toBe(false);
|
||
|
|
expect(settings.enableClaudePluginIntegration).toBe(true);
|
||
|
|
expect(settings.claudeConfigDir).toBe("/reset");
|
||
|
|
expect(settings.codexConfigDir).toBeUndefined();
|
||
|
|
expect(settings.language).toBe("zh");
|
||
|
|
expect(result.current.initialLanguage).toBe("en");
|
||
|
|
expect(changeLanguageSpy).toHaveBeenCalledWith("en");
|
||
|
|
});
|
||
|
|
|
||
|
|
it("should not call changeLanguage repeatedly when language is consistent in syncLanguage", async () => {
|
||
|
|
useSettingsQueryMock.mockReturnValue({
|
||
|
|
data: {
|
||
|
|
showInTray: true,
|
||
|
|
minimizeToTrayOnClose: true,
|
||
|
|
enableClaudePluginIntegration: false,
|
||
|
|
claudeConfigDir: null,
|
||
|
|
codexConfigDir: null,
|
||
|
|
language: "zh",
|
||
|
|
},
|
||
|
|
isLoading: false,
|
||
|
|
});
|
||
|
|
|
||
|
|
const { result } = renderHook(() => useSettingsForm());
|
||
|
|
|
||
|
|
await waitFor(() => {
|
||
|
|
expect(result.current.settings).not.toBeNull();
|
||
|
|
});
|
||
|
|
|
||
|
|
changeLanguageSpy.mockClear();
|
||
|
|
(i18n as any).language = "zh";
|
||
|
|
|
||
|
|
act(() => {
|
||
|
|
result.current.syncLanguage("zh");
|
||
|
|
});
|
||
|
|
|
||
|
|
expect(changeLanguageSpy).not.toHaveBeenCalled();
|
||
|
|
});
|
||
|
|
});
|