Files
gbrain/test/e2e/mechanical.test.ts
T
89ae720959 v0.31.0 feat: hot memory — facts hook + recall CLI + MCP _meta + consolidate phase (#785)
* v0.31 feat(migrate): facts hot memory schema (migration v40)

Phase 1 of v0.31 hot-memory.

- New facts table with source_id (TEXT FK to sources, per-source isolation),
  kind CHECK (event/preference/commitment/belief/fact), visibility CHECK
  (private/world for takes-style ACL parity), valid_from/valid_until/
  expired_at/superseded_by for temporal + supersession audit, and
  consolidated_at/consolidated_into pointing at takes(id) for the dream-
  cycle hot→cold bridge.
- Embedding column dim resolved at migration time from
  config.embedding_dimensions so non-OpenAI brains (Voyage etc) work
  out-of-the-box. HALFVEC where pgvector >= 0.7; falls back to VECTOR
  with stderr warn on older versions. Matching opclass per column type
  (halfvec_cosine_ops vs vector_cosine_ops).
- 5 partial indexes leading on source_id so every read uses the trust
  boundary as part of the index, not a callback. HNSW partial index
  excludes expired/null rows so footprint stays proportional to active
  fact count.
- RLS DO-block matches takes pattern (Postgres BYPASSRLS gate; PGLite
  no-op).
- v0_31_0.ts orchestrator follows v0_28_0.ts pattern — phase A asserts
  schema version >= 40 + facts table presence; runner owns ledger.

All 87 existing migrate.test.ts cases pass. PGLite smoke test confirms
table + indexes + CHECK constraints + ON DELETE CASCADE all behave.

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

* v0.31 chore(version): bump VERSION + package.json to 0.31.0

Phase 1 closer. CHANGELOG entry written when Phase 7 lands.

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

* v0.31 feat(engine): facts hot memory engine API (Phase 2)

Phase 2 of v0.31 hot-memory.

Adds 8 facts methods to BrainEngine implemented on both PGLite and
Postgres engines:

- insertFact(input, ctx) — INSERT with optional supersedeId; expires the
  named row in the same transaction. Per-entity advisory lock on Postgres
  (`pg_advisory_xact_lock(hashtextextended(source_id::text || ':' ||
  entity_slug, 0))`) for the dedup window. PGLite is single-process so
  the lock is a no-op.
- expireFact(id, opts) — sets expired_at + optional superseded_by.
  Idempotent-as-false (already-expired returns false).
- listFactsByEntity / listFactsSince / listFactsBySession — list surfaces
  with FactListOpts filters (activeOnly, kinds, visibility, limit/offset).
  Every query starts WHERE source_id = $X so the trust boundary is part
  of the index path.
- listSupersessions — audit log; activeOnly:false + expired_at IS NOT NULL
  + superseded_by IS NOT NULL.
- findCandidateDuplicates(source_id, entity_slug, factText, k) —
  entity-prefiltered (mandatory), k=5 default, hard cap 20. Embedding-
  cosine ordering when caller supplies an embedding, recency fallback
  otherwise. Bounds the contradiction-classifier blast radius.
- consolidateFact(id, takeId) — sets consolidated_at + consolidated_into.
  Never DELETE; facts stay as audit trail for the resulting take.
- getFactsHealth(source_id) — per-source counters consumed by `gbrain
  doctor` facts_health check.

Public types in engine.ts: FactKind (5-value union), FactVisibility,
FactInsertStatus, FactRow, NewFact, FactListOpts, FactsHealth.

PGLite + Postgres helpers: rowToFact / rowToFactPg parse the
text-format pgvector embedding back into Float32Array; toPgVectorLiteral
encodes for the supersede-path INSERT (postgres-js can't bind Float32Array
directly to a vector column without an explicit literal cast).

Smoke test confirms every method end-to-end on PGLite. Typecheck clean.

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

* v0.31 feat(facts): extraction code path (Phase 3)

Phase 3 of v0.31 hot-memory.

Five new modules under src/core/facts/ + src/core/entities/:

- src/core/facts/decay.ts — pure helper. effectiveConfidence(fact, now)
  applies confidence × exp(-age/halflife) with per-kind halflife table
  (event 7d, commitment 90d, preference 90d, belief 365d, fact 365d).
  Returns 0 for expired or past-valid_until rows. Single source of truth
  consumed by recall, supersession audit, facts_health, and the MCP _meta
  injector (eD8 DRY).

- src/core/facts/queue.ts — bounded in-memory queue. Cap 100 default,
  drop-oldest on overflow with counter. Per-session in-flight=1 serializes
  burst chat. AbortSignal threading from server SIGTERM (mirrors minion
  worker pattern per eD7): 5s grace for in-flight, then drop pending with
  counter. getFactsQueue() process-singleton; __resetFactsQueueForTests
  for hermetic tests.

- src/core/facts/classify.ts — contradiction classifier with cosine
  fast-path (D13: ≥0.95 → duplicate, skip LLM) and classifier-failure
  fallback (D12: cosine ≥0.92 → duplicate, else INSERT). Pure cosine
  helper exported. JSON-strict output with 4-strategy parse fallback;
  refusal stop-reason maps to fallback path. Caller-provided abort
  signal propagated to the gateway chat call.

- src/core/facts/extract.ts — Haiku turn-extractor. Reuses
  INJECTION_PATTERNS from src/core/think/sanitize.ts on the way IN
  (turn_text) AND on the way OUT (each fact). Tight system prompt with
  5-kind taxonomy, 0..1 confidence scoring, entity slug or display name.
  Anti-loop check on isDreamGenerated (reuses v0.23.2 marker semantics).
  Synchronous embedOne() per fact via the gateway so classifier paths
  have embeddings available; AbortError re-thrown explicitly so SIGTERM
  during embed never writes a NULL-embedding row meant to be cancelled
  (eE8 distinction).

- src/core/entities/resolve.ts — slug canonicalization shared by
  signal-detector AND facts. Resolution order: exact slug match →
  pg_trgm fuzzy match (similarity ≥0.4) → deterministic slugify
  fallback. slugify exported standalone for tests + callers that want
  the floor.

Smoke tests confirm decay table, cosine math, slugify rules, queue
drop-oldest under overflow, and shutdown grace + drop-pending semantics.
Typecheck clean.

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

* v0.31 feat(mcp+cli): MCP ops + recall CLI + _meta + transport refactor (Phase 4)

Phase 4 of v0.31 hot-memory.

Three new MCP ops on the contract-first surface:

- `extract_facts` (write scope, localOnly:false): extracts facts from a
  conversation turn via the Haiku extractor, runs the cosine fast-path
  dedup, INSERTs into per-source hot memory. Returns counts +
  fact_ids[]. Skips on is_dream_generated:true (anti-loop).
- `recall` (read scope): query the per-source hot memory by
  entity / since / session / supersessions / grep filter. Visibility-
  aware: remote callers see visibility='world' rows only (takes-style
  ACL parity, eD21). Returns most-recent first; pagination via limit.
- `forget_fact` (write scope): expireFact wrapper. Idempotent-as-error
  on unknown id; uses the new 'fact_not_found' ErrorCode.

ErrorCode union opened (eD6 / eE7): TS forward-compat via the
`(string & {})` autocomplete-friendly hack so downstream consumers
(gbrain-evals etc) don't break their typecheck on every new code.
Three new codes: 'rate_limited', 'extraction_failed', 'fact_not_found'.

OperationContext gains source_id?:string (eD4 / eE2 — TEXT not INTEGER
per schema reality). Resolved once in buildOperationContext from
DispatchOpts.sourceId. Stdio MCP defaults to GBRAIN_SOURCE env or
'default'; HTTP MCP reads it from the per-token sources scope (eE3).

ToolResult gains _meta?: Record<string, unknown> (eD3). Dispatcher
calls a configurable metaHook AFTER op.handler succeeds, wrapped in
its own try/catch so a DB blip degrades to no-_meta rather than
flipping the whole tool call to error (eE4).

New module src/core/facts/meta-hook.ts:
- getBrainHotMemoryMeta(name, ctx) builds the _meta.brain_hot_memory
  payload. Cache key (source_id, session_id, hash(takesHoldersAllowList
  sorted)) (eD10 / eE5). 30s TTL per session. Visibility filter applies:
  remote → world only; local → all. Top-K=10 ranked by effective
  confidence (decay). Skips injection on recall/extract_facts/forget_fact
  themselves. bumpHotMemoryCache() invalidates per (source_id,
  session_id) on extraction event.

D12 (eE1) accepted: serve-http.ts:801 inlined dispatch path REFACTORED
to call dispatchToolCall. HTTP MCP now inherits source_id, _meta
injection, error envelope unification, and OperationContext shape from
the same code path stdio uses. Scope check + mcp_request_log + SSE
broadcast stay in serve-http.ts (HTTP-specific concerns); the dispatcher
returns ToolResult and the HTTP handler reads isError + content + _meta
to fan into the audit + broadcast paths.

put_page compliance backstop (D23): when a conversation-shape page is
written (note/meeting/slack/email/calendar-event/source/writing) with
a substantive body (>=80 chars) on a non-subagent slug AND no
dream_generated:true marker, fire-and-forget enqueue an extraction job
into the bounded queue. Never blocks the put_page response. Skipped
reasons (no_parsed_page / subagent_namespace / dream_generated /
kind:* / too_short / queue_shutdown / backstop_error) are stable
strings consumed by tests.

`gbrain recall` + `gbrain forget` CLI commands (src/commands/recall.ts):
- recall <entity> | --since DUR | --session ID | --today (markdown
  with kind icons 📅🎯🤝💭📌) | --grep TEXT | --supersessions |
  --include-expired | --as-context (prompt-injection-ready) | --json
- forget <fact-id> shorthand for expireFact

Wired into src/cli.ts dispatch table next to takes / think.

Smoke tests confirm: dispatch surfaces (extract_facts → ops →
listFactsByEntity), forget_fact + idempotent re-call, _meta visibility
filter (remote sees world only, local sees all), CLI markdown render
with kind icons + age strings + decayed confidence.

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

* v0.31 feat(cycle): consolidate phase — facts → takes promotion (Phase 5)

Phase 5 of v0.31 hot-memory.

New 10th cycle phase `consolidate` between `patterns` and `embed`:

- src/core/cycle.ts:
  * CyclePhase union extended with 'consolidate'
  * ALL_PHASES gets 'consolidate' between patterns and embed (graph-fresh
    after patterns; embed runs after so the new takes get embedded
    same-cycle)
  * NEEDS_LOCK_PHASES gets 'consolidate' (writes takes + UPDATEs facts)
  * CycleReport.totals gains facts_consolidated + consolidate_takes_written
  * runCycle dispatches the new phase via dynamic import

- src/core/cycle/phases/consolidate.ts (new):
  * Scans (source_id, entity_slug) buckets where COUNT(unconsolidated
    facts) >= 3 (uses idx_facts_unconsolidated partial index)
  * Skips buckets where the OLDEST fact is < 24h old (gives signal time
    to settle before locking it into cold memory)
  * Greedy cosine clustering at threshold 0.85; head-element centroid
    keeps it deterministic + cheap. Singletons (no embedding) stay
    unconsolidated this cycle.
  * For each cluster size >= 2: picks the highest-confidence fact's text
    as the take claim (v0.31 deterministic; v0.32 swaps to Sonnet
    synthesis pass). avg confidence → take weight, earliest valid_from →
    take since_date, concatenated source_sessions → take.source.
  * Resolves entity_slug → page_id via pages.slug (per source). Skips
    cluster if page is missing in this source — no auto-page-creation
    in v0.31.
  * INSERT into takes(kind='fact', holder='self') with row_num =
    MAX(existing) + 1.
  * UPDATE contributing facts: consolidated_at = now() +
    consolidated_into = takes.id. NEVER DELETE — facts are the audit
    trail for the resulting take.
  * dryRun honored: pretends the writes happened; counters still tick
    so operators can preview load before the first real run.
  * yieldDuringPhase keepalive between buckets so the Minions worker
    job lock + cycle-lock TTL don't drift on long runs.

Smoke test on PGLite confirms: 4 unconsolidated facts → clustered
(cosine 1.0 since same vector) → 1 take row created → all 4 facts
marked consolidated_into. runCycle({phases:['consolidate']}) wires
through to the report totals. Typecheck clean.

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

* v0.31 test: 18 facts test files (Phase 6)

Phase 6 of v0.31 hot-memory: comprehensive coverage across the new
substrate. 110 unit tests pass; 5 E2E test files added (skip gracefully
without DATABASE_URL).

Unit tests (PGLite in-memory, no DATABASE_URL):
- test/facts-decay.test.ts (12 cases) — HALFLIFE_DAYS pinned per kind,
  effectiveConfidence math: age=0 / age=halflife (~1/e) / age=2×halflife
  (~1/e²) / expired returns 0 / valid_until past returns 0 /
  preference-vs-event slower decay / belief-vs-commitment crossover.
- test/facts-queue.test.ts (10 cases) — FIFO within session, drop-oldest
  on overflow, per-session in-flight=1 serializes, different sessions
  parallelize, failed jobs counter, shutdown grace + drop_pending +
  external AbortController triggers shutdown.
- test/facts-classify.test.ts (8 cases) — cosineSimilarity edge cases,
  empty candidates → independent, cheap fast-path ≥0.95 → duplicate
  no LLM, threshold-configurable cosine_fallback path.
- test/facts-engine.test.ts (13 cases) — every BrainEngine fact method
  end-to-end: insertFact (insert/supersede), expireFact idempotency,
  list*, findCandidateDuplicates entity-prefiltered + k cap + cosine
  ordering, consolidateFact never DELETE, getFactsHealth shape +
  total_today ⊆ total_week.
- test/facts-multi-tenant.test.ts (6 cases) — cross-source isolation
  on every list method + CASCADE delete on sources.
- test/facts-visibility.test.ts (6 cases) — visibility column private/
  world; remote=true filters to world-only via dispatchToolCall;
  remote=false sees all.
- test/facts-canonicality.test.ts (10 cases) — slugify rules including
  NFKD diacritic strip ("Crème Brûlée" → "creme-brulee"), exact slug
  match, fallback to slugify when no fuzzy match.
- test/facts-extract.test.ts (4 cases) — empty turn returns [], dream-
  generated short-circuit, graceful no-API-key return.
- test/facts-backstop-gating.test.ts (5 cases) — put_page backstop:
  too_short, subagent_namespace, dream_generated, eligible note path,
  non-eligible kind:guide.
- test/facts-anti-loop.test.ts (4 cases) — extractor + put_page both
  respect dream_generated:true marker.
- test/facts-doctor-shape.test.ts (4 cases) — facts_health JSON shape
  pinned for downstream consumers.
- test/facts-mcp-allowlist.serial.test.ts (5 cases) — extract_facts
  write-scope, recall read-scope, forget_fact write-scope, forget_fact
  fact_not_found error code, extract_facts no-API-key zero counts.
- test/facts-context-injection.serial.test.ts (6 cases) — _meta
  injection on success, world-only filter under remote=true, anti-loop
  on facts ops themselves, best-effort degrade on hook error,
  cache-key includes allow-list hash.
- test/facts-separation-pglite.test.ts (2 cases) — Garry's Separation
  Test as primary ship gate, plus expired hidden-by-default contract.
- test/facts-recall-render.test.ts (3 cases) — --today markdown render
  with all 5 kind icons, --json shape with effective_confidence,
  --as-context emits comment-wrapped block.
- test/facts-migration-dim.test.ts (4 cases) — embedding column type
  is HALFVEC/VECTOR (not arbitrary), dim matches gateway-configured
  embedding_dimensions, HNSW opclass agrees with column type, idempotent
  re-init.
- test/cycle-consolidate.test.ts (5 cases) — below-count + below-age
  thresholds skip, happy path 4 facts → 1 take + all consolidated never
  DELETE, dryRun honored, missing page → bucket skipped.

E2E tests (skip gracefully on DATABASE_URL unset; required gates by
CLAUDE.md test policy):
- test/e2e/facts-separation-postgres.test.ts — Postgres parity for the
  ship gate.
- test/e2e/facts-cross-source-isolation.test.ts — cross-source ACL on PG
  + CASCADE delete.
- test/e2e/facts-forget.test.ts — full forget_fact MCP roundtrip.
- test/e2e/facts-context-injection-postgres.test.ts — _meta injection
  end-to-end on PG.
- test/e2e/facts-recall-render.test.ts — recall --today markdown on PG.
- test/e2e/serve-http-meta.test.ts — eE1 regression: HTTP MCP transport
  inherits _meta + sourceId + scope correctness via dispatchToolCall.

Side-effect: src/core/entities/resolve.ts NFKD post-decompose strips
combining marks (U+0300..U+036F) before hyphenating non-alphanumerics,
so "Crème" → "creme", not "cre-me-".

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

* v0.31 feat(operational): kill switch + doctor check + CHANGELOG + README (Phase 7)

Phase 7 of v0.31 hot-memory.

- src/core/facts/extract.ts: new isFactsExtractionEnabled(engine) helper
  reads `facts.extraction_enabled` config row. Defaults to TRUE; flip to
  'false'/'0'/'no'/'off' (case-insensitive) via `gbrain config set
  facts.extraction_enabled false` to kill extraction across the brain
  without binary downgrade.
- extract_facts MCP op short-circuits with zero-counts envelope + a
  'skipped: extraction_disabled' field when the flag is off (clean
  success, not permission_denied).
- put_page facts backstop respects the same flag — eligibility check now
  returns 'extraction_disabled' as the skipped reason.
- src/commands/doctor.ts: new facts_health check (runs after queue_health,
  before index_audit). Probes for the facts table existence (post-v40
  guard), then surfaces total_active / total_today / total_week /
  total_consolidated + top-3 entities for the default source. Pre-v0.31
  brains report "facts table not present (pre-v0.31 brain or migration
  pending)".
