mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-07-26 17:38:36 +00:00
The post-update state.db integrity guard called verify_sqlite_integrity() with max_bytes=0, which disables the size ceiling and forces a full PRAGMA integrity_check. That pragma walks every b-tree page in the file, so its cost scales with database size — measured on a real 30 GB state.db: 143.5s with a cold page cache (worse under an update's memory pressure), with zero output on screen. The update looks hung right after "✓ Code updated!" and a CPU sits pegged. Multi-GB session databases are normal for heavy users, so a size-unbounded check is never an acceptable default on the update path. - verify_sqlite_integrity(): max_bytes now defaults to DEFAULT_INTEGRITY_CHECK_MAX_BYTES (2 GiB) instead of 0. max_bytes=0 remains the explicit opt-in for a full scan. - The oversized path no longer degrades to a header-only check: it adds a constant-time structural probe (read-only open + schema_version + sqlite_master read) so the malformed-schema class is still caught, not just the #68474 zeroed-file signature. - Drop the explicit max_bytes=0 at the post-update guard and in copy_db_and_verify() so both inherit the bounded default. Measured on the reporter's real 30 GB state.db: 143.5s cold → 0.001s, still valid=True. Corruption detection verified at multi-GB scale for both classes (zeroed header, malformed schema) — both still fail closed. Tests: default-is-bounded invariant, oversized probe catches malformed schema, max_bytes=0 still forces the full check.
223 lines
7.8 KiB
Python
223 lines
7.8 KiB
Python
"""Tests for the state.db integrity guard used by the update flow (#68474).
|
|
|
|
Exercises ``verify_sqlite_integrity`` and ``copy_db_and_verify`` against REAL
|
|
SQLite files (valid, zeroed, truncated) — the exact corruption signature from
|
|
issue #68474 (file kept at original size, 100% null bytes, header gone).
|
|
"""
|
|
|
|
import sqlite3
|
|
|
|
import pytest
|
|
|
|
from hermes_cli.backup import copy_db_and_verify, verify_sqlite_integrity
|
|
|
|
|
|
@pytest.fixture()
|
|
def valid_db(tmp_path):
|
|
path = tmp_path / "state.db"
|
|
conn = sqlite3.connect(path)
|
|
conn.execute("CREATE TABLE sessions (id INTEGER PRIMARY KEY, name TEXT)")
|
|
conn.executemany(
|
|
"INSERT INTO sessions (name) VALUES (?)", [(f"s{i}",) for i in range(50)]
|
|
)
|
|
conn.commit()
|
|
conn.close()
|
|
return path
|
|
|
|
|
|
def test_valid_db_passes(valid_db):
|
|
res = verify_sqlite_integrity(valid_db)
|
|
assert res["valid"] is True
|
|
assert res["size"] == valid_db.stat().st_size
|
|
assert "passed" in res["message"]
|
|
|
|
|
|
def test_zeroed_db_fails_header_check(valid_db):
|
|
# The #68474 signature: same size, all null bytes.
|
|
size = valid_db.stat().st_size
|
|
valid_db.write_bytes(b"\x00" * size)
|
|
res = verify_sqlite_integrity(valid_db)
|
|
assert res["valid"] is False
|
|
assert "header" in res["message"]
|
|
|
|
|
|
def test_missing_file():
|
|
from pathlib import Path
|
|
|
|
res = verify_sqlite_integrity(Path("/nonexistent/state.db"))
|
|
assert res["valid"] is False
|
|
assert "not found" in res["message"]
|
|
|
|
|
|
def test_too_small_file(tmp_path):
|
|
path = tmp_path / "state.db"
|
|
path.write_bytes(b"SQLite")
|
|
res = verify_sqlite_integrity(path)
|
|
assert res["valid"] is False
|
|
assert "too small" in res["message"]
|
|
|
|
|
|
def test_header_ok_but_garbage_body_fails_pragma(tmp_path):
|
|
path = tmp_path / "state.db"
|
|
path.write_bytes(b"SQLite format 3\0" + b"\xff" * 4096)
|
|
res = verify_sqlite_integrity(path)
|
|
assert res["valid"] is False
|
|
|
|
|
|
def test_oversized_db_skips_pragma_but_still_checks_header(valid_db):
|
|
res = verify_sqlite_integrity(valid_db, max_bytes=1)
|
|
# Header intact + schema probe passes → pass without the full pragma.
|
|
assert res["valid"] is True
|
|
assert "skipped PRAGMA integrity_check" in res["message"]
|
|
size = valid_db.stat().st_size
|
|
valid_db.write_bytes(b"\x00" * size)
|
|
res = verify_sqlite_integrity(valid_db, max_bytes=1)
|
|
# Zeroed header must still fail even when pragma is skipped for size.
|
|
assert res["valid"] is False
|
|
|
|
|
|
def test_default_max_bytes_bounds_the_pragma_by_size():
|
|
"""The default must NOT be size-unbounded.
|
|
|
|
``PRAGMA integrity_check`` walks every page in the file, so an unbounded
|
|
default made `hermes update` peg a CPU for minutes on a multi-GB
|
|
state.db with no output (read as a hang). Callers that omit max_bytes
|
|
must inherit a finite ceiling.
|
|
"""
|
|
import inspect
|
|
|
|
from hermes_cli.backup import DEFAULT_INTEGRITY_CHECK_MAX_BYTES
|
|
|
|
default = inspect.signature(verify_sqlite_integrity).parameters["max_bytes"].default
|
|
assert default == DEFAULT_INTEGRITY_CHECK_MAX_BYTES
|
|
assert default > 0, "size-unbounded integrity_check is never a safe default"
|
|
|
|
|
|
def test_oversized_db_probe_catches_malformed_schema(tmp_path):
|
|
"""Skipping the pragma must not mean skipping corruption detection.
|
|
|
|
A file with a valid header whose schema cannot be parsed has to fail
|
|
the oversized path via the cheap structural probe.
|
|
"""
|
|
path = tmp_path / "state.db"
|
|
conn = sqlite3.connect(path)
|
|
conn.execute("CREATE TABLE t (a INTEGER)")
|
|
conn.commit()
|
|
conn.close()
|
|
|
|
raw = bytearray(path.read_bytes())
|
|
# Corrupt the schema b-tree page (page 2 onward) while leaving the
|
|
# 16-byte header magic intact, so only the probe can catch it.
|
|
for i in range(100, min(len(raw), 4096)):
|
|
raw[i] = 0xFF
|
|
path.write_bytes(bytes(raw))
|
|
|
|
res = verify_sqlite_integrity(path, max_bytes=1)
|
|
assert res["valid"] is False
|
|
assert "probe" in res["message"]
|
|
|
|
|
|
def test_max_bytes_zero_forces_full_check(valid_db):
|
|
"""``max_bytes=0`` remains the explicit opt-in for a full scan."""
|
|
res = verify_sqlite_integrity(valid_db, max_bytes=0)
|
|
assert res["valid"] is True
|
|
assert "integrity check passed" in res["message"]
|
|
|
|
|
|
def test_copy_db_and_verify_roundtrip(valid_db, tmp_path):
|
|
dst = tmp_path / "snapshot" / "state.db"
|
|
dst.parent.mkdir()
|
|
assert copy_db_and_verify(valid_db, dst) is True
|
|
assert verify_sqlite_integrity(dst)["valid"] is True
|
|
|
|
|
|
def test_copy_db_and_verify_refuses_zeroed_source(valid_db, tmp_path):
|
|
size = valid_db.stat().st_size
|
|
valid_db.write_bytes(b"\x00" * size)
|
|
dst = tmp_path / "snapshot" / "state.db"
|
|
dst.parent.mkdir()
|
|
assert copy_db_and_verify(valid_db, dst) is False
|
|
assert not dst.exists()
|
|
|
|
|
|
def test_restore_flow_end_to_end(valid_db, tmp_path):
|
|
"""Simulate the #68474 recovery path: live db zeroed, snapshot valid →
|
|
restore snapshot over live file → verify restored copy."""
|
|
import shutil
|
|
|
|
snap = tmp_path / "state-snapshots" / "20260721-pre-update" / "state.db"
|
|
snap.parent.mkdir(parents=True)
|
|
shutil.copy2(valid_db, snap)
|
|
|
|
# Zero the live db (the bug).
|
|
size = valid_db.stat().st_size
|
|
valid_db.write_bytes(b"\x00" * size)
|
|
assert verify_sqlite_integrity(valid_db)["valid"] is False
|
|
assert verify_sqlite_integrity(snap)["valid"] is True
|
|
|
|
# The guard's restore step.
|
|
shutil.copy2(snap, valid_db)
|
|
restored = verify_sqlite_integrity(valid_db)
|
|
assert restored["valid"] is True
|
|
conn = sqlite3.connect(valid_db)
|
|
assert conn.execute("SELECT COUNT(*) FROM sessions").fetchone()[0] == 50
|
|
conn.close()
|
|
|
|
|
|
class TestPreUpdateBackupIntegrityGuard:
|
|
"""E2E: run the real ``_run_pre_update_backup`` against a temp
|
|
HERMES_HOME whose state.db is corrupted mid-flight (#68474)."""
|
|
|
|
@pytest.fixture()
|
|
def hermes_home(self, tmp_path, monkeypatch):
|
|
from pathlib import Path
|
|
import sys
|
|
|
|
root = tmp_path / ".hermes"
|
|
root.mkdir()
|
|
(root / "config.yaml").write_text("model:\n provider: openrouter\n")
|
|
db = root / "state.db"
|
|
conn = sqlite3.connect(db)
|
|
conn.execute("CREATE TABLE sessions (id INTEGER PRIMARY KEY)")
|
|
conn.commit()
|
|
conn.close()
|
|
monkeypatch.setenv("HERMES_HOME", str(root))
|
|
monkeypatch.setattr(Path, "home", lambda: tmp_path)
|
|
for mod in list(sys.modules.keys()):
|
|
if mod.startswith("hermes_cli.config") or mod == "hermes_constants":
|
|
del sys.modules[mod]
|
|
return root
|
|
|
|
def test_healthy_db_stays_quiet(self, hermes_home, capsys):
|
|
from argparse import Namespace
|
|
|
|
from hermes_cli.main import _run_pre_update_backup
|
|
|
|
snap_id = _run_pre_update_backup(Namespace(no_backup=False, backup=False))
|
|
out = capsys.readouterr().out
|
|
assert snap_id is not None
|
|
assert "Pre-update snapshot" in out
|
|
assert "integrity check FAILED" not in out
|
|
|
|
def test_zeroed_db_after_snapshot_is_loud(self, hermes_home, capsys, monkeypatch):
|
|
"""If state.db is zeroed right after the snapshot completes, the
|
|
guard must warn loudly instead of proceeding silently (exit-0 mask)."""
|
|
from argparse import Namespace
|
|
|
|
import hermes_cli.backup as backup_mod
|
|
from hermes_cli.main import _run_pre_update_backup
|
|
|
|
real_create = backup_mod.create_quick_snapshot
|
|
|
|
def create_then_zero(**kwargs):
|
|
snap_id = real_create(**kwargs)
|
|
live = hermes_home / "state.db"
|
|
live.write_bytes(b"\x00" * live.stat().st_size)
|
|
return snap_id
|
|
|
|
monkeypatch.setattr(backup_mod, "create_quick_snapshot", create_then_zero)
|
|
snap_id = _run_pre_update_backup(Namespace(no_backup=False, backup=False))
|
|
out = capsys.readouterr().out
|
|
assert snap_id is not None
|
|
assert "integrity check FAILED" in out
|
|
assert "Snapshot copy is valid" in out
|