hermes-agent/tests/hermes_cli/test_kanban_db_repair.py
Teknium 60cfa11136 feat(kanban): add hermes kanban repair CLI verb
Adds kanban_db.repair_db() — a structured, non-raising wrapper around
the same narrow repair policy as the connect-time guard: probe with
PRAGMA integrity_check under the board's cross-process init flock;
quarantine the corrupt bytes FIRST via the content-addressed backup;
REINDEX only when every integrity message is index-scoped; re-check;
report ok / repaired / corrupt / missing. Locked/busy OperationalError
still propagates raw (a locked healthy DB is not corruption and gets
no quarantine), and a repair invalidates the per-process healthy-path
cache so the next connect() re-probes.

The CLI verb reports status human-readably (or --json), exits 0 for
ok/repaired/missing and 1 when the DB is still corrupt (non-index
corruption stays fail-closed with manual-recovery guidance). It
dispatches BEFORE kanban_command's auto-init: init_db() raises
KanbanDbCorruptError on a corrupt board, which previously would have
made a repair verb unreachable on exactly the boards that need it.

CLI tests drive the real argparse surface (build_parser +
kanban_command) against real corrupted SQLite fixtures.
2026-07-21 12:41:14 -07:00

509 lines
19 KiB
Python

"""Tests for kanban DB corruption repair, backup retention, WAL checkpointing,
and the ``hermes kanban repair`` CLI verb."""
from __future__ import annotations
import json
import sqlite3
from pathlib import Path
import pytest
from hermes_cli import kanban_db as kb
# ---------------------------------------------------------------------------
# Fixture helpers
# ---------------------------------------------------------------------------
def _build_board_db(db_path: Path, tasks: int = 12) -> None:
"""Create a real board DB with data so indexes have entries."""
kb._INITIALIZED_PATHS.discard(str(db_path.resolve()))
kb.init_db(db_path=db_path)
with kb.connect(db_path=db_path) as conn:
for i in range(tasks):
kb.create_task(conn, title=f"task-{i}")
conn.close()
# Force the next connect() to re-run the health guard.
kb._INITIALIZED_PATHS.discard(str(db_path.resolve()))
def _corrupt_index(db_path: Path, index_name: str) -> None:
"""Make ``index_name`` disagree with its table → 'wrong # of entries'.
writable_schema approach: temporarily rewrite the index's schema SQL to
a partial index matching no rows, REINDEX under that lie (emptying the
index b-tree), then restore the original SQL. integrity_check now sees a
non-partial index whose b-tree is missing every row — exactly the
index-scoped corruption class ('wrong # of entries in index <name>' +
'row N missing from index <name>') with intact table b-trees.
"""
conn = sqlite3.connect(db_path, isolation_level=None)
original_sql = conn.execute(
"SELECT sql FROM sqlite_master WHERE name = ?", (index_name,)
).fetchone()[0]
lie = original_sql + " WHERE 0"
conn.execute("PRAGMA writable_schema=ON")
conn.execute(
"UPDATE sqlite_master SET sql = ? WHERE name = ?", (lie, index_name)
)
conn.execute("PRAGMA writable_schema=OFF")
conn.close()
# New connection so the rewritten schema is what REINDEX parses.
conn = sqlite3.connect(db_path, isolation_level=None)
conn.execute(f'REINDEX "{index_name}"')
conn.execute("PRAGMA writable_schema=ON")
conn.execute(
"UPDATE sqlite_master SET sql = ? WHERE name = ?",
(original_sql, index_name),
)
conn.execute("PRAGMA writable_schema=OFF")
conn.close()
kb._INITIALIZED_PATHS.discard(str(db_path.resolve()))
def _write_page_corrupt_db(path: Path) -> bytes:
"""Valid SQLite header, garbage pages — NON-index corruption class."""
header = b"SQLite format 3\x00" + b"\x10\x00\x02\x02\x00\x40\x20\x20"
header += b"\x00\x00\x00\x0c\x00\x00\x23\x46\x00\x00\x00\x00"
header = header.ljust(100, b"\x00")
blob = header + b"definitely not a valid sqlite page \x00\x01\x02\x03" * 64
path.write_bytes(blob)
kb._INITIALIZED_PATHS.discard(str(path.resolve()))
return blob
def _integrity_messages(db_path: Path) -> list[str]:
conn = sqlite3.connect(db_path)
try:
return [r[0] for r in conn.execute("PRAGMA integrity_check").fetchall()]
finally:
conn.close()
# ---------------------------------------------------------------------------
# Index-error parsing (generic, no hardcoded index names)
# ---------------------------------------------------------------------------
def test_repairable_index_names_parses_generically():
messages = [
"wrong # of entries in index idx_anything_at_all",
"row 3 missing from index idx_anything_at_all",
"wrong # of entries in index some_other_index",
]
assert kb._repairable_index_names(messages) == [
"idx_anything_at_all", "some_other_index",
]
@pytest.mark.parametrize("messages", [
[],
["ok"],
["database disk image is malformed"],
["*** in database main ***", "Page 5: btreeInitPage() returns error code 11"],
# Mixed: one repairable line + one non-index line → NOT repairable.
["wrong # of entries in index idx_tasks_status",
"database disk image is malformed"],
])
def test_repairable_index_names_rejects_non_index_classes(messages):
assert kb._repairable_index_names(messages) is None
# ---------------------------------------------------------------------------
# Narrow auto-repair in the connect-time guard
# ---------------------------------------------------------------------------
def test_connect_auto_repairs_index_only_corruption(tmp_path, caplog):
"""Index-only integrity errors are REINDEXed and connect proceeds."""
import logging
db_path = tmp_path / "kanban.db"
_build_board_db(db_path)
_corrupt_index(db_path, "idx_tasks_status")
# Precondition: the fixture really produced the index-scoped class.
messages = _integrity_messages(db_path)
assert any(m.startswith("wrong # of entries in index") for m in messages)
assert kb._repairable_index_names(messages) == ["idx_tasks_status"]
with caplog.at_level(logging.WARNING, logger="hermes_cli.kanban_db"):
conn = kb.connect(db_path=db_path)
try:
# DB is clean again and data survived.
row = conn.execute("PRAGMA integrity_check").fetchone()
assert row[0] == "ok"
titles = {t.title for t in kb.list_tasks(conn)}
assert "task-0" in titles and "task-11" in titles
finally:
conn.close()
assert "auto-repaired via REINDEX" in caplog.text
# The corrupt bytes were quarantined BEFORE the repair mutated the file.
backups = list(tmp_path.glob("kanban.db.corrupt.*.bak"))
assert len(backups) == 1
backup_messages_db = backups[0]
# The backup still exhibits the pre-repair corruption.
pre = _integrity_messages(backup_messages_db)
assert any(m.startswith("wrong # of entries in index") for m in pre)
def test_connect_still_fails_closed_on_page_corruption(tmp_path):
"""Non-index corruption keeps the exact fail-closed contract."""
db_path = tmp_path / "kanban.db"
original = _write_page_corrupt_db(db_path)
with pytest.raises(kb.KanbanDbCorruptError) as excinfo:
kb.connect(db_path=db_path)
err = excinfo.value
assert err.backup_path is not None and err.backup_path.exists()
# No repair was attempted: original bytes untouched on the live path.
assert db_path.read_bytes() == original
def test_guard_fails_closed_when_reindex_does_not_clean(tmp_path, monkeypatch):
"""If the post-REINDEX re-check is not clean, raise exactly as today."""
db_path = tmp_path / "kanban.db"
_build_board_db(db_path)
_corrupt_index(db_path, "idx_tasks_status")
monkeypatch.setattr(
kb, "_attempt_index_reindex_repair",
lambda path, names: (False, ["wrong # of entries in index idx_tasks_status"]),
)
with pytest.raises(kb.KanbanDbCorruptError) as excinfo:
kb.connect(db_path=db_path)
assert "REINDEX auto-repair attempted" in str(excinfo.value)
assert excinfo.value.backup_path is not None
assert excinfo.value.backup_path.exists()
def test_repaired_db_connects_normally_afterwards(tmp_path):
"""After one auto-repair, subsequent connects are ordinary fast-path."""
db_path = tmp_path / "kanban.db"
_build_board_db(db_path)
_corrupt_index(db_path, "idx_tasks_status")
conn = kb.connect(db_path=db_path)
conn.close()
# Second connect: healthy cache path, no new backups minted.
before = set(tmp_path.glob("kanban.db.corrupt.*.bak"))
conn = kb.connect(db_path=db_path)
try:
kb.create_task(conn, title="post-repair")
assert "post-repair" in {t.title for t in kb.list_tasks(conn)}
finally:
conn.close()
assert set(tmp_path.glob("kanban.db.corrupt.*.bak")) == before
# ---------------------------------------------------------------------------
# Corrupt-backup retention cap
# ---------------------------------------------------------------------------
def test_corrupt_backup_retention_cap_prunes_oldest(tmp_path, monkeypatch):
"""Mutating corruption can't accumulate quarantine files forever.
Regression for the field report of 124 ``.corrupt.*.bak`` files: each
distinct corrupt byte-state mints a new content-addressed backup, so a
board whose file keeps changing between failures grows one backup per
mutation. The cap keeps only the newest ``_CORRUPT_BACKUP_RETENTION``.
"""
monkeypatch.setattr(kb, "_CORRUPT_BACKUP_RETENTION", 3)
db_path = tmp_path / "kanban.db"
_write_page_corrupt_db(db_path)
minted: list[Path] = []
for i in range(8):
# Mutate the corrupt bytes → new sha → new backup each round.
with db_path.open("r+b") as fh:
fh.seek(200)
fh.write(bytes([i]) * 16)
kb._INITIALIZED_PATHS.discard(str(db_path.resolve()))
with pytest.raises(kb.KanbanDbCorruptError) as excinfo:
kb.connect(db_path=db_path)
assert excinfo.value.backup_path is not None
minted.append(excinfo.value.backup_path)
# The just-created backup always survives its own prune pass.
assert excinfo.value.backup_path.exists()
remaining = sorted(tmp_path.glob("kanban.db.corrupt.*.bak"))
assert len(remaining) == 3, (
f"expected retention cap of 3, found {len(remaining)}: {remaining}"
)
# The newest backup (this round's) is among the survivors.
assert minted[-1] in remaining
def test_corrupt_backup_retention_prunes_sidecar_copies(tmp_path, monkeypatch):
"""Pruned backups take their copied -wal/-shm sidecars with them."""
monkeypatch.setattr(kb, "_CORRUPT_BACKUP_RETENTION", 1)
db_path = tmp_path / "kanban.db"
_write_page_corrupt_db(db_path)
# Fabricate an old backup + sidecars that the next prune should remove.
import os
stale = tmp_path / "kanban.db.corrupt.deadbeef00000000.bak"
stale.write_bytes(b"old corrupt bytes")
(tmp_path / (stale.name + "-wal")).write_bytes(b"wal")
(tmp_path / (stale.name + "-shm")).write_bytes(b"shm")
past = 1_000_000_000
os.utime(stale, (past, past))
kb._INITIALIZED_PATHS.discard(str(db_path.resolve()))
with pytest.raises(kb.KanbanDbCorruptError) as excinfo:
kb.connect(db_path=db_path)
fresh = excinfo.value.backup_path
assert fresh is not None and fresh.exists()
assert not stale.exists()
assert not (tmp_path / (stale.name + "-wal")).exists()
assert not (tmp_path / (stale.name + "-shm")).exists()
def test_identical_corrupt_bytes_still_reuse_one_backup(tmp_path):
"""The retention cap must not break content-addressed dedupe."""
db_path = tmp_path / "kanban.db"
_write_page_corrupt_db(db_path)
backups: set[Path] = set()
for _ in range(5):
kb._INITIALIZED_PATHS.discard(str(db_path.resolve()))
with pytest.raises(kb.KanbanDbCorruptError) as excinfo:
kb.connect(db_path=db_path)
assert excinfo.value.backup_path is not None
backups.add(excinfo.value.backup_path)
assert len(backups) == 1
assert len(list(tmp_path.glob("kanban.db.corrupt.*.bak"))) == 1
# ---------------------------------------------------------------------------
# Periodic WAL checkpoint on the dispatcher tick path
# ---------------------------------------------------------------------------
class _ConnProxy:
"""Delegating wrapper so tests can observe/deny wal_checkpoint PRAGMAs.
``sqlite3.Connection`` is an immutable C type — its methods cannot be
monkeypatched — so the spy wraps the connection object instead.
"""
def __init__(self, conn, recorded, fail_checkpoint=False):
self._conn = conn
self._recorded = recorded
self._fail_checkpoint = fail_checkpoint
def execute(self, sql, *args, **kwargs):
if "wal_checkpoint" in str(sql).lower():
self._recorded.append(str(sql))
if self._fail_checkpoint:
raise sqlite3.OperationalError("database is locked")
return self._conn.execute(sql, *args, **kwargs)
def __getattr__(self, name):
return getattr(self._conn, name)
def test_dispatch_tick_runs_wal_checkpoint_at_interval(tmp_path, monkeypatch):
"""First tick checkpoints; ticks inside the interval don't; after the
interval elapses the next tick checkpoints again."""
db_path = tmp_path / "kanban.db"
_build_board_db(db_path, tasks=1)
monkeypatch.setenv("HERMES_KANBAN_DB", str(db_path))
# Fresh per-path clock so previous tests can't have claimed the slot.
monkeypatch.setattr(kb, "_LAST_WAL_CHECKPOINT", {})
executed: list[str] = []
conn = kb.connect(db_path=db_path)
proxy = _ConnProxy(conn, executed)
try:
kb.dispatch_once(proxy, spawn_fn=lambda *a, **k: None, dry_run=True)
assert len(executed) == 1, "first tick should checkpoint"
kb.dispatch_once(proxy, spawn_fn=lambda *a, **k: None, dry_run=True)
kb.dispatch_once(proxy, spawn_fn=lambda *a, **k: None, dry_run=True)
assert len(executed) == 1, "ticks inside the interval must not checkpoint"
# Age the per-path timestamp past the interval → next tick fires.
key = str(db_path.resolve())
kb._LAST_WAL_CHECKPOINT[key] -= (
kb._WAL_CHECKPOINT_INTERVAL_SECONDS + 1.0
)
kb.dispatch_once(proxy, spawn_fn=lambda *a, **k: None, dry_run=True)
assert len(executed) == 2, "tick after the interval should checkpoint"
assert all("TRUNCATE" in sql.upper() for sql in executed)
finally:
conn.close()
def test_wal_checkpoint_failure_never_fails_the_tick(tmp_path, monkeypatch):
"""A busy/erroring checkpoint is best-effort: logged, never raised."""
db_path = tmp_path / "kanban.db"
_build_board_db(db_path, tasks=1)
monkeypatch.setenv("HERMES_KANBAN_DB", str(db_path))
monkeypatch.setattr(kb, "_LAST_WAL_CHECKPOINT", {})
executed: list[str] = []
conn = kb.connect(db_path=db_path)
proxy = _ConnProxy(conn, executed, fail_checkpoint=True)
try:
result = kb.dispatch_once(
proxy, spawn_fn=lambda *a, **k: None, dry_run=True,
)
assert not result.skipped_locked
assert executed, "checkpoint was attempted (and failed) this tick"
finally:
conn.close()
def test_wal_checkpoint_truncates_wal_file(tmp_path, monkeypatch):
"""End-to-end: the checkpoint actually truncates the -wal sidecar."""
db_path = tmp_path / "kanban.db"
_build_board_db(db_path, tasks=1)
monkeypatch.setenv("HERMES_KANBAN_DB", str(db_path))
monkeypatch.setattr(kb, "_LAST_WAL_CHECKPOINT", {})
conn = kb.connect(db_path=db_path)
try:
# Generate WAL frames.
for i in range(30):
kb.create_task(conn, title=f"wal-{i}")
wal = tmp_path / "kanban.db-wal"
assert wal.exists() and wal.stat().st_size > 0
kb.dispatch_once(conn, spawn_fn=lambda *a, **k: None, dry_run=True)
assert wal.stat().st_size == 0, (
"wal_checkpoint(TRUNCATE) should reset the -wal file to 0 bytes"
)
finally:
conn.close()
# ---------------------------------------------------------------------------
# repair_db() API + `hermes kanban repair` CLI verb
# ---------------------------------------------------------------------------
def _run_kanban_cli(argv: list[str]) -> int:
"""Drive the real argparse surface exactly like `hermes kanban …`."""
import argparse
from hermes_cli import kanban as kc
parser = argparse.ArgumentParser()
sub = parser.add_subparsers(dest="command")
kc.build_parser(sub)
args = parser.parse_args(["kanban", *argv])
return kc.kanban_command(args)
@pytest.fixture
def cli_home(tmp_path, monkeypatch):
"""Isolated HERMES_HOME so kanban_db_path() resolves inside tmp_path."""
home = tmp_path / ".hermes"
home.mkdir()
monkeypatch.setenv("HERMES_HOME", str(home))
monkeypatch.setattr(Path, "home", lambda: tmp_path)
return home
def test_repair_db_reports_ok_on_healthy_board(tmp_path):
db_path = tmp_path / "kanban.db"
_build_board_db(db_path)
report = kb.repair_db(db_path=db_path)
assert report.status == "ok"
assert report.messages == ["ok"]
assert report.backup_path is None
def test_repair_db_missing_file(tmp_path):
report = kb.repair_db(db_path=tmp_path / "nope.db")
assert report.status == "missing"
def test_repair_db_repairs_index_corruption_with_backup_first(tmp_path):
db_path = tmp_path / "kanban.db"
_build_board_db(db_path)
_corrupt_index(db_path, "idx_tasks_status")
report = kb.repair_db(db_path=db_path)
assert report.status == "repaired"
assert report.reindexed == ["idx_tasks_status"]
assert report.backup_path is not None and report.backup_path.exists()
# Backup captured the PRE-repair bytes (still corrupt in the copy).
assert any(
m.startswith("wrong # of entries in index")
for m in _integrity_messages(report.backup_path)
)
# Live DB is clean and data intact.
assert _integrity_messages(db_path) == ["ok"]
conn = kb.connect(db_path=db_path)
try:
assert "task-0" in {t.title for t in kb.list_tasks(conn)}
finally:
conn.close()
def test_repair_db_fail_closed_on_page_corruption(tmp_path):
db_path = tmp_path / "kanban.db"
original = _write_page_corrupt_db(db_path)
report = kb.repair_db(db_path=db_path)
assert report.status == "corrupt"
assert report.reindexed == []
assert report.backup_path is not None and report.backup_path.exists()
# No REINDEX mutation happened on the live file.
assert db_path.read_bytes() == original
def test_cli_repair_ok_exit_zero(cli_home, capsys):
kb.init_db()
rc = _run_kanban_cli(["repair"])
out = capsys.readouterr().out
assert rc == 0
assert "integrity_check ok" in out
def test_cli_repair_repairs_and_exits_zero(cli_home, capsys):
db_path = kb.kanban_db_path()
_build_board_db(db_path)
_corrupt_index(db_path, "idx_tasks_status")
rc = _run_kanban_cli(["repair"])
out = capsys.readouterr().out
assert rc == 0
assert "repaired" in out
assert "idx_tasks_status" in out
assert "pre-repair backup" in out
assert _integrity_messages(db_path) == ["ok"]
def test_cli_repair_still_corrupt_exits_nonzero(cli_home, capsys):
db_path = kb.kanban_db_path()
db_path.parent.mkdir(parents=True, exist_ok=True)
_write_page_corrupt_db(db_path)
rc = _run_kanban_cli(["repair"])
err = capsys.readouterr().err
assert rc != 0
assert "CORRUPT" in err
assert "fail-closed" in err
def test_cli_repair_json_shape(cli_home, capsys):
db_path = kb.kanban_db_path()
_build_board_db(db_path)
_corrupt_index(db_path, "idx_tasks_status")
rc = _run_kanban_cli(["repair", "--json"])
payload = json.loads(capsys.readouterr().out)
assert rc == 0
assert payload["status"] == "repaired"
assert payload["reindexed"] == ["idx_tasks_status"]
assert payload["backup_path"]
assert Path(payload["backup_path"]).exists()
def test_cli_repair_missing_db_exits_zero(cli_home, capsys):
rc = _run_kanban_cli(["repair"])
out = capsys.readouterr().out
assert rc == 0
assert "nothing to repair" in out