/** * Unit tests for the boot-check service-backed transport. * * Validates that bootCheckTransport delegates correctly to callCoreRpc and * @tauri-apps/api/core invoke, since these are the production wiring used by * BootCheckGate. */ import { describe, expect, it, vi } from 'vitest'; const callCoreRpcMock = vi.fn(); vi.mock('./coreRpcClient', () => ({ callCoreRpc: (req: unknown) => callCoreRpcMock(req) })); const invokeMock = vi.fn(); vi.mock('@tauri-apps/api/core', () => ({ invoke: (cmd: string, args?: Record) => invokeMock(cmd, args), })); describe('bootCheckTransport', () => { it('callRpc forwards method+params to callCoreRpc', async () => { callCoreRpcMock.mockResolvedValueOnce({ ok: true }); const { bootCheckTransport } = await import('./bootCheckService'); const result = await bootCheckTransport.callRpc<{ ok: boolean }>('openhuman.ping', { x: 1 }); expect(result).toEqual({ ok: true }); expect(callCoreRpcMock).toHaveBeenCalledWith({ method: 'openhuman.ping', params: { x: 1 } }); }); it('invokeCmd forwards cmd+args to Tauri invoke', async () => { invokeMock.mockResolvedValueOnce(42); const { bootCheckTransport } = await import('./bootCheckService'); const result = await bootCheckTransport.invokeCmd('start_core_process', {}); expect(result).toBe(42); expect(invokeMock).toHaveBeenCalledWith('start_core_process', {}); }); });