b4fbd6fe9f
Deploy Site / deploy-vercel (push) Has been skipped
Deploy Site / deploy-docs (push) Has been skipped
Build Skills Index / build-index (push) Has been skipped
CI / Deny unrelated histories (push) Has been skipped
CI / Detect affected areas (push) Successful in 27m35s
CI / OSV scan (push) Failing after 4s
CI / Build&Test Docker image (push) Successful in 9s
CI / Supply-chain scan (push) Has been skipped
CI / Lint Docker scripts (push) Failing after 5m13s
CI / Check contributors (push) Failing after 12m8s
CI / Docs Site (push) Failing after 12m8s
CI / TypeScript (push) Failing after 12m8s
CI / Python lints (push) Failing after 12m9s
CI / Python tests (push) Failing after 12m9s
CI / Check uv.lock (push) Failing after 23m22s
CI / CI timing report (push) Has been cancelled
Build Skills Index / trigger-deploy (push) Has been cancelled
CI / All required checks pass (push) Has been cancelled
104 lines
3.8 KiB
Python
104 lines
3.8 KiB
Python
from __future__ import annotations
|
|
|
|
import json
|
|
import os
|
|
import sqlite3
|
|
from pathlib import Path
|
|
|
|
from gateway.readiness import collect_runtime_readiness
|
|
|
|
|
|
def test_collect_runtime_readiness_reports_healthy_local_runtime(tmp_path, monkeypatch):
|
|
home = tmp_path / ".hermes"
|
|
home.mkdir()
|
|
(home / "config.yaml").write_text(
|
|
"model:\n provider: openrouter\n model: test/model\n",
|
|
encoding="utf-8",
|
|
)
|
|
with sqlite3.connect(home / "state.db") as conn:
|
|
conn.execute("CREATE TABLE probe (id INTEGER PRIMARY KEY)")
|
|
monkeypatch.setenv("HERMES_HOME", str(home))
|
|
|
|
result = collect_runtime_readiness(
|
|
configured_model="test/model",
|
|
runtime_status={
|
|
"gateway_state": "running",
|
|
"platforms": {"telegram": {"state": "connected"}},
|
|
"updated_at": "2026-07-09T00:00:00Z",
|
|
},
|
|
active_api_runs=2,
|
|
)
|
|
|
|
assert result["status"] == "ok"
|
|
assert result["checks"]["state_db"]["status"] == "ok"
|
|
assert result["checks"]["config"]["status"] == "ok"
|
|
assert result["checks"]["model"]["status"] == "ok"
|
|
assert result["checks"]["gateway"]["status"] == "ok"
|
|
assert result["checks"]["background_queues"]["active_api_runs"] == 2
|
|
assert result["checks"]["disk"]["status"] in {"ok", "degraded"}
|
|
|
|
|
|
def test_collect_runtime_readiness_degrades_on_invalid_config_and_stopped_gateway(
|
|
tmp_path, monkeypatch
|
|
):
|
|
home = tmp_path / ".hermes"
|
|
home.mkdir()
|
|
(home / "config.yaml").write_text("model: [unterminated", encoding="utf-8")
|
|
monkeypatch.setenv("HERMES_HOME", str(home))
|
|
|
|
result = collect_runtime_readiness(
|
|
configured_model="",
|
|
runtime_status={"gateway_state": "stopped", "platforms": {}},
|
|
)
|
|
|
|
assert result["status"] == "degraded"
|
|
assert result["checks"]["config"]["status"] == "degraded"
|
|
assert result["checks"]["model"]["status"] == "degraded"
|
|
assert result["checks"]["gateway"]["status"] == "degraded"
|
|
# Readiness is diagnostic data, not an exception or a destructive repair.
|
|
assert (home / "config.yaml").read_text(encoding="utf-8") == "model: [unterminated"
|
|
|
|
|
|
def test_collect_runtime_readiness_marks_corrupt_state_db_degraded(tmp_path, monkeypatch):
|
|
home = tmp_path / ".hermes"
|
|
home.mkdir()
|
|
(home / "config.yaml").write_text("{}\n", encoding="utf-8")
|
|
(home / "state.db").write_bytes(b"not sqlite")
|
|
monkeypatch.setenv("HERMES_HOME", str(home))
|
|
|
|
result = collect_runtime_readiness(configured_model="configured-model", runtime_status={})
|
|
|
|
assert result["status"] == "degraded"
|
|
assert result["checks"]["state_db"]["status"] == "degraded"
|
|
assert "detail" in result["checks"]["state_db"]
|
|
|
|
|
|
def test_collect_runtime_readiness_never_exposes_config_values(tmp_path, monkeypatch):
|
|
home = tmp_path / ".hermes"
|
|
home.mkdir()
|
|
secret = "do-not-return-this-value"
|
|
(home / "config.yaml").write_text(
|
|
f"model:\n provider: openrouter\nprivate_value: {secret}\n",
|
|
encoding="utf-8",
|
|
)
|
|
monkeypatch.setenv("HERMES_HOME", str(home))
|
|
|
|
result = collect_runtime_readiness(configured_model="model", runtime_status={})
|
|
|
|
assert secret not in json.dumps(result)
|
|
assert str(home) not in json.dumps(result)
|
|
assert result["checks"]["config"]["status"] == "ok"
|
|
|
|
|
|
def test_collect_runtime_readiness_uses_active_profile_home(tmp_path, monkeypatch):
|
|
profile_home = tmp_path / "profiles" / "coder"
|
|
profile_home.mkdir(parents=True)
|
|
(profile_home / "config.yaml").write_text("{}\n", encoding="utf-8")
|
|
monkeypatch.setenv("HERMES_HOME", str(profile_home))
|
|
|
|
result = collect_runtime_readiness(configured_model="model", runtime_status={})
|
|
|
|
assert result["checks"]["config"]["status"] == "ok"
|
|
assert not (tmp_path / ".hermes" / "state.db").exists()
|
|
assert os.environ["HERMES_HOME"] == str(profile_home)
|