modified: .gitlab-ci.yml modified: bench/qa_questions.txt modified: bench/qa_sweep.py modified: bench/run.sh modified: docs/TICKETS.md modified: docs/_source/README.md modified: docs/_source/_ext/makefile_targets.py modified: docs/_source/api/cli.rst modified: docs/_source/api/distill.rst modified: docs/_source/api/mesh.rst modified: docs/_source/api/qa.rst modified: docs/_source/api/retrieval.rst modified: docs/_source/api/storage.rst modified: docs/_source/api/substrate.rst modified: docs/_source/concepts.rst modified: docs/_source/conf.py modified: docs/_source/cookbook.rst modified: docs/_source/index.rst modified: docs/_source/license.rst modified: docs/_source/quickstart.rst modified: docs/bench-maxing.md modified: docs/benchmarks.md modified: docs/cti-architecture.md modified: docs/diagrams/aborist-modules.dot modified: docs/diagrams/aborist-modules.svg modified: docs/diagrams/mesh-data-flow.dot modified: docs/diagrams/mesh-epoch-lifecycle.dot modified: docs/diagrams/mesh-epoch-lifecycle.svg modified: docs/diagrams/mesh-group-decisions.dot modified: docs/diagrams/mesh-group-decisions.svg modified: docs/diagrams/mesh-identity-stack.dot modified: docs/diagrams/mesh-secret-envelope.dot modified: docs/mesh.md modified: docs/qa-modes-bench.md modified: docs/seven-point-program.md modified: docs/tickets/ticket-000001-retrieval-keywords-audit-gap.md modified: docs/tickets/ticket-000002-reference-frame-polarity-contract.md modified: docs/tickets/ticket-000003-anchor-class-warrant.md modified: docs/tickets/ticket-000005-label-ladder-migration.md modified: docs/tickets/ticket-000006-bench-emergent-findings.md modified: docs/tickets/ticket-000007-query-layer-hyphen-fold.md modified: docs/tickets/ticket-000008-broad-quantifier-preflight-guard.md modified: docs/tickets/ticket-000009-quantifier-preflight-dag-binding.md modified: docs/tickets/ticket-000010-metacognition-preflight-guard.md modified: docs/tickets/ticket-000011-soft-preflight-hint-sidecar.md modified: scripts/backfill_concepts.py modified: scripts/bench_emergent.py modified: tests/crawler/test_async_web_fetcher.py modified: tests/crawler/test_bridge.py modified: tests/crawler/test_web_fetch.py modified: tests/test_bench_qa_sweep.py modified: tests/test_burn.py modified: tests/test_burn_doc.py modified: tests/test_claim_lattice.py modified: tests/test_cli_render.py modified: tests/test_compress.py modified: tests/test_concepts.py modified: tests/test_dag.py modified: tests/test_directives.py modified: tests/test_distill.py modified: tests/test_distill_recursive.py modified: tests/test_evict.py modified: tests/test_frame.py modified: tests/test_grok_source.py modified: tests/test_html_source.py modified: tests/test_ingest.py modified: tests/test_inspect.py modified: tests/test_journal.py modified: tests/test_keys.py modified: tests/test_llm_context_base.py modified: tests/test_merkle.py modified: tests/test_mesh.py modified: tests/test_mesh_aead.py modified: tests/test_mesh_chain.py modified: tests/test_mesh_cli.py modified: tests/test_mesh_cli_pull.py modified: tests/test_mesh_wire.py modified: tests/test_mesh_wire_e2e.py modified: tests/test_metacognition.py modified: tests/test_migration_audit_mode.py modified: tests/test_providence_source.py modified: tests/test_qa.py modified: tests/test_qa_quality_live.py modified: tests/test_quantifier_caps.py modified: tests/test_quantifier_classifier.py modified: tests/test_quantifier_phase4.py modified: tests/test_quantifier_reminder.py modified: tests/test_query.py modified: tests/test_reclassify.py modified: tests/test_repair.py modified: tests/test_resume.py modified: tests/test_snapshot.py modified: tests/test_soft_preflight.py modified: tests/test_tfidf.py modified: tests/test_vcs_source.py modified: tests/test_verify.py modified: tests/test_verify_json.py modified: tests/test_versioned_ingest.py modified: tests/test_warrant.py modified: tests/test_wikipedia_old.py modified: tests/test_wikipedia_xml.py modified: tests/test_wikitext.py
109 lines
4 KiB
Python
109 lines
4 KiB
Python
"""Forward migration: legacy providence_cache shards add audit_mode columns.
|
|
|
|
Regression for a defect caught on 2026-04-28: SCHEMA_SQL referenced the
|
|
new audit_mode column inside a CREATE INDEX statement. CREATE TABLE IF
|
|
NOT EXISTS skips the table on legacy DBs, so the column doesn't yet exist
|
|
when the index statement runs — the whole executescript aborts.
|
|
|
|
The fix moved CREATE INDEX idx_providence_audit into _migrate_audit_mode.
|
|
This test asserts: a DB with the pre-audit-mode schema can be opened
|
|
through connect() & emerges with all four new columns + the index.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
import sqlite3
|
|
|
|
from arborist.store import connect
|
|
|
|
|
|
# Pre-v9.8-audit-mode providence_cache (snapshot of the schema before the
|
|
# audit_mode rollout). Mirrors the columns observed in real legacy shards.
|
|
LEGACY_SCHEMA = """
|
|
PRAGMA journal_mode = WAL;
|
|
CREATE TABLE providence_cache (
|
|
cache_key TEXT PRIMARY KEY,
|
|
source_root TEXT NOT NULL,
|
|
document_uri TEXT NOT NULL,
|
|
question_hash TEXT NOT NULL,
|
|
question_text TEXT NOT NULL,
|
|
answer_text TEXT NOT NULL,
|
|
merkle_proof TEXT NOT NULL,
|
|
model_profile_hash TEXT NOT NULL,
|
|
conversation_hash TEXT NOT NULL,
|
|
governance_policy_hash TEXT NOT NULL,
|
|
schema_version TEXT NOT NULL,
|
|
canonicalization_version TEXT NOT NULL,
|
|
chunking_version TEXT NOT NULL,
|
|
falsification_state TEXT NOT NULL DEFAULT 'live',
|
|
chain TEXT NOT NULL DEFAULT 'private',
|
|
audit_event_hash TEXT,
|
|
created_at INTEGER NOT NULL,
|
|
last_hit_at INTEGER,
|
|
hit_count INTEGER NOT NULL DEFAULT 0
|
|
);
|
|
"""
|
|
|
|
|
|
def _seed_legacy(path) -> None:
|
|
raw = sqlite3.connect(path)
|
|
raw.executescript(LEGACY_SCHEMA)
|
|
# One pre-existing row simulating a real legacy record.
|
|
raw.execute(
|
|
"INSERT INTO providence_cache "
|
|
"(cache_key, source_root, document_uri, question_hash, question_text, "
|
|
" answer_text, merkle_proof, model_profile_hash, conversation_hash, "
|
|
" governance_policy_hash, schema_version, canonicalization_version, "
|
|
" chunking_version, audit_event_hash, created_at) "
|
|
"VALUES ('legacy_key', 'root', 'corpus://x', 'qh', 'Q?', 'A.', '{}', "
|
|
" 'mh', 'ch', 'gh', 'v9.8.0', 'norm-v1', 'tok-512-v1', NULL, 0)"
|
|
)
|
|
raw.commit()
|
|
raw.close()
|
|
|
|
|
|
def test_legacy_providence_cache_migrates(tmp_path):
|
|
db = tmp_path / "legacy.db"
|
|
_seed_legacy(db)
|
|
|
|
conn = connect(db)
|
|
try:
|
|
cols = {r["name"] for r in conn.execute("PRAGMA table_info(providence_cache)")}
|
|
assert {"audit_mode", "n_quotes", "n_verified", "unverified_quotes"} <= cols
|
|
|
|
# Pre-existing row inherits the safest default — UNGROUNDED.
|
|
row = conn.execute(
|
|
"SELECT audit_mode, n_quotes, n_verified, unverified_quotes "
|
|
"FROM providence_cache WHERE cache_key='legacy_key'"
|
|
).fetchone()
|
|
assert row["audit_mode"] == "UNGROUNDED"
|
|
assert row["n_quotes"] == 0
|
|
assert row["n_verified"] == 0
|
|
assert row["unverified_quotes"] is None
|
|
|
|
# Index is in place after migration.
|
|
idx_names = {
|
|
r["name"]
|
|
for r in conn.execute(
|
|
"SELECT name FROM sqlite_master WHERE type='index'"
|
|
)
|
|
}
|
|
assert "idx_providence_audit" in idx_names
|
|
finally:
|
|
conn.close()
|
|
|
|
|
|
def test_migration_idempotent(tmp_path):
|
|
"""Two consecutive opens of the same legacy DB don't ALTER TABLE twice."""
|
|
db = tmp_path / "twice.db"
|
|
_seed_legacy(db)
|
|
|
|
connect(db).close()
|
|
# Second open: PRAGMA table_info already shows the columns; ALTER TABLE
|
|
# would error with "duplicate column name" if we didn't gate it.
|
|
conn = connect(db)
|
|
try:
|
|
cols = {r["name"] for r in conn.execute("PRAGMA table_info(providence_cache)")}
|
|
assert "audit_mode" in cols
|
|
finally:
|
|
conn.close()
|