- CHANGELOG.md: full v0.31.0 entry in the GStack release-summary voice.
  Headline + numbers-table + what-it-ships + itemized changes + "To take
  advantage of v0.31" upgrade block + out-of-scope. Honest about the
  HALFVEC + serve-http refactor + ErrorCode-open-union complications.
- README.md: cycle phase list updated 8 → 10 (consolidate + purge). New
  "v0.31 Hot Memory" command block under Commands with recall + forget
  variants, kind icons, --as-context surface for headless agents.

Test gates: 28 facts unit tests pass after the kill-switch wiring + doctor
check ride-along. Typecheck clean.

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

* v0.31 fix(migrate): add facts→sources FK explicitly via ALTER TABLE

The inline column-level FK declaration on facts.source_id worked on
PGLite but silently got dropped on Postgres in the v0.31 e2e run —
the migration handler ran via postgres-js's `unsafe()` multi-statement
path and the resulting facts table came back without the
`facts_source_id_fkey` constraint. Same psql input run directly
against the same database produced the FK; the difference was the
unsafe() pipeline, not the SQL itself.

Splitting the FK into a separate ALTER TABLE inside a DO block makes
the constraint declaration explicit and idempotent: the named
constraint either exists or it doesn't, the ALTER is a no-op on
re-runs, and the failure mode is loud rather than silently leaving
a CASCADE-less foreign key behind.

Without this fix, deleting a source row leaves orphaned facts rows
(test/e2e/facts-cross-source-isolation.test.ts CASCADE-on-sources-
delete case caught it). With this fix the constraint is in place,
the cascade fires, and both PG + PGLite e2e suites stay green.

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

* v0.31 test: update phase-count assertions for the new consolidate phase

Three e2e/unit tests pinned the cycle phase count or order, all now
updated to reflect v0.31's 10-phase cycle:

