open-brainy/tests/integration/lens-consistency.test.ts
David Snelling 24bf6cdbc5
All checks were successful
CI / Node 22 (push) Successful in 12m9s
CI / Node 24 (push) Successful in 12m4s
CI / Bun (latest) (push) Successful in 12m52s
feat(namespace): NO SPECIAL NAMES + storage fidelity — the ruled completion of the field-addressing law
The write side of the law, ruled 2026-08-03: data is either in main space
where developers can use anything, or it is in system.*.

- The reserved-name write door DIES: add/update/relate/updateRelation
  metadata bags accept EVERY name (confidence, type, id, data, level,
  content, ...) as ordinary user fields — indexed, filterable, sortable,
  aggregatable, identical to any other field. The remap/enforce/warn
  machinery, the reservedFieldPolicy config (now a typed init refusal),
  and the compile-time metadata key bans are all removed. The one write
  refusal left: keys spelled 'system.*' (namespace forgery), now enforced
  on all four write doors.
- STORED RECORDS GO NESTED (v2): engine fields top-level, the user bag
  nested verbatim under 'metadata', sealed by a format stamp — by-name
  storage discrimination is unsound once colliders are admitted. Legacy
  flat records stay readable forever through the shape-aware splitters
  (sound for them: the old door refused colliders). Time travel rides the
  same split (generation store snapshots whole records).
- Name-based index exclusions DIE: user frame indexes every name; the
  excludeFields/indexedFields knobs and their silent-[] holes are gone;
  bulk-payload protection is value-shape only, uniform across names.
- Consumer-sweep findings fixed in the same wave: per-type counts read
  the frozen 'system.type' column (addToIndex sort, affinity tracking,
  cold-count rehydration, VFS type bitmaps — legacy 'noun' fallback for
  pre-rebuild reads); resolveHiddenIds addresses 'system.visibility'
  (bare 'visibility' was a silent no-op under the law — VFS/system
  entities leaked into default reads).
- Fidelity fallout fixed in the owning layers: readEntityFieldAddress
  reads the bag first (colliders were absent-shadowed by its own guard)
  and never serves system addresses from the bag; blob history refs read
  the bag shape-aware; migration transforms now receive ONE normalized
  view (engine fields + nested bag) regardless of stored era, and stray
  flat-habit keys refuse with the fix in the message.
- THE REOPEN-COLLIDER CONFORMANCE CASE (required before any RC counts as
  gates-green): all ten collider names + plumbing names written as user
  fields, verified verbatim + queryable across live reads, flush+reopen,
  a forced epoch rebuild, and asOf time travel; relation mirror; forgery
  refusals; legacy flat-record compat. 8/8 green.

Gates: unit 1901/1901 (exit 0) · integration 758 (exit 0) · conformance
27/27 (exit 0) · consumer test sweep migrated (10 files).
2026-08-03 16:59:32 -07:00

141 lines
6.5 KiB
TypeScript

