THE DEFAULT FLIP (ruled on proven evidence — at-ack survived 301/301 acked-writes-through-power-cut in block-layer fault injection; deferred tree authority demonstrably loses flush-covered acks): a brain with NO stored authority artifact now ADOPTS LOG AUTHORITY AT OPEN. The oracle gates the flip exactly as the guarded adoption path always did — curable divergences baseline-backfilled, the flip lands ONLY on a green verdict — and a brain that cannot verify STAYS tree-authoritative loudly, with the refusal recorded on the switch artifact so subsequent opens are cheap. config logAuthority: 'defer' is the explicit documented opt-out (no automatic adoption; declared flush-window loss; adoptLogAuthority() flips later). A stored artifact always wins. RELEASES.md carries the posture. Two standing .fails debt pins FLIP TO HOLDING under the default: the at-ack crash-survival gap and the ack-at-log durability target — both now permanent asserted truths, not aspirations. POWER-CUT THROW SITES (fault-injection findings, brainy-alone config): - A manifest-listed-but-unloadable column segment QUARANTINES at discovery (loud once, counted always, quarantinedSegments() exposed for the heal) and the field serves its remaining segments DEGRADED — never a raw throw killing every query on the field. Real storage faults still propagate untouched. - Torn generation artifacts (NaN/garbage in manifest or counter) DISCARD with narration at the store's open and recovery re-derives — plus a defensive finite-integer guard at the init consumer. Never a RangeError killing an open. THE LOUD TORN-RECORD CONTRACT: an existing-but-unparseable stored record now surfaces as a typed, counted TornRecordError on every entity-read surface (including fifteen previously-blind per-item batch catches); ENOENT stays clean-absent; artifact readers with designed absent-recovery keep null-tolerance behind the loud floor. Disk corruption can no longer read as silent data invisibility. Suite migration: the default's pins inverted deliberately, generation baselines made relative, quarantine-contract pins rewritten to the ruled behavior. Gates: tsc 0 · unit 2065/2065 (159 files) · integration 826 (93 files) · conformance 31/31 · kill-matrix 15/15 · torn-open guards 2/2.
114 lines
5.1 KiB
TypeScript
114 lines
5.1 KiB
TypeScript
/**
|
|
* @module tests/integration/log-authority-adopt
|
|
* @description THE SANCTIONED FLIP, END TO END: adoptLogAuthority() cures
|
|
* its own curable divergences by baseline backfill — a FRESH brain (whose
|
|
* generation-0 VFS root never entered the log) flips WITHOUT any manual
|
|
* white-box backfill. Before this, no fresh brain could ever flip: the
|
|
* oracle reported the bootstrap row as pre-log-record and the flip refused.
|
|
* Log-AHEAD divergences stay incurable and refuse loudly (witness wins).
|
|
*/
|
|
import { describe, it, expect, afterEach } from 'vitest'
|
|
import { mkdtempSync, rmSync } from 'node:fs'
|
|
import { tmpdir } from 'node:os'
|
|
import { join } from 'node:path'
|
|
import { Brainy } from '../../src/index.js'
|
|
import { NounType } from '../../src/types/graphTypes.js'
|
|
|
|
const dirs: string[] = []
|
|
const brains: Brainy[] = []
|
|
|
|
afterEach(async () => {
|
|
for (const b of brains.splice(0)) await b.close().catch(() => {})
|
|
for (const d of dirs.splice(0)) rmSync(d, { recursive: true, force: true })
|
|
})
|
|
|
|
async function open(dir: string, logAuthority?: 'adopt' | 'defer'): Promise<Brainy> {
|
|
const b = new Brainy({
|
|
storage: { type: 'filesystem', path: dir },
|
|
requireSubtype: false,
|
|
...(logAuthority ? { logAuthority } : {})
|
|
})
|
|
await b.init()
|
|
brains.push(b)
|
|
return b
|
|
}
|
|
|
|
describe('adoptLogAuthority — the sanctioned flip with self-backfill', () => {
|
|
it('a fresh brain flips directly: the backfill cures the generation-0 baseline', async () => {
|
|
const dir = mkdtempSync(join(tmpdir(), 'brainy-adopt-'))
|
|
dirs.push(dir)
|
|
const brain = await open(dir)
|
|
const idA = await brain.add({ data: 'first row', type: NounType.Document, metadata: { n: 1 } })
|
|
await brain.add({ data: 'second row', type: NounType.Document, metadata: { n: 2 } })
|
|
await brain.flush()
|
|
|
|
const report = await brain.adoptLogAuthority()
|
|
expect(report.verdict, 'the flip receipt is a green oracle').toBe('green')
|
|
expect(brain.logAuthority().authority).toBe('log')
|
|
|
|
// The switch survives reopen; the brain keeps serving identically.
|
|
await brain.close()
|
|
brains.pop()
|
|
const reopened = await open(dir)
|
|
expect(reopened.logAuthority().authority).toBe('log')
|
|
expect(await reopened.get(idA), 'records serve at reopen').toBeTruthy()
|
|
const rows = await reopened.find({ where: {}, limit: 10 })
|
|
expect(rows.length, 'match-all serves on the reopened flipped brain').toBeGreaterThanOrEqual(2)
|
|
// And a fresh oracle run on the flipped brain stays green.
|
|
expect((await reopened.verifyLogAuthority()).verdict).toBe('green')
|
|
}, 120000)
|
|
|
|
it('witness drift (out-of-generation canonical rewrite) is cured by the backfill, then flips', async () => {
|
|
const dir = mkdtempSync(join(tmpdir(), 'brainy-adopt-drift-'))
|
|
dirs.push(dir)
|
|
const brain = await open(dir)
|
|
const id = await brain.add({ data: 'drifter', type: NounType.Document, metadata: { v: 1 } })
|
|
await brain.flush()
|
|
|
|
// Simulate maintenance rewriting canonical OUTSIDE a generation (the
|
|
// witness-drift class): mutate the stored record directly.
|
|
const storage = (brain as unknown as {
|
|
storage: {
|
|
readNounRaw(id: string): Promise<{ metadata: unknown; vector: unknown }>
|
|
writeNounRaw(id: string, r: { metadata: unknown; vector: unknown }): Promise<void>
|
|
}
|
|
}).storage
|
|
const raw = await storage.readNounRaw(id)
|
|
await storage.writeNounRaw(id, {
|
|
metadata: { ...(raw.metadata as Record<string, unknown>), drifted: true },
|
|
vector: raw.vector
|
|
})
|
|
expect((await brain.verifyLogAuthority()).verdict, 'drift detected').toBe('red')
|
|
|
|
const report = await brain.adoptLogAuthority()
|
|
expect(report.verdict).toBe('green')
|
|
expect(brain.logAuthority().authority).toBe('log')
|
|
}, 120000)
|
|
|
|
// THE OPT-OUT CONTRACT (`logAuthority: 'defer'`): no automatic adoption —
|
|
// the fresh brain stays tree-authoritative and writes NO artifact (a
|
|
// deferred posture is config, not stored state); the EXPLICIT
|
|
// adoptLogAuthority() then flips it exactly as before the fleet default.
|
|
it("opt-out: 'defer' stays tree with no artifact until the explicit adoptLogAuthority() flips it", async () => {
|
|
const dir = mkdtempSync(join(tmpdir(), 'brainy-adopt-defer-'))
|
|
dirs.push(dir)
|
|
const brain = await open(dir, 'defer')
|
|
await brain.add({ data: 'deferred row', type: NounType.Document, metadata: { n: 1 } })
|
|
await brain.flush()
|
|
|
|
expect(brain.logAuthority().authority, "'defer' skips open-time adoption").toBe('tree')
|
|
const storage = (brain as unknown as {
|
|
storage: { readRawObject(p: string): Promise<unknown | null> }
|
|
}).storage
|
|
const artifact = await storage.readRawObject('_system/log-authority.json').catch(() => null)
|
|
expect(artifact, "'defer' writes no authority artifact").toBeNull()
|
|
|
|
const report = await brain.adoptLogAuthority()
|
|
expect(report.verdict, 'the explicit flip still lands on green').toBe('green')
|
|
expect(brain.logAuthority().authority).toBe('log')
|
|
const stored = (await storage.readRawObject('_system/log-authority.json')) as {
|
|
authority?: string
|
|
} | null
|
|
expect(stored?.authority, 'the explicit flip stores the artifact').toBe('log')
|
|
}, 120000)
|
|
})
|