Files
gbrain/test/conversation-parser/llm-base.test.ts
T
f702ec053b v0.41.16.0 feat: conversation parser cathedral + progressive-batch primitive (closes #1461) (#1510)
* v0.41.15.0 feat: conversation parser cathedral + progressive-batch primitive (closes #1461)

Replaces PR #1461's single-format Telegram regex with a 12-pattern
built-in registry covering iMessage/Slack, Telegram (×2), Discord
(×2), WhatsApp (×2 locales), Signal, Matrix/Element, IRC (×2), Teams.
Each pattern is hand-vetted from public format docs (signal-cli,
DiscordChatExporter, Telegram Desktop, WhatsApp export docs, Element
matrix-archive, irssi/weechat defaults); module-load validation runs
test_positive[] + test_negative[] for every pattern at startup so a
typo makes gbrain refuse to start.

PR #1461 contributor's BRACKET_TIME_RX + cleanSpeaker survive verbatim
as the `telegram-bracket` built-in pattern + DEFAULT_SPEAKER_CLEAN
export. All 33 of their test cases pass against the new orchestrator.

Three layers per page (orchestrator chooses):
  1. Built-in pattern registry (zero-cost, deterministic)
  2. User-declared simple_pattern via config (deferred to v0.42+)
  3. Opt-IN LLM polish + fallback (privacy-first; chat content goes
     to Anthropic only when user explicitly enables)

D18 priority scoring picks the highest-match-rate pattern across the
first 10 lines (not first-wins) so overlapping formats don't silently
mis-route. D5 multi_line per-pattern + D11 quick_reject prefix screen
+ D19 timezone_policy per-pattern complete the registry shape.

Companion: src/core/progressive-batch/ primitive (rule of three
satisfied across 12+ ad-hoc cost-prompt sites). Wintermute-inspired
ramp shape (trial 10 → 100 → 500 → full with verification at each
stage), productionized with verifier+policy injection (callers
describe HOW TO MEASURE SUCCESS, not WHEN TO WAIT FOR CTRL-C). D3
fail-closed budget gate: null tracker + null Policy.maxCostUsd →
abort_cost_cap reason='no_budget_safety_net'. D20 discriminated
Verifier union (output_count | idempotent_mutation | noop).
extract-conversation-facts is the one proven consumer in v0.41.15.0;
9-site retrofit deferred to v0.41.16.0+ per TODOS.md.

Codex outside-voice review absorbed 8 substantive findings:
  - Privacy posture (LLM polish/fallback flipped to opt-IN)
  - ReDoS theater (dropped arbitrary user regex; v0.42+ uses RE2)
  - LLM-inferred-regex persistence as silent-corruption machine
  - Pattern priority scoring across first 10 lines
  - Timezone policy on every PatternEntry
  - Verifier shape discriminated union
  - Behavior parity for sites that "jumped straight to full"
  - Real-corpus-redacted fixture gap (v0.42+ TODO)

CI gates:
  - bun run check:conversation-parser (13 fixtures, --no-llm, deterministic)
  - bun run check:fixture-privacy (banned-token grep)

Doctor surfaces 3 new checks: conversation_format_coverage,
progressive_batch_audit_health, conversation_parser_probe_health.

Tests: 198/198 across primitive + parser + LLM + nightly probe + eval
CLI + debug CLI + doctor checks + migration v97 round-trip + E2E
parser ↔ engine integration. Real bug caught + fixed during gap audit:
IdempotentMutationVerifier was comparing absolute mutated-count vs
per-stage expected (failed silently on stage 2+); now uses per-stage
delta semantics matching OutputCountVerifier.

Schema migration v97: conversation_parser_llm_cache table with
(content_sha256, model_id, call_shape) composite key. NO
inferred_patterns table (D17: silent-corruption machine).

Plan + 23 decisions + codex outside-voice absorption at
~/.claude/plans/system-instruction-you-are-working-cuddly-hollerith.md.

Co-Authored-By: garrytan-agents (PR #1461) <noreply@github.com>
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

* fix(check-privacy): allowlist scripts/check-fixture-privacy.sh

The new sibling privacy guard literally names the banned tokens in its
BANNED_TOKENS array — same meta-exception that check-privacy.sh itself
gets. Without this allowlist entry, bun run verify rejects the file
post-merge because the banned name appears in the rule-definition script.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

* chore: renumber v0.41.15.0 → v0.41.16.0 (queue drift)

Mechanical rename across all surfaces: VERSION, package.json,
CHANGELOG (header + body refs), CLAUDE.md, TODOS.md, src/core/
migrate.ts (migration v98 comment), all src/core/conversation-parser/*
and src/core/progressive-batch/* file headers, all test/ headers,
scripts/check-privacy.sh allowlist comment, llms-full.txt regenerated.

Audit clean: VERSION + package.json + CHANGELOG header all show
0.41.16.0. verify 24/24, touched tests 179/179.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

---------

Co-authored-by: garrytan-agents (PR #1461) <noreply@github.com>
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-26 17:31:48 -07:00

185 lines
5.8 KiB
TypeScript

/**
* v0.41.16.0 — LLM base unit tests.
*
* Hermetic via the `chatTransport` test seam. No real API calls.
*
* Pins:
* - Cache hit doesn't re-call transport
* - Provider unavailable returns null without calling transport
* - Transport throw → fail-open null
* - Parse failure → fail-open null
* - parseLlmJson 4-strategy fallback
*/
import { describe, expect, test, beforeEach } from 'bun:test';
import { withEnv } from '../helpers/with-env.ts';
import {
runLlmCall,
parseLlmJson,
_resetLlmCacheForTests,
getLlmCacheStats,
probeLlmAvailability,
} from '../../src/core/conversation-parser/llm-base.ts';
import { makeChatResult } from './helpers.ts';
beforeEach(() => {
_resetLlmCacheForTests();
});
describe('probeLlmAvailability', () => {
test('returns null when ANTHROPIC_API_KEY is unset', async () => {
await withEnv(
{ ANTHROPIC_API_KEY: undefined as unknown as string },
async () => {
expect(probeLlmAvailability('claude-haiku-4-5')).toBeNull();
expect(probeLlmAvailability('anthropic:claude-haiku-4-5')).toBeNull();
},
);
});
test('returns normalized model when key set', async () => {
await withEnv({ ANTHROPIC_API_KEY: 'sk-test' }, async () => {
expect(probeLlmAvailability('claude-haiku-4-5')).toBe(
'anthropic:claude-haiku-4-5',
);
});
});
test('returns null for unknown provider', async () => {
expect(probeLlmAvailability('madeup-provider:foo-model')).toBeNull();
});
});
describe('runLlmCall — happy path', () => {
test('calls transport, parses, caches', async () => {
await withEnv({ ANTHROPIC_API_KEY: 'sk-test' }, async () => {
let calls = 0;
const result = await runLlmCall<{ ok: boolean }>({
shape: 'fallback',
modelStr: 'claude-haiku-4-5',
content: 'hello',
system: 'test',
parse: (text) => parseLlmJson(text),
chatTransport: async () => {
calls++;
return makeChatResult('{"ok": true}', { input_tokens: 1, output_tokens: 1 });
},
});
expect(result).toEqual({ ok: true });
expect(calls).toBe(1);
expect(getLlmCacheStats().misses).toBe(1);
});
});
test('cache hit on second call with same content', async () => {
await withEnv({ ANTHROPIC_API_KEY: 'sk-test' }, async () => {
let calls = 0;
const transport = async () => {
calls++;
return makeChatResult('{"ok": true}', { input_tokens: 1, output_tokens: 1 });
};
const opts = {
shape: 'fallback' as const,
modelStr: 'claude-haiku-4-5',
content: 'hello',
system: 'test',
parse: (t: string) => parseLlmJson<{ ok: boolean }>(t),
chatTransport: transport,
};
await runLlmCall(opts);
await runLlmCall(opts);
expect(calls).toBe(1);
expect(getLlmCacheStats().hits).toBe(1);
});
});
});
describe('runLlmCall — fail-open paths', () => {
test('provider unavailable returns null without calling transport', async () => {
await withEnv(
{ ANTHROPIC_API_KEY: undefined as unknown as string },
async () => {
let calls = 0;
const result = await runLlmCall<unknown>({
shape: 'fallback',
modelStr: 'claude-haiku-4-5',
content: 'hello',
system: 'test',
parse: () => ({}),
chatTransport: async () => {
calls++;
return makeChatResult('{}', { input_tokens: 1, output_tokens: 1 });
},
});
expect(result).toBeNull();
expect(calls).toBe(0);
},
);
});
test('transport throw → fail-open null', async () => {
await withEnv({ ANTHROPIC_API_KEY: 'sk-test' }, async () => {
const result = await runLlmCall<unknown>({
shape: 'fallback',
modelStr: 'claude-haiku-4-5',
content: 'hello',
system: 'test',
parse: () => ({}),
chatTransport: async () => {
throw new Error('network down');
},
});
expect(result).toBeNull();
});
});
test('parse failure → fail-open null, not cached', async () => {
await withEnv({ ANTHROPIC_API_KEY: 'sk-test' }, async () => {
let calls = 0;
const opts = {
shape: 'fallback' as const,
modelStr: 'claude-haiku-4-5',
content: 'hello',
system: 'test',
parse: () => null,
chatTransport: async () => {
calls++;
return makeChatResult('garbage', { input_tokens: 1, output_tokens: 1 });
},
};
const r1 = await runLlmCall(opts);
const r2 = await runLlmCall(opts);
expect(r1).toBeNull();
expect(r2).toBeNull();
// Both calls hit transport because parse-fail isn't cached.
expect(calls).toBe(2);
});
});
});
describe('parseLlmJson — 4-strategy fallback', () => {
test('direct parse object', () => {
expect(parseLlmJson<{ a: number }>('{"a": 1}')).toEqual({ a: 1 });
});
test('strip ```json fences', () => {
expect(parseLlmJson<{ a: number }>('```json\n{"a": 1}\n```')).toEqual({ a: 1 });
});
test('strip bare ``` fences', () => {
expect(parseLlmJson<{ a: number }>('```\n{"a": 1}\n```')).toEqual({ a: 1 });
});
test('extract first {...} substring', () => {
expect(parseLlmJson<{ a: number }>('Here is the output: {"a": 1} (done)')).toEqual({
a: 1,
});
});
test('array mode: direct parse', () => {
expect(parseLlmJson<number[]>('[1,2,3]', { array: true })).toEqual([1, 2, 3]);
});
test('array mode: extract first [...] substring', () => {
expect(parseLlmJson<number[]>('Output: [1,2,3] done', { array: true })).toEqual([
1, 2, 3,
]);
});
test('non-JSON returns null', () => {
expect(parseLlmJson<unknown>('not json at all')).toBeNull();
});
test('empty string returns null', () => {
expect(parseLlmJson<unknown>('')).toBeNull();
});
});