/**
* @module tests/integration/lens-consistency
* @description The three metadata "lenses" over one corpus must agree with
* canonical ground truth id-for-id, warm AND after a cold reopen:
* - combined: find({ type: T, where: { 'system.subtype': S } })
* - subtype-only: find({ where: { 'system.subtype': S } })
* - type-only: find({ type: T })
* Ported from the fresh-brain probe that closed the type+subtype lens-drop
* investigation (a restored pre-8.2.2 torn capture had entities visible to the
* subtype-only lens but dropped by the combined lens — "0 of 2 migrated, all
* gates green"). The corpus is seeded through the REAL write API — never
* restored bytes — which is what made the original datapoint decisive. The
* invariants: every lens matches an unfiltered canonical scan exactly (no
* missing ids, no extras) and combined ⊆ subtype-only always holds.
*/
import { describe, it, expect, beforeAll, afterAll } from 'vitest'
import * as fs from 'node:fs'
import * as os from 'node:os'
import * as path from 'node:path'
import { Brainy } from '../../src/index.js'
/** The corpus: 7 (type, subtype) pairs, uneven counts, incl. the incident's 2-of-a-pair shape. */
const CORPUS: Array<{ type: string; subtype: string; count: number }> = [
{ type: 'proposition', subtype: 'decision', count: 2 }, // the incident shape: "0 of 2"
{ type: 'concept', subtype: 'decision', count: 3 },
{ type: 'task', subtype: 'decision', count: 2 },
{ type: 'concept', subtype: 'action', count: 4 },
{ type: 'message', subtype: 'note', count: 5 },
{ type: 'message', subtype: 'ship', count: 3 },
{ type: 'document', subtype: 'guide', count: 4 }
]
/** Canonical ground truth: unfiltered enumeration, post-filtered IN THE TEST. */
async function groundTruth(
brain: any,
match: { type?: string; subtype?: string }
): Promise<Set<string>> {
const ids = new Set<string>()
let cursor: string | undefined
for (;;) {
const page = await brain.storage.getNounsWithPagination({ limit: 500, cursor })
for (const noun of page.items) {
// Hydrated shape: `type`/`subtype` are TOP-LEVEL; `metadata` holds only
// custom user fields (vfsType is one — the VFS plumbing marker).
const n = noun as any
if (n.metadata?.vfsType) continue // VFS plumbing is not corpus
if (!n.type || !n.subtype) continue
if (match.type && n.type !== match.type) continue
if (match.subtype && n.subtype !== match.subtype) continue
ids.add(n.id)
}
if (!page.hasMore) break
cursor = page.nextCursor
}
return ids
}
const idSet = (results: Array<{ id: string }>): Set<string> => new Set(results.map((r) => r.id))
/** Every lens vs ground truth, id-for-id, for every pair in the corpus. */
async function assertAllLenses(brain: any): Promise<void> {
const types = [...new Set(CORPUS.map((c) => c.type))]
const subtypes = [...new Set(CORPUS.map((c) => c.subtype))]
for (const { type, subtype } of CORPUS) {
// system.subtype — subtype is an add()/update() param (an engine scalar),
// never a user metadata field; bare 'subtype' now addresses the user's
// own metadata bag under the sealed field-addressing law.
const combined = idSet(await brain.find({ type, where: { 'system.subtype': subtype }, limit: 1000 }))
const subtypeOnly = idSet(await brain.find({ where: { 'system.subtype': subtype }, limit: 1000 }))
const truthPair = await groundTruth(brain, { type, subtype })
const truthSubtype = await groundTruth(brain, { subtype })
expect([...combined].sort()).toEqual([...truthPair].sort()) // no drops, no extras
expect([...subtypeOnly].sort()).toEqual([...truthSubtype].sort())
for (const id of combined) expect(subtypeOnly.has(id)).toBe(true) // combined ⊆ subtype-only
}
for (const type of types) {
const typeOnly = idSet(await brain.find({ type, limit: 1000 }))
const truthType = await groundTruth(brain, { type })
expect([...typeOnly].sort()).toEqual([...truthType].sort())
}
// Count cross-check against the corpus definition itself.
for (const subtype of subtypes) {
const expected = CORPUS.filter((c) => c.subtype === subtype).reduce((s, c) => s + c.count, 0)
const got = (await brain.find({ where: { 'system.subtype': subtype }, limit: 1000 })).length
expect(got).toBe(expected)
}
}
describe('lens consistency — combined vs subtype-only vs canonical ground truth', () => {
let dir: string
let brain: any
beforeAll(async () => {
process.env.BRAINY_DETERMINISTIC_EMBEDDINGS = 'true'
dir = fs.mkdtempSync(path.join(os.tmpdir(), 'brainy-lens-'))
brain = new Brainy({ requireSubtype: false, storage: { type: 'filesystem', path: dir }, silent: true, dimensions: 384 })
await brain.init()
// Seed through the REAL write API — never restored bytes.
let i = 0
for (const { type, subtype, count } of CORPUS) {
for (let k = 0; k < count; k++) {
await brain.add({ data: `${type} ${subtype} ${i++}`, type, subtype, metadata: { k } })
}
}
await brain.flush()
})
afterAll(async () => {
await brain.close?.().catch(() => {})
fs.rmSync(dir, { recursive: true, force: true })
})
it('WARM: all lenses agree with ground truth id-for-id', async () => {
await assertAllLenses(brain)
})
it('COLD REOPEN: all lenses still agree after close + reopen from disk', async () => {
await brain.close()
brain = new Brainy({ requireSubtype: false, storage: { type: 'filesystem', path: dir }, silent: true, dimensions: 384 })
await brain.init()
await assertAllLenses(brain)
})
it('after an update() flips type AND subtype, every lens tracks the move exactly', async () => {
// The historical cross-bucket-staleness path: change (concept, action) -> (task, review).
const victims = await brain.find({ type: 'concept', where: { 'system.subtype': 'action' }, limit: 1 })
expect(victims.length).toBe(1)
const id = victims[0].id
await brain.update({ id, type: 'task', subtype: 'review' })
const oldCombined = idSet(await brain.find({ type: 'concept', where: { 'system.subtype': 'action' }, limit: 1000 }))
expect(oldCombined.has(id)).toBe(false) // unposted from the old buckets
const newCombined = idSet(await brain.find({ type: 'task', where: { 'system.subtype': 'review' }, limit: 1000 }))
expect(newCombined.has(id)).toBe(true) // posted to the new buckets
const subtypeOnly = idSet(await brain.find({ where: { 'system.subtype': 'review' }, limit: 1000 }))
expect(subtypeOnly.has(id)).toBe(true)
})
})