Files
fusion/packages/dashboard/app/hooks/__tests__/useShellConnection.test.tsx
Fusion 7b9e5259d3 feat(FN-3403): add shell multi-profile support with connection manager onbo
Merges shell multi-profile support for desktop (FN-3403) — spanning new connection-manager flows, shell onboarding interoperability, mobile connection profiles, desktop IPC/shell-settings plumbing, and tokenized titlebar styles — with a secondary migration of the WhatsApp plugin to the Baileys pairi

Fusion-Task-Id: FN-3403
2026-05-07 18:35:45 -07:00

58 lines
2.1 KiB
TypeScript

import { renderHook } from "@testing-library/react";
import { describe, expect, it, vi } from "vitest";
import { useShellConnection } from "../useShellConnection";
const { mockUseShellContext } = vi.hoisted(() => ({
mockUseShellContext: vi.fn(),
}));
vi.mock("../../context/ShellContext", () => ({
useShellContext: mockUseShellContext,
}));
describe("useShellConnection", () => {
it("normalizes invalid active profile and exposes helper actions", async () => {
const shellApi = {
saveProfile: vi.fn(async () => ({ id: "p1", name: "Prod", serverUrl: "https://fusion.example.com", createdAt: "", updatedAt: "" })),
deleteProfile: vi.fn(async () => undefined),
setActiveProfile: vi.fn(async () => ({ host: "mobile-shell", activeProfileId: "p1", profiles: [] })),
};
mockUseShellContext.mockReturnValue({
shellApi,
ready: true,
openConnectionManagerSignal: 0,
state: {
host: "mobile-shell",
activeProfileId: "missing",
profiles: [{ id: "p1", name: "Prod", serverUrl: "https://fusion.example.com", createdAt: "", updatedAt: "" }],
},
});
const { result } = renderHook(() => useShellConnection());
expect(result.current.state.activeProfileId).toBeNull();
await result.current.saveProfile({ name: "Prod", serverUrl: "https://fusion.example.com" });
await result.current.removeProfile("p1");
await result.current.setActiveProfile("p1");
expect(shellApi.saveProfile).toHaveBeenCalled();
expect(shellApi.deleteProfile).toHaveBeenCalledWith("p1");
expect(shellApi.setActiveProfile).toHaveBeenCalledWith("p1");
});
it("keeps browser mode stable", async () => {
mockUseShellContext.mockReturnValue({
shellApi: null,
ready: true,
openConnectionManagerSignal: 0,
state: { host: "web", activeProfileId: null, profiles: [] },
});
const { result } = renderHook(() => useShellConnection());
await expect(result.current.saveProfile({ name: "Prod", serverUrl: "https://fusion.example.com" })).rejects.toThrow(
"Saving connection profiles is only available in native shell mode",
);
});
});