mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-07-31 19:16:29 +00:00
Second, deeper pass over tools/gateway/hermes_cli plus first pass over the trees wave 1 missed (acp, acp_adapter, skills, computer_use, docker, dashboard, conformance, monitoring, secret_sources, hermes_state, providers). Same rubric as wave 1 (AGENTS.md test policy); security, alternation/caching invariants, issue-number regressions, and E2E kept. Real test-quality fixes found and rooted out along the way: - tests/tools/test_command_guards.py made real auxiliary-LLM HTTPS calls (DEFAULT_CONFIG smart-approval leaked in) — pinned approval mode=manual via autouse fixture: 17.4s → 0.4s. - test_model_switch_custom_providers.py / test_user_providers_model_switch.py silently probed live provider catalogs (~2s/test) — stubbed cached_provider_model_ids/provider_model_ids/fetch_api_models. - test_telegram_noise_filter.py: 15-platform copy-paste matrix over shared gateway.run logic → 3 representative platforms (55s → 3.9s). - test_gateway_shutdown.py: stop()'s 5s interrupt-deadline loop spun on MagicMock agents — interrupt.side_effect now clears _running_agents (22s → 1.0s). - test_gateway_inactivity_timeout.py poll-harness timings shrunk 3-5x (24s → 1.1s); test_mcp_stability.py backoff/SIGTERM-grace sleeps patched (15.4s → 2.5s); test_async_delegation.py negative-drain wait 5s → 0.5s. - test_telegram_init_deadline.py: loop-block margin restored to 1.0s with rationale comment — the watchdog-dump assertion needs the loop blocked well past deadline+grace under parallel load (flaked once in the 40-worker verification run at a 0.2s margin). Verification: full hermetic suite via scripts/run_tests.sh — 2,438 files, 21,718 tests passed, 0 failed, 293.9s wall. Suite totals vs original baseline: 46,820 → 19,757 test functions (−57.8%), wall 583.5s → 293.9s (−50%), subprocess CPU 13,564s → 11,623s.
136 lines
5.9 KiB
Python
136 lines
5.9 KiB
Python
from __future__ import annotations
|
|
|
|
import sqlite3
|
|
import threading
|
|
from pathlib import Path
|
|
|
|
from hermes_cli import kanban_db as kb
|
|
|
|
|
|
def _make_legacy_db(path: Path) -> None:
|
|
"""Write a kanban DB with the pre-AUTOINCREMENT (TEXT PK) schema for the
|
|
four tables #35096 affects, keeping every other table current so the
|
|
additive-column migration runs cleanly on top.
|
|
"""
|
|
conn = sqlite3.connect(str(path))
|
|
conn.executescript(kb.SCHEMA_SQL)
|
|
conn.executescript(
|
|
"""
|
|
DROP TABLE task_events;
|
|
DROP TABLE task_comments;
|
|
DROP TABLE task_runs;
|
|
DROP TABLE kanban_notify_subs;
|
|
CREATE TABLE task_comments (id TEXT PRIMARY KEY, task_id TEXT NOT NULL,
|
|
author TEXT NOT NULL, body TEXT NOT NULL, created_at INTEGER NOT NULL);
|
|
CREATE TABLE task_events (id TEXT PRIMARY KEY, task_id TEXT NOT NULL,
|
|
kind TEXT NOT NULL, payload TEXT, created_at INTEGER NOT NULL);
|
|
CREATE TABLE task_runs (id TEXT PRIMARY KEY, task_id TEXT NOT NULL,
|
|
profile TEXT, status TEXT NOT NULL, started_at INTEGER NOT NULL);
|
|
CREATE TABLE kanban_notify_subs (task_id TEXT NOT NULL, platform TEXT NOT NULL,
|
|
chat_id TEXT NOT NULL, thread_id TEXT NOT NULL DEFAULT '', user_id TEXT,
|
|
created_at INTEGER NOT NULL, last_event_id TEXT,
|
|
PRIMARY KEY (task_id, platform, chat_id, thread_id));
|
|
"""
|
|
)
|
|
conn.execute("INSERT INTO tasks (id, title, status, created_at) VALUES ('task-1', 'T', 'done', 1000)")
|
|
conn.execute("INSERT INTO task_comments VALUES ('c-1', 'task-1', 'agent', 'hi', 1500)")
|
|
conn.execute("INSERT INTO task_events VALUES ('e-1', 'task-1', 'completed', NULL, 2000)")
|
|
conn.execute("INSERT INTO task_events VALUES ('e-2', 'task-1', 'blocked', NULL, 2100)")
|
|
conn.execute("INSERT INTO task_runs VALUES ('r-1', 'task-1', 'default', 'done', 1000)")
|
|
conn.execute(
|
|
"INSERT INTO kanban_notify_subs (task_id, platform, chat_id, created_at, last_event_id) "
|
|
"VALUES ('task-1', 'telegram', '123', 1000, 'e-1')"
|
|
)
|
|
conn.commit()
|
|
conn.close()
|
|
|
|
|
|
def _setup_home(tmp_path, monkeypatch) -> Path:
|
|
home = tmp_path / ".hermes"
|
|
home.mkdir()
|
|
monkeypatch.setenv("HERMES_HOME", str(home))
|
|
monkeypatch.setattr(Path, "home", lambda: tmp_path)
|
|
db_path = kb.kanban_db_path(board="legacy")
|
|
db_path.parent.mkdir(parents=True, exist_ok=True)
|
|
kb._INITIALIZED_PATHS.discard(str(db_path.resolve()))
|
|
return db_path
|
|
|
|
|
|
def _table_struct(conn: sqlite3.Connection, table: str):
|
|
cols = [
|
|
(r["name"], (r["type"] or "").upper(), r["notnull"], r["pk"])
|
|
for r in conn.execute(f"PRAGMA table_info({table})")
|
|
]
|
|
idx = sorted(
|
|
r["name"]
|
|
for r in conn.execute(f"PRAGMA index_list({table})")
|
|
if not r["name"].startswith("sqlite_")
|
|
)
|
|
return cols, idx
|
|
|
|
|
|
|
|
|
|
def test_legacy_text_pk_tables_rebuilt_to_integer_autoincrement(tmp_path, monkeypatch):
|
|
"""A pre-AUTOINCREMENT DB is migrated in place: id columns become INTEGER
|
|
PKs, ``last_event_id`` becomes INTEGER, data is preserved, and indexes
|
|
are recreated (DROP TABLE would otherwise take them down)."""
|
|
db_path = _setup_home(tmp_path, monkeypatch)
|
|
_make_legacy_db(db_path)
|
|
|
|
with kb.connect(db_path) as conn:
|
|
for table in ("task_events", "task_comments", "task_runs"):
|
|
id_col = {r["name"]: r for r in conn.execute(f"PRAGMA table_info({table})")}["id"]
|
|
assert id_col["type"].upper() == "INTEGER" and id_col["pk"] == 1
|
|
|
|
lei = {r["name"]: r for r in conn.execute("PRAGMA table_info(kanban_notify_subs)")}
|
|
assert lei["last_event_id"]["type"].upper() == "INTEGER"
|
|
assert "delivery_metadata" in lei
|
|
|
|
# Data preserved across the rebuild.
|
|
assert len(conn.execute("SELECT * FROM task_events").fetchall()) == 2
|
|
assert conn.execute("SELECT body FROM task_comments").fetchone()["body"] == "hi"
|
|
assert len(conn.execute("SELECT * FROM task_runs").fetchall()) == 1
|
|
# Non-numeric legacy cursor ("e-1") casts to 0.
|
|
assert conn.execute("SELECT last_event_id FROM kanban_notify_subs").fetchone()["last_event_id"] == 0
|
|
|
|
# Indexes restored, including idx_events_run (added by the additive pass).
|
|
indexes = {r[0] for r in conn.execute("SELECT name FROM sqlite_master WHERE type='index'")}
|
|
for name in ("idx_events_task", "idx_events_run", "idx_comments_task",
|
|
"idx_runs_task", "idx_runs_status", "idx_notify_task"):
|
|
assert name in indexes
|
|
|
|
# AUTOINCREMENT actually works after the rebuild.
|
|
conn.execute("INSERT INTO task_events (task_id, kind, created_at) VALUES ('task-1', 'completed', 3000)")
|
|
new_id = conn.execute("SELECT id FROM task_events ORDER BY id DESC LIMIT 1").fetchone()["id"]
|
|
assert isinstance(new_id, int) and new_id >= 1
|
|
|
|
|
|
|
|
|
|
def test_migration_is_idempotent(tmp_path, monkeypatch):
|
|
"""Re-opening an already-migrated DB is a no-op and leaves data intact."""
|
|
db_path = _setup_home(tmp_path, monkeypatch)
|
|
_make_legacy_db(db_path)
|
|
|
|
with kb.connect(db_path):
|
|
pass
|
|
kb._INITIALIZED_PATHS.discard(str(db_path.resolve()))
|
|
with kb.connect(db_path) as conn:
|
|
id_col = {r["name"]: r for r in conn.execute("PRAGMA table_info(task_events)")}["id"]
|
|
assert id_col["type"].upper() == "INTEGER"
|
|
assert len(conn.execute("SELECT * FROM task_events").fetchall()) == 2
|
|
|
|
|
|
def test_unseen_events_for_sub_survives_migrated_db(tmp_path, monkeypatch):
|
|
"""The crash that motivated #35096 — ``int(None)`` on a NULL cursor — is
|
|
gone after migration; the notifier query returns an integer cursor."""
|
|
db_path = _setup_home(tmp_path, monkeypatch)
|
|
_make_legacy_db(db_path)
|
|
|
|
with kb.connect(db_path) as conn:
|
|
cursor, events = kb.unseen_events_for_sub(
|
|
conn, task_id="task-1", platform="telegram", chat_id="123"
|
|
)
|
|
assert isinstance(cursor, int)
|
|
assert isinstance(events, list)
|