Cut B Task 8 — Modal/NoteCard 메뉴 path 의 IPC backbone. - inbox:set-status: id + status + reason → repo.setStatus, invalid status 거부 - ai:classify-status: stub (Task 9 에서 Ollama provider 호출로 정식 구현) - types.ts InboxApi.setStatus / classifyStatus 시그니처 + preload wire-up - 4 단위 테스트 (valid/null reason/invalid status/stub shape)
96 lines
3.1 KiB
TypeScript
96 lines
3.1 KiB
TypeScript
import { describe, it, expect, vi, beforeEach } from 'vitest';
|
|
|
|
const { handlers, mockSetStatus } = vi.hoisted(() => ({
|
|
handlers: {} as Record<string, (...args: unknown[]) => unknown>,
|
|
mockSetStatus: vi.fn()
|
|
}));
|
|
|
|
vi.mock('electron', () => ({
|
|
default: {
|
|
ipcMain: {
|
|
handle: (ch: string, fn: (...args: unknown[]) => unknown) => {
|
|
handlers[ch] = fn;
|
|
}
|
|
},
|
|
dialog: {},
|
|
shell: {}
|
|
}
|
|
}));
|
|
|
|
import { registerInboxApi } from '../../src/main/ipc/inboxApi';
|
|
|
|
function makeDeps(): Parameters<typeof registerInboxApi>[0] {
|
|
// Minimal stub — `inbox:set-status` 핸들러는 deps.repo.setStatus 만 참조.
|
|
return {
|
|
repo: {
|
|
setStatus: mockSetStatus,
|
|
list: vi.fn(),
|
|
listByStatus: vi.fn(),
|
|
countByStatus: vi.fn(() => 0)
|
|
} as never,
|
|
continuity: {} as never,
|
|
capture: {} as never,
|
|
health: {} as never,
|
|
intent: {} as never,
|
|
getInboxWindow: () => null,
|
|
settings: {} as never,
|
|
providerHolder: {} as never,
|
|
paths: { profileDir: '/profile' }
|
|
};
|
|
}
|
|
|
|
describe('inbox:set-status IPC', () => {
|
|
beforeEach(() => {
|
|
Object.keys(handlers).forEach((k) => delete handlers[k]);
|
|
mockSetStatus.mockReset();
|
|
});
|
|
|
|
it('forwards valid status + reason to repo.setStatus', async () => {
|
|
registerInboxApi(makeDeps());
|
|
const handler = handlers['inbox:set-status'];
|
|
if (handler === undefined) throw new Error('handler not registered');
|
|
const r = await handler(null, 'n1', 'completed', '결재 끝');
|
|
expect(r).toEqual({ ok: true });
|
|
expect(mockSetStatus).toHaveBeenCalledWith('n1', 'completed', '결재 끝');
|
|
});
|
|
|
|
it('forwards null reason as-is', async () => {
|
|
registerInboxApi(makeDeps());
|
|
const handler = handlers['inbox:set-status'];
|
|
if (handler === undefined) throw new Error('handler not registered');
|
|
const r = await handler(null, 'n1', 'archived', null);
|
|
expect(r).toEqual({ ok: true });
|
|
expect(mockSetStatus).toHaveBeenCalledWith('n1', 'archived', null);
|
|
});
|
|
|
|
it('rejects invalid status without calling repo', async () => {
|
|
registerInboxApi(makeDeps());
|
|
const handler = handlers['inbox:set-status'];
|
|
if (handler === undefined) throw new Error('handler not registered');
|
|
const r = (await handler(null, 'n1', 'invalid', null)) as { ok: boolean; reason?: string };
|
|
expect(r.ok).toBe(false);
|
|
expect(r.reason).toBe('invalid status');
|
|
expect(mockSetStatus).not.toHaveBeenCalled();
|
|
});
|
|
});
|
|
|
|
describe('ai:classify-status IPC (stub)', () => {
|
|
beforeEach(() => {
|
|
Object.keys(handlers).forEach((k) => delete handlers[k]);
|
|
});
|
|
|
|
it('returns recommendation shape (stub default)', async () => {
|
|
registerInboxApi(makeDeps());
|
|
const handler = handlers['ai:classify-status'];
|
|
if (handler === undefined) throw new Error('handler not registered');
|
|
const r = (await handler(null, 'n1', '결재 끝')) as {
|
|
recommended: string;
|
|
rationale: string;
|
|
};
|
|
expect(typeof r.recommended).toBe('string');
|
|
expect(['active', 'completed', 'archived', 'trashed']).toContain(r.recommended);
|
|
expect(typeof r.rationale).toBe('string');
|
|
expect(r.rationale.length).toBeGreaterThan(0);
|
|
});
|
|
});
|