- test/e2e/dream-cycle-eight-phase-pglite.test.ts:
  describe rename "8-phase cycle" → "10-phase cycle"; ALL_PHASES
  expectation extended to include 'consolidate' (between patterns +
  embed) and 'purge' (the v0.26.5 addition that was already in
  ALL_PHASES but missing from the test's assertion list). totals
  match adds the new facts_consolidated + consolidate_takes_written
  fields plus the pre-existing purged_sources_count + purged_pages_count
  that should have been added when v0.26.5 landed.

- test/e2e/cycle.test.ts: dry-run full cycle now expects
  report.phases.length === 10 (was 9).

- test/core/cycle.serial.test.ts: yieldBetweenPhases hook count + full
  cycle phases.length both updated 9 → 10. Comments call out the
  v0.31 addition lineage so the next person to add a phase sees the
  precedent.

These are mechanical assertion bumps. The tests pass against the
updated assertions on PGLite and Postgres.

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

* v0.31 fix(test): truncate facts table between e2e describe blocks

setupDB() truncates ALL_TABLES between every describe block's
beforeAll() hook. The list missed the new v0.31 facts table, so
facts seeded by an earlier describe block leaked into Garry's
Separation Test on Postgres — listFactsByEntity('travel') returned
2 rows instead of 1 because a prior facts-context-injection test had
also seeded a 'travel' fact.

Adding 'facts' to the truncate list (before 'pages' to respect FK
ordering) makes every describe-block start from an empty facts table.

Pinned by re-running the e2e file ordering that originally caught it
(facts-recall-render → cross-source-isolation → serve-http-meta →
context-injection → separation-postgres → facts-forget) — 13 pass /
0 fail after the fix.

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

* v0.31 test: meta-hook cache + Postgres consolidate phase coverage

Two net-new test files filling real coverage gaps the earlier sweep missed:

- test/facts-meta-cache.test.ts (5 cases) — pins the eD3/eD10 cache
  contract that the dispatcher relies on. 30s TTL hit path, post-bump
  fresh-query, scoped invalidation (bump for sess-A leaves sess-B cache
  warm — closes the cross-source leak risk codex F5 originally surfaced
  on the recall payload), facts-self ops skip injection (anti-loop on
  recall / extract_facts / forget_fact), distinct allow-lists produce
  distinct cache entries.

- test/e2e/cycle-consolidate-postgres.test.ts (3 cases) — Postgres
  parity for the dream-cycle consolidate phase. Mirrors the PGLite
  unit test but exercises the real postgres-engine codepaths: sql.begin
  transactions, advisory locks on insertFact's entity-slug dedup window,
  unsafe('::vector') casts on findCandidateDuplicates ordering,
  addTakesBatch postgres-js unnest path. Happy path (4 facts → 1 take +
  all consolidated_into set), age-threshold skip, dry-run no-write.

All 5 unit + 3 e2e tests pass. Closes the unit-only gap on the
consolidate phase (was only PGLite-tested) and pins meta-cache
invariants the dispatcher depends on.

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

* v0.31 fix: thread auth + sourceId, JSON-shape every error envelope

Three bugs surfaced during the full e2e sweep that all trace back to my
v0.31 dispatch refactor (D12/eE1) silently dropping auth threading +
non-OperationError exceptions emitting plain strings:

1. **HTTP MCP transport lost ctx.auth.** Refactoring serve-http.ts to call
   dispatchToolCall meant auth had to come through DispatchOpts, but the
   field didn't exist yet. Every HTTP whoami call returned
   `unknown_transport` because ctx.auth was undefined. Added `auth?:
   AuthInfo` to DispatchOpts, plumbed it through buildOperationContext,
   and updated serve-http.ts:816 to pass `auth: authInfo` alongside
   sourceId/takesHoldersAllowList. Pinned by sources-remote-mcp e2e
   `whoami reports oauth transport + sources_admin scope`.

2. **Non-OperationError exceptions emitted plain strings, not JSON.**
   The pre-v0.31 serve-http.ts always wrapped errors in JSON envelope
   `{error, message}`; my dispatch refactor missed the unknown-tool +
   uncaught-throw paths and emitted `Error: ${msg}` text content. Every
   caller that did `JSON.parse(content)` (sources-remote-mcp callMcp
   helper at line 104) crashed with `Unexpected identifier "Error"`.
   Both error paths in dispatchToolCall now return JSON-shaped content
   matching the OperationError pattern.

3. **Files→sources FK silently lost on rewound bootstrap path.**
   test/e2e/postgres-bootstrap.test.ts simulates a pre-v0.21 brain by
   `DROP TABLE IF EXISTS sources CASCADE` which removes
   files_source_id_fkey while leaving files.source_id intact. The v23
   migration's `ALTER TABLE files ADD COLUMN IF NOT EXISTS source_id ...
   REFERENCES sources(id) ON DELETE CASCADE` is a no-op when the column
   exists, so the FK never came back on upgrade — and any sources-remove
   afterward stopped cascading to files. Added a defensive
   `IF NOT EXISTS files_source_id_fkey ... ALTER TABLE ADD CONSTRAINT`
   block inside v23's handler. Pinned by `multi-source — cascade delete
   covers every dependent row` after running postgres-bootstrap.

Plus: src/core/preferences.ts now honors GBRAIN_HOME for
`~/.gbrain/migrations/completed.jsonl`. Without this, the doctor
exits-0 mechanical test inherits the developer machine's stale
partial-migration ledger entries (0.21.0, 0.22.4, 0.28.0, 0.29.1
prior dev work) and surfaces them as the [FAIL] minions_migration check.
GBRAIN_HOME-scoped tempdir per test now isolates this state cleanly.

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

* v0.31 chore: scrub personal references from public artifacts

Per the CLAUDE.md privacy rule on `Garry's Separation Test`, replace
personally-coded references in v0.31 artifacts with neutral examples:

- CHANGELOG.md v0.31 entry: rename "Garry's Separation Test" header to
  "The cross-session test" + drop the "topic-2659/topic-1941, 7 AM/2 PM,
  flying to Tokyo" narrative.
- src/commands/migrations/v0_31_0.ts feature pitch: same scrub.
- test/facts-separation-pglite.test.ts + test/e2e/facts-separation-postgres.test.ts:
  rename describe blocks; replace specific topic-NNNN session ids with
  session-A / session-B; replace personal sample fact with
  "sample event Tuesday".
- src/core/facts/extract.ts extractor system prompt example slugs:
  people/sam-altman → people/alice-example; companies/anthropic → companies/acme.
- src/core/entities/resolve.ts comment: Sam Altman → Alice Example.
- All v0.31 test fixtures: people/sam → people/alice-example,
  Sam Altman → Alice Example, sam-the-cofounder → alice-the-cofounder.
  Test names referencing real-world entities replaced with neutral slugs.

Pre-existing references to "Garry" elsewhere in CHANGELOG (v0.17, v0.19,
v0.21+ entries) are untouched — that's a separate scope from this v0.31
ship.

Plus: the truncate fix for the Bun-script-induced syntax error in
test/e2e/mechanical.test.ts (cliEnv arrow function had ", 30_000)" tacked
onto its closing brace by the bulk-add-timeouts script — repaired to a
clean function definition).

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

* v0.31 fix(test): bump E2E phase-count assertions for 11-phase cycle

Two E2E tests still asserted the v0.31 pre-merge 10-phase shape
(consolidate inserted, but recompute_emotional_weight from v0.29 not yet
absorbed). With master's v0.29 work merged in, the cycle is now 11 phases:
lint → backlinks → sync → synthesize → extract → patterns →
recompute_emotional_weight → consolidate → embed → orphans → purge.

- test/e2e/cycle.test.ts: 10 → 11
- test/e2e/dream-cycle-eight-phase-pglite.test.ts: ALL_PHASES + dry-run order

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

* v0.31 fix(merge): close brace between v44 and v45 migration objects

The v0.30.2 merge resolution stitched master's v40-v44 migrations onto
HEAD's v45 (facts hot memory) migration but lost the closing `},` between
v44 and v45. tsc caught it as TS1136 Property assignment expected at
migrate.ts:2188.

This is a one-line bracket fix; the rest of the merge resolution is
correct and tests pass.

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

* v0.31 fix: put_page cliHints + buildPlan v0.31.0 in skippedFuture

Two unit-test failures surfaced after the v0.30.2 merge:

1. operations.ts: put_page had `cliHints: { name: 'put', positional: ['stdin'] }`
   from earlier v0.31 development. The parity test enforces that every name
   in `positional` is a real param. Restored master's correct shape:
   `{ name: 'put', positional: ['slug'], stdin: 'content' }`.

2. test/apply-migrations.test.ts: the H9 regression tests pin the exact
   skippedFuture list. Adding v0.31.0 to the registry meant the list grew
   by one. Updated both `expect(...).toEqual([...])` assertions.

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

* v0.31 docs: clarify consolidate is 11th phase + regen llms-full.txt

CHANGELOG.md narrative said "new 10th phase consolidate"; with v0.29's
recompute_emotional_weight already on master, consolidate is the 11th phase
(between recompute and embed). Schema migration is v45, not v40, after the
merge resolution renumbered it to clear master's v40-v44.

llms-full.txt regenerated to reflect the README's 11-phase dream-cycle
phrasing (the build-llms test enforces commit-time parity).

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

---------

Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-09 16:57:47 -07:00

1428 lines
60 KiB
TypeScript

/**
* E2E Mechanical Tests — Tier 1 (no API keys required)
*
* Tests all operations against a real Postgres+pgvector database.
* Requires DATABASE_URL env var or .env.testing file.
*
* Run: DATABASE_URL=... bun test test/e2e/mechanical.test.ts
*/
import { describe, test, expect, beforeAll, afterAll } from 'bun:test';
import { readFileSync, writeFileSync, mkdtempSync, rmSync } from 'fs';
import { join } from 'path';
import { execSync } from 'child_process';
import { tmpdir } from 'os';
import {
hasDatabase, setupDB, teardownDB, getEngine, getConn,
importFixtures, importFixture, time, dumpDBState, FIXTURES_PATH,
} from './helpers.ts';
import { operationsByName, operations } from '../../src/core/operations.ts';
import type { OperationContext } from '../../src/core/operations.ts';
import { importFromContent } from '../../src/core/import-file.ts';
// Skip all E2E tests if no database is configured
const skip = !hasDatabase();
const describeE2E = skip ? describe.skip : describe;
function makeCtx(opts: { remote?: boolean } = {}): OperationContext {
return {
engine: getEngine(),
config: { engine: 'postgres', database_url: process.env.DATABASE_URL! },
logger: { info: () => {}, warn: () => {}, error: () => {} },
dryRun: false,
// Default: trusted local invocation (matches `gbrain call` semantics).
remote: opts.remote ?? false,
};
}
async function callOp(name: string, params: Record<string, unknown> = {}) {
const op = operationsByName[name];
if (!op) throw new Error(`Unknown operation: ${name}`);
return op.handler(makeCtx(), params);
}
// ─────────────────────────────────────────────────────────────────
// Page CRUD
// ─────────────────────────────────────────────────────────────────
describeE2E('E2E: Page CRUD', () => {
beforeAll(async () => {
await setupDB();
await importFixtures();
}, 30_000);
afterAll(teardownDB);
test('fixture import creates correct page count', async () => {
const stats = await callOp('get_stats') as any;
expect(stats.page_count).toBe(16);
}, 30_000);
test('get_page returns correct data for person', async () => {
const page = await callOp('get_page', { slug: 'people/sarah-chen' }) as any;
expect(page.title).toBe('Sarah Chen');
expect(page.type).toBe('person');
expect(page.compiled_truth).toContain('NovaMind');
expect(page.tags).toContain('founder');
expect(page.tags).toContain('yc-w25');
});
test('get_page returns correct data for concept', async () => {
const page = await callOp('get_page', { slug: 'concepts/retrieval-augmented-generation' }) as any;
expect(page.title).toBe('Retrieval-Augmented Generation');
expect(page.type).toBe('concept');
expect(page.compiled_truth).toContain('検索拡張生成');
});
test('get_page for company includes key details', async () => {
const page = await callOp('get_page', { slug: 'companies/novamind' }) as any;
expect(page.type).toBe('company');
expect(page.compiled_truth).toContain('Sarah Chen');
});
test('list_pages type filter returns correct count', async () => {
const people = await callOp('list_pages', { type: 'person' }) as any[];
expect(people.length).toBe(3);
const companies = await callOp('list_pages', { type: 'company' }) as any[];
expect(companies.length).toBe(3); // novamind, threshold-ventures, ohmygreen
const concepts = await callOp('list_pages', { type: 'concept' }) as any[];
expect(concepts.length).toBe(5); // compiled-truth, hybrid-search, RAG, notes-march-2024, big-file
});
test('list_pages tag filter works', async () => {
const ycPages = await callOp('list_pages', { tag: 'yc-w25' }) as any[];
expect(ycPages.length).toBeGreaterThanOrEqual(2);
expect(ycPages.some((p: any) => p.slug === 'people/sarah-chen')).toBe(true);
});
test('put_page updates existing page', async () => {
const updated = readFileSync(join(FIXTURES_PATH, 'people/sarah-chen.md'), 'utf-8')
.replace('Stanford CS', 'MIT CS');
// Use importFromContent directly with noEmbed to avoid OpenAI timeout
const engine = getEngine();
const result = await importFromContent(engine, 'people/sarah-chen', updated, { noEmbed: true });
expect(result.status).toBe('imported');
const page = await callOp('get_page', { slug: 'people/sarah-chen' }) as any;
expect(page.compiled_truth).toContain('MIT CS');
});
test('delete_page removes page and others survive', async () => {
await callOp('delete_page', { slug: 'sources/crustdata-sarah-chen' });
const stats = await callOp('get_stats') as any;
expect(stats.page_count).toBe(15);
// Other pages still exist
const sarah = await callOp('get_page', { slug: 'people/sarah-chen' }) as any;
expect(sarah.title).toBe('Sarah Chen');
});
});
// ─────────────────────────────────────────────────────────────────
// Search
// ─────────────────────────────────────────────────────────────────
describeE2E('E2E: Search', () => {
beforeAll(async () => {
await setupDB();
await importFixtures();
}, 30_000);
afterAll(teardownDB);
test('keyword search for "NovaMind" returns multiple hits', async () => {
const results = await callOp('search', { query: 'NovaMind' }) as any[];
expect(results.length).toBeGreaterThanOrEqual(3);
const slugs = results.map((r: any) => r.slug);
expect(slugs).toContain('companies/novamind');
}, 30_000);
test('keyword search for "Threshold Ventures" finds investor', async () => {
const results = await callOp('search', { query: 'Threshold Ventures' }) as any[];
expect(results.length).toBeGreaterThanOrEqual(1);
const slugs = results.map((r: any) => r.slug);
expect(slugs).toContain('companies/threshold-ventures');
});
test('keyword search for "Stanford" finds Priya', async () => {
const results = await callOp('search', { query: 'Stanford' }) as any[];
expect(results.length).toBeGreaterThanOrEqual(1);
const slugs = results.map((r: any) => r.slug);
expect(slugs).toContain('people/priya-patel');
});
test('keyword search for nonexistent term returns empty', async () => {
const results = await callOp('search', { query: 'xyznonexistent123' }) as any[];
expect(results.length).toBe(0);
});
test('search quality: precision@5 for known queries', async () => {
const groundTruth: Record<string, string[]> = {
'NovaMind': ['people/sarah-chen', 'companies/novamind', 'deals/novamind-seed'],
'hybrid search': ['concepts/hybrid-search', 'concepts/retrieval-augmented-generation'],
'compiled truth': ['concepts/compiled-truth'],
};
const scores: Record<string, number> = {};
for (const [query, expected] of Object.entries(groundTruth)) {
const results = await callOp('search', { query, limit: 5 }) as any[];
const topSlugs = results.slice(0, 5).map((r: any) => r.slug);
const hits = expected.filter(e => topSlugs.includes(e));
scores[query] = hits.length / Math.min(expected.length, 5);
}
console.log('\n Search Quality (precision@5, keyword-only):');
for (const [query, score] of Object.entries(scores)) {
console.log(` "${query}": ${(score * 100).toFixed(0)}%`);
}
});
});
// ─────────────────────────────────────────────────────────────────
// Links
// ─────────────────────────────────────────────────────────────────
describeE2E('E2E: Links', () => {
beforeAll(async () => {
await setupDB();
await importFixtures();
}, 30_000);
afterAll(teardownDB);
test('add_link + get_links + get_backlinks round trip', async () => {
await callOp('add_link', {
from: 'people/sarah-chen',
to: 'companies/novamind',
link_type: 'founded',
context: 'CEO and founder since 2024',
});
const links = await callOp('get_links', { slug: 'people/sarah-chen' }) as any[];
expect(links.some((l: any) => l.to_slug === 'companies/novamind' || l.to_page_slug === 'companies/novamind')).toBe(true);
const backlinks = await callOp('get_backlinks', { slug: 'companies/novamind' }) as any[];
expect(backlinks.some((l: any) => l.from_slug === 'people/sarah-chen' || l.from_page_slug === 'people/sarah-chen')).toBe(true);
}, 30_000);
test('traverse_graph finds connected pages', async () => {
// Links should already be added from prior test in this describe block
const graph = await callOp('traverse_graph', { slug: 'people/sarah-chen', depth: 2 }) as any;
expect(Array.isArray(graph)).toBe(true);
expect(graph.length).toBeGreaterThanOrEqual(1);
});
test('remove_link removes the link', async () => {
await callOp('add_link', { from: 'people/marcus-reid', to: 'companies/threshold-ventures' });
await callOp('remove_link', { from: 'people/marcus-reid', to: 'companies/threshold-ventures' });
const links = await callOp('get_links', { slug: 'people/marcus-reid' }) as any[];
const hasLink = links.some((l: any) =>
(l.to_slug || l.to_page_slug) === 'companies/threshold-ventures'
);
expect(hasLink).toBe(false);
});
});
// ─────────────────────────────────────────────────────────────────
// Tags
// ─────────────────────────────────────────────────────────────────
describeE2E('E2E: Tags', () => {
beforeAll(async () => {
await setupDB();
await importFixtures();
}, 30_000);
afterAll(teardownDB);
test('get_tags returns imported tags', async () => {
const tags = await callOp('get_tags', { slug: 'people/sarah-chen' }) as string[];
expect(tags).toContain('founder');
expect(tags).toContain('yc-w25');
expect(tags).toContain('ai-agents');
}, 30_000);
test('add_tag + remove_tag round trip', async () => {
await callOp('add_tag', { slug: 'people/marcus-reid', tag: 'test-tag' });
let tags = await callOp('get_tags', { slug: 'people/marcus-reid' }) as string[];
expect(tags).toContain('test-tag');
await callOp('remove_tag', { slug: 'people/marcus-reid', tag: 'test-tag' });
tags = await callOp('get_tags', { slug: 'people/marcus-reid' }) as string[];
expect(tags).not.toContain('test-tag');
});
test('list_pages with tag filter finds tagged pages', async () => {
await callOp('add_tag', { slug: 'people/priya-patel', tag: 'test-search-tag' });
const pages = await callOp('list_pages', { tag: 'test-search-tag' }) as any[];
expect(pages.length).toBe(1);
expect(pages[0].slug).toBe('people/priya-patel');
});
});
// ─────────────────────────────────────────────────────────────────
// Timeline
// ─────────────────────────────────────────────────────────────────
describeE2E('E2E: Timeline', () => {
beforeAll(async () => {
await setupDB();
await importFixtures();
}, 30_000);
afterAll(teardownDB);
test('add_timeline_entry + get_timeline round trip', async () => {
await callOp('add_timeline_entry', {
slug: 'people/sarah-chen',
date: '2025-04-01',
summary: 'Test timeline entry',
detail: 'Added via E2E test',
source: 'e2e-test',
});
const timeline = await callOp('get_timeline', { slug: 'people/sarah-chen' }) as any[];
expect(timeline.length).toBeGreaterThanOrEqual(1);
const entry = timeline.find((e: any) => e.summary === 'Test timeline entry');
expect(entry).toBeDefined();
}, 30_000);
});
// ─────────────────────────────────────────────────────────────────
// Batch methods (addLinksBatch / addTimelineEntriesBatch)
// ─────────────────────────────────────────────────────────────────
//
// Postgres-engine batch methods use postgres-js's sql(rows, 'col1', ...) helper,
// which is structurally different from PGLite's manual $N placeholder construction
// (covered in test/pglite-engine.test.ts). These tests verify the postgres-js code
// path against a real Postgres against the same invariants.
describeE2E('E2E: addLinksBatch (postgres-engine)', () => {
beforeAll(async () => {
await setupDB();
await importFixtures();
}, 30_000);
afterAll(teardownDB);
test('empty batch returns 0 with no DB call', async () => {
const engine = getEngine();
expect(await engine.addLinksBatch([])).toBe(0);
}, 30_000);
test('within-batch duplicates dedup via ON CONFLICT (no 21000 cardinality error)', async () => {
const engine = getEngine();
const conn = getConn();
// Deterministic cleanup so re-runs aren't perturbed by prior fixture state.
await conn`DELETE FROM links WHERE link_type = 'e2e-batch-dup'`;
const inserted = await engine.addLinksBatch([
{ from_slug: 'people/sarah-chen', to_slug: 'companies/novamind', link_type: 'e2e-batch-dup' },
{ from_slug: 'people/sarah-chen', to_slug: 'companies/novamind', link_type: 'e2e-batch-dup' },
]);
expect(inserted).toBe(1);
await conn`DELETE FROM links WHERE link_type = 'e2e-batch-dup'`;
});
test('rows with missing slug silently dropped by JOIN', async () => {
const engine = getEngine();
const conn = getConn();
await conn`DELETE FROM links WHERE link_type = 'e2e-batch-missing'`;
const inserted = await engine.addLinksBatch([
{ from_slug: 'people/does-not-exist', to_slug: 'companies/novamind', link_type: 'e2e-batch-missing' },
{ from_slug: 'people/sarah-chen', to_slug: 'companies/novamind', link_type: 'e2e-batch-missing' },
]);
expect(inserted).toBe(1);
await conn`DELETE FROM links WHERE link_type = 'e2e-batch-missing'`;
});
test('half-existing batch returns count of new only', async () => {
const engine = getEngine();
const conn = getConn();
await conn`DELETE FROM links WHERE link_type = 'e2e-batch-half'`;
await engine.addLink('people/sarah-chen', 'companies/novamind', 'pre-existing', 'e2e-batch-half');
const inserted = await engine.addLinksBatch([
{ from_slug: 'people/sarah-chen', to_slug: 'companies/novamind', link_type: 'e2e-batch-half' },
{ from_slug: 'people/sarah-chen', to_slug: 'people/marcus-reid', link_type: 'e2e-batch-half' },
]);
expect(inserted).toBe(1);
await conn`DELETE FROM links WHERE link_type = 'e2e-batch-half'`;
});
test('missing optional fields normalize to empty strings (NOT NULL safety)', async () => {
const engine = getEngine();
const conn = getConn();
await conn`DELETE FROM links WHERE link_type = ''`;
// No link_type, no context — must default to '' to satisfy NOT NULL.
const inserted = await engine.addLinksBatch([
{ from_slug: 'people/sarah-chen', to_slug: 'companies/novamind' },
]);
expect(inserted).toBe(1);
const rows = await conn`
SELECT link_type, context FROM links
WHERE from_page_id = (SELECT id FROM pages WHERE slug = 'people/sarah-chen')
AND to_page_id = (SELECT id FROM pages WHERE slug = 'companies/novamind')
AND link_type = ''
`;
expect(rows.length).toBe(1);
expect(rows[0].context).toBe('');
await conn`DELETE FROM links WHERE link_type = ''`;
});
});
describeE2E('E2E: addTimelineEntriesBatch (postgres-engine)', () => {
beforeAll(async () => {
await setupDB();
await importFixtures();
}, 30_000);
afterAll(teardownDB);
test('empty batch returns 0', async () => {
const engine = getEngine();
expect(await engine.addTimelineEntriesBatch([])).toBe(0);
}, 30_000);
test('within-batch duplicates dedup via ON CONFLICT', async () => {
const engine = getEngine();
const conn = getConn();
await conn`DELETE FROM timeline_entries WHERE summary = 'e2e-batch-tl-dup'`;
const inserted = await engine.addTimelineEntriesBatch([
{ slug: 'people/sarah-chen', date: '2025-05-01', summary: 'e2e-batch-tl-dup' },
{ slug: 'people/sarah-chen', date: '2025-05-01', summary: 'e2e-batch-tl-dup' },
]);
expect(inserted).toBe(1);
await conn`DELETE FROM timeline_entries WHERE summary = 'e2e-batch-tl-dup'`;
});
test('rows with missing slug silently dropped by JOIN', async () => {
const engine = getEngine();
const conn = getConn();
await conn`DELETE FROM timeline_entries WHERE summary = 'e2e-batch-tl-missing'`;
const inserted = await engine.addTimelineEntriesBatch([
{ slug: 'people/no-such-page', date: '2025-05-02', summary: 'e2e-batch-tl-missing' },
{ slug: 'people/sarah-chen', date: '2025-05-02', summary: 'e2e-batch-tl-missing' },
]);
expect(inserted).toBe(1);
await conn`DELETE FROM timeline_entries WHERE summary = 'e2e-batch-tl-missing'`;
});
test('mix of new + existing returns count of new only', async () => {
const engine = getEngine();
const conn = getConn();
await conn`DELETE FROM timeline_entries WHERE summary IN ('e2e-batch-tl-half-1', 'e2e-batch-tl-half-2')`;
await engine.addTimelineEntry('people/sarah-chen', { date: '2025-05-03', summary: 'e2e-batch-tl-half-1' });
const inserted = await engine.addTimelineEntriesBatch([
{ slug: 'people/sarah-chen', date: '2025-05-03', summary: 'e2e-batch-tl-half-1' },
{ slug: 'people/sarah-chen', date: '2025-05-04', summary: 'e2e-batch-tl-half-2' },
]);
expect(inserted).toBe(1);
await conn`DELETE FROM timeline_entries WHERE summary IN ('e2e-batch-tl-half-1', 'e2e-batch-tl-half-2')`;
});
});
// ─────────────────────────────────────────────────────────────────
// Versions
// ─────────────────────────────────────────────────────────────────
describeE2E('E2E: Versions', () => {
beforeAll(async () => {
await setupDB();
await importFixtures();
}, 30_000);
afterAll(teardownDB);
test('put_page creates version, revert restores', async () => {
const original = await callOp('get_page', { slug: 'people/sarah-chen' }) as any;
// Modify page using importFromContent with noEmbed
const modified = readFileSync(join(FIXTURES_PATH, 'people/sarah-chen.md'), 'utf-8')
.replace('Sarah Chen', 'Sarah Chen (Modified)');
const engine = getEngine();
await importFromContent(engine, 'people/sarah-chen', modified, { noEmbed: true });
// Check versions exist
const versions = await callOp('get_versions', { slug: 'people/sarah-chen' }) as any[];
expect(versions.length).toBeGreaterThanOrEqual(1);
// Revert to first version
const firstVersion = versions[versions.length - 1];
await callOp('revert_version', { slug: 'people/sarah-chen', version_id: firstVersion.id });
const reverted = await callOp('get_page', { slug: 'people/sarah-chen' }) as any;
expect(reverted.compiled_truth).not.toContain('(Modified)');
}, 30_000);
});
// ─────────────────────────────────────────────────────────────────
// Admin
// ─────────────────────────────────────────────────────────────────
describeE2E('E2E: Admin', () => {
beforeAll(async () => {
await setupDB();
await importFixtures();
}, 30_000);
afterAll(teardownDB);
test('get_stats returns valid structure', async () => {
const stats = await callOp('get_stats') as any;
expect(stats.page_count).toBe(16);
expect(typeof stats.chunk_count).toBe('number');
}, 30_000);
test('get_health returns valid structure', async () => {
const health = await callOp('get_health') as any;
expect(health).toBeDefined();
expect(typeof health.page_count).toBe('number');
expect(typeof health.embed_coverage).toBe('number');
});
});
// ─────────────────────────────────────────────────────────────────
// Chunks & Resolution
// ─────────────────────────────────────────────────────────────────
describeE2E('E2E: Chunks & Resolution', () => {
beforeAll(async () => {
await setupDB();
await importFixtures();
}, 30_000);
afterAll(teardownDB);
test('get_chunks returns chunks for imported page', async () => {
const chunks = await callOp('get_chunks', { slug: 'people/sarah-chen' }) as any[];
expect(chunks.length).toBeGreaterThan(0);
expect(chunks[0].chunk_text).toBeTruthy();
}, 30_000);
test('resolve_slugs finds partial match', async () => {
const matches = await callOp('resolve_slugs', { partial: 'sarah' }) as string[];
expect(matches).toContain('people/sarah-chen');
});
test('resolve_slugs finds exact match', async () => {
const matches = await callOp('resolve_slugs', { partial: 'people/sarah-chen' }) as string[];
expect(matches).toContain('people/sarah-chen');
});
});
// ─────────────────────────────────────────────────────────────────
// Ingest Log & Raw Data
// ─────────────────────────────────────────────────────────────────
describeE2E('E2E: Ingest Log & Raw Data', () => {
beforeAll(async () => {
await setupDB();
await importFixtures();
}, 30_000);
afterAll(teardownDB);
test('log_ingest + get_ingest_log round trip', async () => {
await callOp('log_ingest', {
source_type: 'e2e-test',
source_ref: 'test-run-1',
pages_updated: ['people/sarah-chen', 'companies/novamind'],
summary: 'E2E test ingest',
});
const log = await callOp('get_ingest_log', { limit: 5 }) as any[];
expect(log.length).toBeGreaterThanOrEqual(1);
const entry = log.find((e: any) => e.source_ref === 'test-run-1');
expect(entry).toBeDefined();
expect(entry.source_type).toBe('e2e-test');
}, 30_000);
test('put_raw_data + get_raw_data round trip', async () => {
const testData = { education: 'Stanford CS 2020', title: 'CEO' };
await callOp('put_raw_data', {
slug: 'people/sarah-chen',
source: 'crustdata',
data: testData,
});
const raw = await callOp('get_raw_data', {
slug: 'people/sarah-chen',
source: 'crustdata',
}) as any[];
expect(raw.length).toBeGreaterThanOrEqual(1);
// JSONB may come back as string or parsed object
const data = typeof raw[0].data === 'string' ? JSON.parse(raw[0].data) : raw[0].data;
expect(data.education).toBe('Stanford CS 2020');
expect(data.title).toBe('CEO');
});
});
// ─────────────────────────────────────────────────────────────────
// Files (stub verification)
// ─────────────────────────────────────────────────────────────────
describeE2E('E2E: Files', () => {
beforeAll(async () => {
await setupDB();
await importFixtures();
}, 30_000);
afterAll(teardownDB);
test('file_list returns empty initially', async () => {
const files = await callOp('file_list', {}) as any[];
expect(files.length).toBe(0);
}, 30_000);
test('file_upload stores metadata + file_list shows it', async () => {
// Create a temp file
const tmpDir = mkdtempSync(join(tmpdir(), 'gbrain-e2e-'));
const tmpFile = join(tmpDir, 'test-doc.pdf');
writeFileSync(tmpFile, 'fake pdf content');
try {
const result = await callOp('file_upload', {
path: tmpFile,
page_slug: 'people/sarah-chen',
}) as any;
expect(result.status).toBe('uploaded');
expect(result.storage_path).toContain('sarah-chen');
// Verify file_list
const files = await callOp('file_list', {}) as any[];
expect(files.length).toBe(1);
// Verify file_url returns URI format
const url = await callOp('file_url', { storage_path: result.storage_path }) as any;
expect(url.url).toContain('gbrain:files/');
} finally {
rmSync(tmpDir, { recursive: true });
}
});
// Security-wave-3 regression: MCP/remote callers MUST be confined to cwd
// (Issue #139). Local CLI callers are unrestricted — different trust model.
test('file_upload rejects outside-cwd paths for remote (MCP) callers', async () => {
const tmpDir = mkdtempSync(join(tmpdir(), 'gbrain-e2e-ssrf-'));
const tmpFile = join(tmpDir, 'stealable.txt');
writeFileSync(tmpFile, 'sensitive');
try {
const op = operationsByName['file_upload'];
let threw = false;
try {
await op.handler(makeCtx({ remote: true }), {
path: tmpFile,
page_slug: 'people/sarah-chen',
});
} catch (e: any) {
threw = true;
expect(String(e.message || e)).toMatch(/within the working directory/i);
}
expect(threw).toBe(true);
} finally {
rmSync(tmpDir, { recursive: true });
}
});
});
// ─────────────────────────────────────────────────────────────────
// Security: Query Bounds
// ─────────────────────────────────────────────────────────────────
describeE2E('E2E: file_list LIMIT enforcement', () => {
beforeAll(async () => {
await setupDB();
}, 30_000);
afterAll(teardownDB);
test('file_list with slug filter respects LIMIT 100', async () => {
const sql = getConn();
const testSlug = 'test-limit-slug';
// Create the parent page first (FK constraint on files.page_slug)
await sql`
INSERT INTO pages (slug, title, type, compiled_truth, frontmatter)
VALUES (${testSlug}, ${'Test Limit Page'}, ${'note'}, ${'body'}, ${'{}'}::jsonb)
ON CONFLICT (source_id, slug) DO NOTHING
`;
// Insert 150 file rows for the same slug
for (let i = 0; i < 150; i++) {
await sql`
INSERT INTO files (page_slug, filename, storage_path, mime_type, size_bytes, content_hash, metadata)
VALUES (${testSlug}, ${'file-' + String(i).padStart(3, '0') + '.txt'}, ${testSlug + '/file-' + i + '.txt'}, ${'text/plain'}, ${100}, ${'hash-' + i}, ${'{}'}::jsonb)
ON CONFLICT (storage_path) DO NOTHING
`;
}
// Verify we inserted 150
const count = await sql`SELECT count(*) as cnt FROM files WHERE page_slug = ${testSlug}`;
expect(Number(count[0].cnt)).toBe(150);
// Call file_list with slug — should return at most 100
const files = await callOp('file_list', { slug: testSlug }) as any[];
expect(files.length).toBeLessThanOrEqual(100);
expect(files.length).toBe(100);
}, 30_000);
test('file_list without slug also respects LIMIT 100', async () => {
// The 150 rows from the previous test are still in the DB
const files = await callOp('file_list', {}) as any[];
expect(files.length).toBeLessThanOrEqual(100);
});
});
// ─────────────────────────────────────────────────────────────────
// Idempotency Stress
// ─────────────────────────────────────────────────────────────────
describeE2E('E2E: Idempotency', () => {
beforeAll(async () => {
await setupDB();
}, 30_000);
afterAll(teardownDB);
test('double import produces no duplicates', async () => {
// First import
await importFixtures();
const stats1 = await callOp('get_stats') as any;
// Second import (identical content)
await importFixtures();
const stats2 = await callOp('get_stats') as any;
expect(stats2.page_count).toBe(stats1.page_count);
expect(stats2.chunk_count).toBe(stats1.chunk_count);
}, 30_000);
test('modify one fixture, reimport, only that page updates', async () => {
await importFixtures();
const engine = getEngine();
// Modify sarah-chen content
const modified = readFileSync(join(FIXTURES_PATH, 'people/sarah-chen.md'), 'utf-8')
.replace('Stanford CS', 'MIT CS');
const result = await importFromContent(engine, 'people/sarah-chen', modified, { noEmbed: true });
expect(result.status).toBe('imported');
// Other pages should have been skipped if reimported
const content = readFileSync(join(FIXTURES_PATH, 'people/marcus-reid.md'), 'utf-8');
const { parseMarkdown } = await import('../../src/core/markdown.ts');
const parsed = parseMarkdown(content, 'people/marcus-reid.md');
const result2 = await importFromContent(engine, parsed.slug, content, { noEmbed: true });
expect(result2.status).toBe('skipped');
});
});
// ─────────────────────────────────────────────────────────────────
// Setup Journey (CLI subprocess tests)
// ─────────────────────────────────────────────────────────────────
describeE2E('E2E: Setup Journey', () => {
beforeAll(async () => {
await setupDB();
}, 30_000);
afterAll(teardownDB);
const cliCwd = join(import.meta.dir, '../..');
const cliEnv = () => ({ ...process.env, DATABASE_URL: process.env.DATABASE_URL! });
test('gbrain init --non-interactive connects and initializes', () => {
const result = Bun.spawnSync({
cmd: ['bun', 'run', 'src/cli.ts', 'init', '--non-interactive', '--url', process.env.DATABASE_URL!],
cwd: cliCwd,
env: cliEnv(),
timeout: 15_000,
});
const stdout = new TextDecoder().decode(result.stdout);
expect(result.exitCode).toBe(0);
expect(stdout).toContain('Brain ready');
}, 30_000);
test('gbrain import imports fixtures via CLI', () => {
const result = Bun.spawnSync({
cmd: ['bun', 'run', 'src/cli.ts', 'import', '--no-embed', FIXTURES_PATH],
cwd: cliCwd,
env: cliEnv(),
timeout: 30_000,
});
const stdout = new TextDecoder().decode(result.stdout);
expect(result.exitCode).toBe(0);
expect(stdout).toContain('imported');
}, 60_000);
test('gbrain search returns results via CLI', () => {
const result = Bun.spawnSync({
cmd: ['bun', 'run', 'src/cli.ts', 'search', 'NovaMind'],
cwd: cliCwd,
env: cliEnv(),
timeout: 15_000,
});
const stdout = new TextDecoder().decode(result.stdout);
expect(result.exitCode).toBe(0);
expect(stdout.length).toBeGreaterThan(0);
}, 30_000);
test('gbrain stats shows page count via CLI', () => {
const result = Bun.spawnSync({
cmd: ['bun', 'run', 'src/cli.ts', 'stats'],
cwd: cliCwd,
env: cliEnv(),
timeout: 15_000,
});
expect(result.exitCode).toBe(0);
}, 30_000);
test('gbrain health runs via CLI', () => {
const result = Bun.spawnSync({
cmd: ['bun', 'run', 'src/cli.ts', 'health'],
cwd: cliCwd,
env: cliEnv(),
timeout: 15_000,
});
expect(result.exitCode).toBe(0);
}, 30_000);
});
// ─────────────────────────────────────────────────────────────────
// Init Edge Cases
// ─────────────────────────────────────────────────────────────────
describeE2E('E2E: Init Edge Cases', () => {
afterAll(teardownDB);
test('init --non-interactive without URL fails gracefully', () => {
const env = { ...process.env };
delete env.DATABASE_URL;
delete env.GBRAIN_DATABASE_URL;
const result = Bun.spawnSync({
cmd: ['bun', 'run', 'src/cli.ts', 'init', '--non-interactive'],
cwd: join(import.meta.dir, '../..'),
env,
timeout: 10_000,
});
expect(result.exitCode).not.toBe(0);
}, 30_000);
test('double init is idempotent', async () => {
await setupDB();
const conn = getConn();
const before = await conn.unsafe(`SELECT count(*) as n FROM information_schema.tables WHERE table_schema = 'public'`);
// Re-init
const { initSchema } = await import('../../src/core/db.ts');
await initSchema();
const after = await conn.unsafe(`SELECT count(*) as n FROM information_schema.tables WHERE table_schema = 'public'`);
expect(after[0].n).toBe(before[0].n);
});
test('init then import then re-init preserves pages', async () => {
await setupDB();
await importFixtures();
const before = await callOp('get_stats') as any;
const { initSchema } = await import('../../src/core/db.ts');
await initSchema();
const after = await callOp('get_stats') as any;
expect(after.page_count).toBe(before.page_count);
});
});
// ─────────────────────────────────────────────────────────────────
// Schema Idempotency
// ─────────────────────────────────────────────────────────────────
describeE2E('E2E: Schema Idempotency', () => {
beforeAll(async () => {
await setupDB();
}, 30_000);
afterAll(teardownDB);
test('initSchema twice produces no errors and same object count', async () => {
const conn = getConn();
const tables1 = await conn.unsafe(`SELECT count(*) as n FROM information_schema.tables WHERE table_schema = 'public'`);
const indexes1 = await conn.unsafe(`SELECT count(*) as n FROM pg_indexes WHERE schemaname = 'public'`);
const { initSchema } = await import('../../src/core/db.ts');
await initSchema();
const tables2 = await conn.unsafe(`SELECT count(*) as n FROM information_schema.tables WHERE table_schema = 'public'`);
const indexes2 = await conn.unsafe(`SELECT count(*) as n FROM pg_indexes WHERE schemaname = 'public'`);
expect(tables2[0].n).toBe(tables1[0].n);
expect(indexes2[0].n).toBe(indexes1[0].n);
}, 30_000);
});
// ─────────────────────────────────────────────────────────────────
// Schema Diff Guard
// ─────────────────────────────────────────────────────────────────
describeE2E('E2E: Schema Diff Guard', () => {
beforeAll(async () => {
await setupDB();
}, 30_000);
afterAll(teardownDB);
test('all expected tables exist', async () => {
const conn = getConn();
const tables = await conn.unsafe(`
SELECT table_name FROM information_schema.tables
WHERE table_schema = 'public' AND table_type = 'BASE TABLE'
ORDER BY table_name
`);
const tableNames = tables.map((t: any) => t.table_name);
const expected = [
'config', 'content_chunks', 'files', 'ingest_log',
'links', 'page_versions', 'pages', 'raw_data',
'tags', 'timeline_entries',
];
for (const table of expected) {
expect(tableNames).toContain(table);
}
}, 30_000);
test('pgvector extension is installed', async () => {
const conn = getConn();
const ext = await conn.unsafe(`SELECT extname FROM pg_extension WHERE extname = 'vector'`);
expect(ext.length).toBe(1);
});
test('pg_trgm extension is installed', async () => {
const conn = getConn();
const ext = await conn.unsafe(`SELECT extname FROM pg_extension WHERE extname = 'pg_trgm'`);
expect(ext.length).toBe(1);
});
});
// ─────────────────────────────────────────────────────────────────
// Slug with Special Characters (Apple Notes fix)
// ─────────────────────────────────────────────────────────────────
describeE2E('E2E: Slug with Special Characters', () => {
beforeAll(async () => {
await setupDB();
await importFixtures();
}, 30_000);
afterAll(teardownDB);
test('imports files with spaces in filename', async () => {
const page = await callOp('get_page', { slug: 'apple-notes/2017-05-03-ohmygreen' }) as any;
expect(page).not.toBeNull();
expect(page.title).toBe('OhMyGreen');
expect(page.type).toBe('company');
}, 30_000);
test('imports files with parens in filename', async () => {
const page = await callOp('get_page', { slug: 'apple-notes/notes-march-2024' }) as any;
expect(page).not.toBeNull();
expect(page.title).toBe('March 2024 Notes');
});
test('search finds content from special-char files', async () => {
const results = await callOp('search', { query: 'OhMyGreen' }) as any[];
expect(results.length).toBeGreaterThanOrEqual(1);
const slugs = results.map((r: any) => r.slug);
expect(slugs).toContain('apple-notes/2017-05-03-ohmygreen');
});
test('re-import of special-char files is idempotent', async () => {
const before = await callOp('get_stats') as any;
await importFixtures(); // second import
const after = await callOp('get_stats') as any;
expect(after.page_count).toBe(before.page_count);
});
});
// ─────────────────────────────────────────────────────────────────
// RLS Verification
// ─────────────────────────────────────────────────────────────────
describeE2E('E2E: RLS Verification', () => {
beforeAll(async () => {
await setupDB();
}, 30_000);
afterAll(teardownDB);
const cliCwd = join(import.meta.dir, '../..');
const cliEnv = () => ({ ...process.env, DATABASE_URL: process.env.DATABASE_URL!, GBRAIN_DATABASE_URL: process.env.DATABASE_URL! });
// Seed a unique suffix per run so concurrent test DBs / crashed prior
// runs don't collide. All helper tables follow `gbrain_rls_regression_<suffix>`.
const suffix = `${process.pid}_${Date.now()}`;
test('RLS is enabled on every public table (no hardcoded allowlist)', async () => {
const conn = getConn();
const tables = await conn.unsafe(`
SELECT tablename, rowsecurity FROM pg_tables
WHERE schemaname = 'public'
`);
const noRls = tables.filter((t: any) => !t.rowsecurity);
// Some test DBs may not have BYPASSRLS privilege, so RLS might be skipped.
// If RLS was enabled at all (the common case against Docker postgres), EVERY
// public table must have it — no hardcoded IN-list exceptions.
if (tables.some((t: any) => t.rowsecurity)) {
expect(noRls.map((t: any) => t.tablename)).toEqual([]);
}
}, 30_000);
test('current user role has BYPASSRLS', async () => {
const conn = getConn();
const rows = await conn.unsafe(`SELECT rolbypassrls FROM pg_roles WHERE rolname = current_user`);
if (rows.length > 0) {
expect(rows[0].rolbypassrls).toBe(true);
}
});
test('gbrain doctor fails with exit 1 when a public table is missing RLS', async () => {
const conn = getConn();
const tbl = `gbrain_rls_regression_${suffix}`;
try {
// Init first so all migrations (including v35's auto-RLS event trigger
// and one-time backfill) are applied. AFTER migrations run, simulate
// the post-v35 escape route: operator drops the auto-RLS trigger
// (e.g. while debugging) and creates a public table without RLS.
// doctor's existing rls check must still flag it. The new
// rls_event_trigger check warns separately about the missing trigger.
Bun.spawnSync({
cmd: ['bun', 'run', 'src/cli.ts', 'init', '--non-interactive', '--url', process.env.DATABASE_URL!],
cwd: cliCwd, env: cliEnv(), timeout: 15_000,
});
// Drop the trigger so CREATE TABLE doesn't auto-enable RLS, then create
// the test table without RLS. ALTER TABLE … DISABLE is a belt-and-
// suspenders no-op in this path but matches what an operator would do
// if they had toggled RLS off manually after the trigger ran.
await conn.unsafe(`DROP EVENT TRIGGER IF EXISTS auto_rls_on_create_table`);
await conn.unsafe(`CREATE TABLE public.${tbl} (id int)`);
await conn.unsafe(`ALTER TABLE public.${tbl} DISABLE ROW LEVEL SECURITY`);
const result = Bun.spawnSync({
cmd: ['bun', 'run', 'src/cli.ts', 'doctor', '--json'],
cwd: cliCwd, env: cliEnv(), timeout: 20_000,
});
const stdout = new TextDecoder().decode(result.stdout);
const parsed = JSON.parse(stdout);
const rls = parsed.checks.find((c: any) => c.name === 'rls');
expect(rls).toBeDefined();
expect(rls.status).toBe('fail');
expect(rls.message).toContain(tbl);
expect(rls.message).toContain('ALTER TABLE');
expect(result.exitCode).toBe(1);
} finally {
await conn.unsafe(`DROP TABLE IF EXISTS public.${tbl}`);
// Restore the trigger via a no-op v35 replay so subsequent tests in
// this file (which expect the post-init steady state) don't see drift.
const { MIGRATIONS } = await import('../../src/core/migrate.ts');
const v35sql = (MIGRATIONS.find(m => m.version === 35)?.sqlFor as any)?.postgres;
if (v35sql) await conn.unsafe(v35sql);
}
}, 60_000);
test('GBRAIN:RLS_EXEMPT comment with valid reason exempts a non-RLS public table', async () => {
const conn = getConn();
const tbl = `gbrain_rls_exempt_ok_${suffix}`;
try {
await conn.unsafe(`CREATE TABLE public.${tbl} (id int)`);
await conn.unsafe(`ALTER TABLE public.${tbl} DISABLE ROW LEVEL SECURITY`);
await conn.unsafe(`COMMENT ON TABLE public.${tbl} IS 'GBRAIN:RLS_EXEMPT reason=e2e test fixture, anon-readable ok'`);
Bun.spawnSync({
cmd: ['bun', 'run', 'src/cli.ts', 'init', '--non-interactive', '--url', process.env.DATABASE_URL!],
cwd: cliCwd, env: cliEnv(), timeout: 15_000,
});
const result = Bun.spawnSync({
cmd: ['bun', 'run', 'src/cli.ts', 'doctor', '--json'],
cwd: cliCwd, env: cliEnv(), timeout: 20_000,
});
const stdout = new TextDecoder().decode(result.stdout);
const parsed = JSON.parse(stdout);
const rls = parsed.checks.find((c: any) => c.name === 'rls');
expect(rls.status).toBe('ok');
expect(rls.message).toContain('explicitly exempt');
expect(rls.message).toContain(tbl);
} finally {
await conn.unsafe(`DROP TABLE IF EXISTS public.${tbl}`);
}
}, 60_000);
test('GBRAIN:RLS_EXEMPT comment WITHOUT reason= still fails doctor', async () => {
const conn = getConn();
const tbl = `gbrain_rls_exempt_bad_${suffix}`;
try {
await conn.unsafe(`CREATE TABLE public.${tbl} (id int)`);
await conn.unsafe(`ALTER TABLE public.${tbl} DISABLE ROW LEVEL SECURITY`);
// Missing the `reason=<...>` segment — prefix alone is not enough.
await conn.unsafe(`COMMENT ON TABLE public.${tbl} IS 'GBRAIN:RLS_EXEMPT'`);
Bun.spawnSync({
cmd: ['bun', 'run', 'src/cli.ts', 'init', '--non-interactive', '--url', process.env.DATABASE_URL!],
cwd: cliCwd, env: cliEnv(), timeout: 15_000,
});
const result = Bun.spawnSync({
cmd: ['bun', 'run', 'src/cli.ts', 'doctor', '--json'],
cwd: cliCwd, env: cliEnv(), timeout: 20_000,
});
const stdout = new TextDecoder().decode(result.stdout);
const parsed = JSON.parse(stdout);
const rls = parsed.checks.find((c: any) => c.name === 'rls');
expect(rls.status).toBe('fail');
expect(rls.message).toContain(tbl);
expect(result.exitCode).toBe(1);
} finally {
await conn.unsafe(`DROP TABLE IF EXISTS public.${tbl}`);
}
}, 60_000);
test('Non-exempt unrelated COMMENT on a no-RLS table still fails doctor', async () => {
const conn = getConn();
const tbl = `gbrain_rls_comment_${suffix}`;
try {
await conn.unsafe(`CREATE TABLE public.${tbl} (id int)`);
await conn.unsafe(`ALTER TABLE public.${tbl} DISABLE ROW LEVEL SECURITY`);
await conn.unsafe(`COMMENT ON TABLE public.${tbl} IS 'Regular docs comment, not an exemption'`);
Bun.spawnSync({
cmd: ['bun', 'run', 'src/cli.ts', 'init', '--non-interactive', '--url', process.env.DATABASE_URL!],
cwd: cliCwd, env: cliEnv(), timeout: 15_000,
});
const result = Bun.spawnSync({
cmd: ['bun', 'run', 'src/cli.ts', 'doctor', '--json'],
cwd: cliCwd, env: cliEnv(), timeout: 20_000,
});
const stdout = new TextDecoder().decode(result.stdout);
const parsed = JSON.parse(stdout);
const rls = parsed.checks.find((c: any) => c.name === 'rls');
expect(rls.status).toBe('fail');
expect(result.exitCode).toBe(1);
} finally {
await conn.unsafe(`DROP TABLE IF EXISTS public.${tbl}`);
}
}, 60_000);
// Regression test for the v24 self-healing guard. If an operator manually
// drops budget_ledger and/or budget_reservations (they are migration-only
// per v12, not in schema.sql, and the data is regenerable from resolver
// logs — so dropping them is a reasonable cleanup), v24 must NOT fail
// with 42P01. The information_schema.tables IF EXISTS guards around those
// two ALTERs let the migration skip them and continue.
//
// Without the guard, a brain with dropped budget_* tables would get stuck
// in an infinite retry loop: v24 fails → transaction rolls back →
// schema_version stays at prior value → next initSchema re-runs v24 →
// same failure forever.
test('v24 self-heals when budget_ledger + budget_reservations are missing', async () => {
const conn = getConn();
let priorVersion: string | null = null;
try {
// Capture current version so we can restore after the test.
const verRows = await conn.unsafe(`SELECT value FROM config WHERE key = 'version'`);
priorVersion = (verRows[0] as any)?.value ?? null;
// Simulate an operator who dropped the budget_* tables for any reason
// (cleanup, migration from an older gbrain, etc).
await conn.unsafe(`DROP TABLE IF EXISTS public.budget_ledger CASCADE`);
await conn.unsafe(`DROP TABLE IF EXISTS public.budget_reservations CASCADE`);
// Roll the version back to 23 so v24 re-runs on the next initSchema.
// UPSERT so this works whether the key exists or not.
await conn.unsafe(`
INSERT INTO config (key, value) VALUES ('version', '23')
ON CONFLICT (key) DO UPDATE SET value = '23'
`);
// Re-trigger initSchema via the CLI. With the guard, this should
// apply v24 cleanly and advance version to 24. Without the guard,
// this would error out with 42P01 and leave version at 23.
const result = Bun.spawnSync({
cmd: ['bun', 'run', 'src/cli.ts', 'init', '--non-interactive', '--url', process.env.DATABASE_URL!],
cwd: cliCwd, env: cliEnv(), timeout: 30_000,
});
const stdout = new TextDecoder().decode(result.stdout);
const stderr = new TextDecoder().decode(result.stderr);
// Must succeed — no 42P01, no transaction rollback.
expect(result.exitCode).toBe(0);
expect(stderr + stdout).not.toMatch(/42P01|does not exist.*budget/i);
// Version must have advanced PAST 24. Since v0.18.1, v25-v29 (v0.19.0
// + v0.21.0 Cathedral II) and v30 (OAuth) have shipped. init runs every
// pending migration, so after rolling back to 23 the version advances
// to LATEST_VERSION. The test's intent is to prove v24 didn't crash on
// missing budget_* tables — assert version >= 24.
const afterRows = await conn.unsafe(`SELECT value FROM config WHERE key = 'version'`);
const finalVersion = parseInt((afterRows[0] as any).value, 10);
expect(finalVersion).toBeGreaterThanOrEqual(24);
// The tables stayed dropped (v12 didn't re-run because current=23 > 12
// was already true before this test ran). That's intentional — we're
// proving v24 doesn't require those tables to exist.
const tblRows = await conn.unsafe(`
SELECT tablename FROM pg_tables
WHERE schemaname = 'public'
AND tablename IN ('budget_ledger', 'budget_reservations')
`);
expect(tblRows.length).toBe(0);
} finally {
// Restore: recreate the budget_* tables (minimal schema — just enough
// to keep the rest of the test suite happy) and reset version.
// Mirror migration v12's CREATE TABLE IF NOT EXISTS exactly so any
// downstream test that touches these tables sees the original shape.
await conn.unsafe(`
CREATE TABLE IF NOT EXISTS budget_ledger (
scope TEXT NOT NULL,
resolver_id TEXT NOT NULL,
local_date DATE NOT NULL,
reserved_usd NUMERIC(12,4) NOT NULL DEFAULT 0,
committed_usd NUMERIC(12,4) NOT NULL DEFAULT 0,
cap_usd NUMERIC(12,4),
created_at TIMESTAMPTZ NOT NULL DEFAULT now(),
updated_at TIMESTAMPTZ NOT NULL DEFAULT now(),
PRIMARY KEY (scope, resolver_id, local_date)
)
`);
await conn.unsafe(`
CREATE TABLE IF NOT EXISTS budget_reservations (
reservation_id TEXT PRIMARY KEY,
scope TEXT NOT NULL,
resolver_id TEXT NOT NULL,
local_date DATE NOT NULL,
estimate_usd NUMERIC(12,4) NOT NULL,
reserved_at TIMESTAMPTZ NOT NULL DEFAULT now(),
expires_at TIMESTAMPTZ NOT NULL,
status TEXT NOT NULL DEFAULT 'held'
)
`);
// Enable RLS on the recreated tables so the "every public table has
// RLS" assertion earlier in this block stays green if re-run.
await conn.unsafe(`ALTER TABLE budget_ledger ENABLE ROW LEVEL SECURITY`);
await conn.unsafe(`ALTER TABLE budget_reservations ENABLE ROW LEVEL SECURITY`);
// Restore version so we don't leave the DB at a weird state for
// subsequent test blocks.
if (priorVersion !== null) {
await conn.unsafe(
`UPDATE config SET value = $1 WHERE key = 'version'`,
[priorVersion],
);
}
}
}, 60_000);
});
// ─────────────────────────────────────────────────────────────────
// Doctor Command
// ─────────────────────────────────────────────────────────────────
describeE2E('E2E: Doctor Command', () => {
beforeAll(async () => {
await setupDB();
await importFixtures();
}, 30_000);
afterAll(teardownDB);
const cliCwd = join(import.meta.dir, '../..');
// Isolate GBRAIN_HOME to a per-test tempdir so the developer's
// ~/.gbrain/migrations/completed.jsonl ledger doesn't leak in. Without
// this, doctor reads Garry's machine state — partial v0.21/v0.22.4/v0.28.0
// migration entries from prior dev work — and surfaces them as the
// 'minions_migration' [FAIL] check, exiting with code 1.
const isolatedHome = mkdtempSync(join(tmpdir(), 'gbrain-doctor-test-'));
const cliEnv = () => ({
...process.env,
DATABASE_URL: process.env.DATABASE_URL!,
GBRAIN_DATABASE_URL: process.env.DATABASE_URL!,
GBRAIN_HOME: isolatedHome,
});
test('gbrain doctor exits 0 on healthy DB', () => {
// Init first so config exists for CLI
Bun.spawnSync({
cmd: ['bun', 'run', 'src/cli.ts', 'init', '--non-interactive', '--url', process.env.DATABASE_URL!],
cwd: cliCwd, env: cliEnv(), timeout: 15_000,
});
const result = Bun.spawnSync({
cmd: ['bun', 'run', 'src/cli.ts', 'doctor'],
cwd: cliCwd,
env: cliEnv(),
timeout: 15_000,
});
if (result.exitCode !== 0) {
const stdout = new TextDecoder().decode(result.stdout);
const stderr = new TextDecoder().decode(result.stderr);
console.error('doctor stdout:', stdout.slice(-2000));
console.error('doctor stderr:', stderr.slice(-1000));
}
expect(result.exitCode).toBe(0);
}, 60_000);
test('gbrain doctor --json produces valid JSON', () => {
const result = Bun.spawnSync({
cmd: ['bun', 'run', 'src/cli.ts', 'doctor', '--json'],
cwd: cliCwd,
env: cliEnv(),
timeout: 15_000,
});
const stdout = new TextDecoder().decode(result.stdout);
const parsed = JSON.parse(stdout);
expect(parsed.status).toBeDefined();
expect(Array.isArray(parsed.checks)).toBe(true);
expect(parsed.checks.length).toBeGreaterThan(0);
for (const check of parsed.checks) {
expect(['ok', 'warn', 'fail']).toContain(check.status);
expect(typeof check.name).toBe('string');
expect(typeof check.message).toBe('string');
}
}, 30_000);
});
// ─────────────────────────────────────────────────────────────────
// Parallel Import
// ─────────────────────────────────────────────────────────────────
describeE2E('E2E: Parallel Import', () => {
afterAll(teardownDB);
const cliCwd = join(import.meta.dir, '../..');
const cliEnv = () => ({ ...process.env, DATABASE_URL: process.env.DATABASE_URL!, GBRAIN_DATABASE_URL: process.env.DATABASE_URL! });
function initCli() {
Bun.spawnSync({
cmd: ['bun', 'run', 'src/cli.ts', 'init', '--non-interactive', '--url', process.env.DATABASE_URL!],
cwd: cliCwd, env: cliEnv(), timeout: 15_000,
});
}
// Store sequential baseline for comparison
let seqPageCount: number;
let seqChunkCount: number;
let seqPageSlugs: string[];
test('sequential baseline: import all fixtures', async () => {
await setupDB();
initCli();
const result = Bun.spawnSync({
cmd: ['bun', 'run', 'src/cli.ts', 'import', '--no-embed', FIXTURES_PATH],
cwd: cliCwd,
env: cliEnv(),
timeout: 30_000,
});
expect(result.exitCode).toBe(0);
const stats = await callOp('get_stats') as any;
seqPageCount = stats.page_count;
seqChunkCount = stats.chunk_count;
const pages = await callOp('list_pages', { limit: 200 }) as any[];
seqPageSlugs = pages.map((p: any) => p.slug).sort();
expect(seqPageCount).toBeGreaterThan(0);
expect(seqChunkCount).toBeGreaterThan(0);
}, 60_000);
test('parallel import with --workers 2 matches sequential page count', async () => {
await setupDB();
initCli();
const result = Bun.spawnSync({
cmd: ['bun', 'run', 'src/cli.ts', 'import', '--no-embed', '--workers', '2', FIXTURES_PATH],
cwd: cliCwd,
env: cliEnv(),
timeout: 30_000,
});
expect(result.exitCode).toBe(0);
const stats = await callOp('get_stats') as any;
expect(stats.page_count).toBe(seqPageCount);
}, 60_000);
test('parallel import has same chunk count (no duplicates)', async () => {
const stats = await callOp('get_stats') as any;
expect(stats.chunk_count).toBe(seqChunkCount);
});
test('parallel import has same page slugs', async () => {
const pages = await callOp('list_pages', { limit: 200 }) as any[];
const parSlugs = pages.map((p: any) => p.slug).sort();
expect(parSlugs).toEqual(seqPageSlugs);
});
test('no duplicate pages from concurrent writes', async () => {
const conn = getConn();
const dupes = await conn.unsafe(`
SELECT slug, count(*) as n FROM pages GROUP BY slug HAVING count(*) > 1
`);
expect(dupes.length).toBe(0);
});
test('no duplicate chunks from concurrent writes', async () => {
const conn = getConn();
const dupes = await conn.unsafe(`
SELECT page_id, chunk_index, count(*) as n
FROM content_chunks
GROUP BY page_id, chunk_index
HAVING count(*) > 1
`);
expect(dupes.length).toBe(0);
});
test('parallel import with --workers 4 also works', async () => {
await setupDB();
initCli();
const result = Bun.spawnSync({
cmd: ['bun', 'run', 'src/cli.ts', 'import', '--no-embed', '--workers', '4', FIXTURES_PATH],
cwd: cliCwd,
env: cliEnv(),
timeout: 30_000,
});
expect(result.exitCode).toBe(0);
const stats = await callOp('get_stats') as any;
expect(stats.page_count).toBe(seqPageCount);
expect(stats.chunk_count).toBe(seqChunkCount);
}, 60_000);
test('re-import with workers is idempotent', async () => {
// Import again on top of existing data
const result = Bun.spawnSync({
cmd: ['bun', 'run', 'src/cli.ts', 'import', '--no-embed', '--workers', '2', FIXTURES_PATH],
cwd: cliCwd,
env: cliEnv(),
timeout: 30_000,
});
expect(result.exitCode).toBe(0);
const stats = await callOp('get_stats') as any;
expect(stats.page_count).toBe(seqPageCount);
expect(stats.chunk_count).toBe(seqChunkCount);
}, 60_000);
});
// ─────────────────────────────────────────────────────────────────
// Performance Baselines
// ─────────────────────────────────────────────────────────────────
describeE2E('E2E: Performance Baselines', () => {
beforeAll(async () => {
await setupDB();
}, 30_000);
afterAll(teardownDB);
test('import + search + link performance', async () => {
const [_, importMs] = await time(importFixtures);
const searchTimes: number[] = [];
for (const q of ['NovaMind', 'hybrid search', 'Stanford', 'investor', 'compiled truth']) {
const [__, ms] = await time(() => callOp('search', { query: q }));
searchTimes.push(ms);
}
const [___, linkMs] = await time(async () => {
await callOp('add_link', { from: 'people/sarah-chen', to: 'companies/novamind' });
await callOp('get_backlinks', { slug: 'companies/novamind' });
});
searchTimes.sort((a, b) => a - b);
const p50 = searchTimes[Math.floor(searchTimes.length * 0.5)];
const p99 = searchTimes[searchTimes.length - 1];
console.log('\n Performance Baselines:');
console.log(` Import 13 fixtures: ${importMs.toFixed(0)}ms`);
console.log(` Search p50: ${p50.toFixed(0)}ms`);
console.log(` Search p99: ${p99.toFixed(0)}ms`);
console.log(` Link + backlink: ${linkMs.toFixed(0)}ms`);
}, 30_000);
});