Files
inkling/tests/unit/ai-schema.test.ts
altair823 4ee135dcd6 feat(ai): zod due_date field + prompt {{TODAY_KST}} injection
AiResponse extends with dueDate: string|null. zod regex
^\d{4}-\d{2}-\d{2}$, follow-up roundtrip check coerces invalid
dates (2026-13-99 etc.) to null. PROMPT_VERSION → 2: prompt now
takes todayKst arg, asks model to extract due_date as ISO or null.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-26 11:12:45 +09:00

101 lines
2.7 KiB
TypeScript

import { describe, it, expect } from 'vitest';
import { parseAiResponse } from '@main/ai/schema.js';
describe('parseAiResponse', () => {
it('accepts valid Korean title, 3-line summary, kebab tags', () => {
const r = parseAiResponse({
title: '회의 요약',
summary: '첫 줄\n둘째 줄\n셋째 줄',
tags: ['api-timeout', 'meeting']
});
expect(r.title).toBe('회의 요약');
expect(r.summary.split('\n')).toHaveLength(3);
expect(r.tags).toEqual(['api-timeout', 'meeting']);
});
it('rejects title without Korean', () => {
expect(() =>
parseAiResponse({ title: 'English only', summary: 'a\nb\nc', tags: [] })
).toThrow(/korean/i);
});
it('pads short summary to 3 lines', () => {
const r = parseAiResponse({ title: '제목', summary: '한 줄', tags: [] });
expect(r.summary.split('\n')).toHaveLength(3);
});
it('compresses long summary to 3 lines', () => {
const r = parseAiResponse({
title: '제목', summary: 'a\nb\nc\nd\ne', tags: []
});
const lines = r.summary.split('\n');
expect(lines).toHaveLength(3);
expect(lines[2]).toBe('c d e');
});
it('filters invalid tags', () => {
const r = parseAiResponse({
title: '제목', summary: 'a\nb\nc',
tags: ['good-tag', 'BadCase', 'has space', 'ok2', '']
});
expect(r.tags).toEqual(['good-tag', 'ok2']);
});
it('caps tags to 3', () => {
const r = parseAiResponse({
title: '제목', summary: 'a\nb\nc',
tags: ['a', 'b', 'c', 'd', 'e']
});
expect(r.tags).toHaveLength(3);
});
it('rejects non-object input', () => {
expect(() => parseAiResponse('nope')).toThrow();
});
it('parses note with valid due_date', () => {
const r = parseAiResponse({
title: '내일 회의',
summary: 'a\nb\nc',
tags: [],
due_date: '2026-04-27'
});
expect(r.dueDate).toBe('2026-04-27');
});
it('null due_date passes through', () => {
const r = parseAiResponse({
title: '내일 회의',
summary: 'a\nb\nc',
tags: []
});
expect(r.dueDate).toBeNull();
});
it('explicit null due_date passes through', () => {
const r = parseAiResponse({
title: '내일 회의',
summary: 'a\nb\nc',
tags: [],
due_date: null
});
expect(r.dueDate).toBeNull();
});
it('rejects malformed due_date string', () => {
expect(() =>
parseAiResponse({ title: '내일', summary: 'a\nb\nc', tags: [], due_date: 'tomorrow' })
).toThrow();
});
it('coerces invalid date that passes regex (e.g. 2026-13-99) to null', () => {
const r = parseAiResponse({
title: '내일 회의',
summary: 'a\nb\nc',
tags: [],
due_date: '2026-13-99'
});
expect(r.dueDate).toBeNull();
});
});