test: reorganize test structure and add missing unit tests
Reorganize flat tests/ directory to mirror source code structure
(tools/, gateway/, hermes_cli/, integration/). Add 11 new test files
covering previously untested modules: registry, patch_parser,
fuzzy_match, todo_tool, approval, file_tools, gateway session/config/
delivery, and hermes_cli config/models. Total: 147 unit tests passing,
9 integration tests gated behind pytest marker.
2026-02-26 03:20:08 +03:00
|
|
|
"""Shared fixtures for the hermes-agent test suite."""
|
|
|
|
|
|
2026-03-14 03:14:34 -07:00
|
|
|
import asyncio
|
test: reorganize test structure and add missing unit tests
Reorganize flat tests/ directory to mirror source code structure
(tools/, gateway/, hermes_cli/, integration/). Add 11 new test files
covering previously untested modules: registry, patch_parser,
fuzzy_match, todo_tool, approval, file_tools, gateway session/config/
delivery, and hermes_cli config/models. Total: 147 unit tests passing,
9 integration tests gated behind pytest marker.
2026-02-26 03:20:08 +03:00
|
|
|
import os
|
2026-03-12 01:23:28 -07:00
|
|
|
import signal
|
test: reorganize test structure and add missing unit tests
Reorganize flat tests/ directory to mirror source code structure
(tools/, gateway/, hermes_cli/, integration/). Add 11 new test files
covering previously untested modules: registry, patch_parser,
fuzzy_match, todo_tool, approval, file_tools, gateway session/config/
delivery, and hermes_cli config/models. Total: 147 unit tests passing,
9 integration tests gated behind pytest marker.
2026-02-26 03:20:08 +03:00
|
|
|
import sys
|
|
|
|
|
import tempfile
|
|
|
|
|
from pathlib import Path
|
|
|
|
|
from unittest.mock import patch
|
|
|
|
|
|
|
|
|
|
import pytest
|
|
|
|
|
|
|
|
|
|
# Ensure project root is importable
|
|
|
|
|
PROJECT_ROOT = Path(__file__).parent.parent
|
|
|
|
|
if str(PROJECT_ROOT) not in sys.path:
|
|
|
|
|
sys.path.insert(0, str(PROJECT_ROOT))
|
|
|
|
|
|
|
|
|
|
|
2026-03-02 04:34:21 -08:00
|
|
|
@pytest.fixture(autouse=True)
|
|
|
|
|
def _isolate_hermes_home(tmp_path, monkeypatch):
|
|
|
|
|
"""Redirect HERMES_HOME to a temp dir so tests never write to ~/.hermes/."""
|
|
|
|
|
fake_home = tmp_path / "hermes_test"
|
|
|
|
|
fake_home.mkdir()
|
|
|
|
|
(fake_home / "sessions").mkdir()
|
|
|
|
|
(fake_home / "cron").mkdir()
|
|
|
|
|
(fake_home / "memories").mkdir()
|
|
|
|
|
(fake_home / "skills").mkdir()
|
|
|
|
|
monkeypatch.setenv("HERMES_HOME", str(fake_home))
|
|
|
|
|
|
|
|
|
|
|
test: reorganize test structure and add missing unit tests
Reorganize flat tests/ directory to mirror source code structure
(tools/, gateway/, hermes_cli/, integration/). Add 11 new test files
covering previously untested modules: registry, patch_parser,
fuzzy_match, todo_tool, approval, file_tools, gateway session/config/
delivery, and hermes_cli config/models. Total: 147 unit tests passing,
9 integration tests gated behind pytest marker.
2026-02-26 03:20:08 +03:00
|
|
|
@pytest.fixture()
|
|
|
|
|
def tmp_dir(tmp_path):
|
|
|
|
|
"""Provide a temporary directory that is cleaned up automatically."""
|
|
|
|
|
return tmp_path
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture()
|
|
|
|
|
def mock_config():
|
|
|
|
|
"""Return a minimal hermes config dict suitable for unit tests."""
|
|
|
|
|
return {
|
|
|
|
|
"model": "test/mock-model",
|
|
|
|
|
"toolsets": ["terminal", "file"],
|
|
|
|
|
"max_turns": 10,
|
|
|
|
|
"terminal": {
|
|
|
|
|
"backend": "local",
|
|
|
|
|
"cwd": "/tmp",
|
|
|
|
|
"timeout": 30,
|
|
|
|
|
},
|
|
|
|
|
"compression": {"enabled": False},
|
|
|
|
|
"memory": {"memory_enabled": False, "user_profile_enabled": False},
|
|
|
|
|
"command_allowlist": [],
|
|
|
|
|
}
|
2026-03-12 01:23:28 -07:00
|
|
|
|
|
|
|
|
|
|
|
|
|
# ── Global test timeout ─────────────────────────────────────────────────────
|
|
|
|
|
# Kill any individual test that takes longer than 30 seconds.
|
|
|
|
|
# Prevents hanging tests (subprocess spawns, blocking I/O) from stalling the
|
|
|
|
|
# entire test suite.
|
|
|
|
|
|
|
|
|
|
def _timeout_handler(signum, frame):
|
|
|
|
|
raise TimeoutError("Test exceeded 30 second timeout")
|
|
|
|
|
|
2026-03-14 03:14:34 -07:00
|
|
|
@pytest.fixture(autouse=True)
|
|
|
|
|
def _ensure_current_event_loop(request):
|
|
|
|
|
"""Provide a default event loop for sync tests that call get_event_loop().
|
|
|
|
|
|
|
|
|
|
Python 3.11+ no longer guarantees a current loop for plain synchronous tests.
|
|
|
|
|
A number of gateway tests still use asyncio.get_event_loop().run_until_complete(...).
|
|
|
|
|
Ensure they always have a usable loop without interfering with pytest-asyncio's
|
|
|
|
|
own loop management for @pytest.mark.asyncio tests.
|
|
|
|
|
"""
|
|
|
|
|
if request.node.get_closest_marker("asyncio") is not None:
|
|
|
|
|
yield
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
loop = asyncio.get_event_loop_policy().get_event_loop()
|
|
|
|
|
except RuntimeError:
|
|
|
|
|
loop = None
|
|
|
|
|
|
|
|
|
|
created = loop is None or loop.is_closed()
|
|
|
|
|
if created:
|
|
|
|
|
loop = asyncio.new_event_loop()
|
|
|
|
|
asyncio.set_event_loop(loop)
|
|
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
yield
|
|
|
|
|
finally:
|
|
|
|
|
if created and loop is not None:
|
|
|
|
|
try:
|
|
|
|
|
loop.close()
|
|
|
|
|
finally:
|
|
|
|
|
asyncio.set_event_loop(None)
|
|
|
|
|
|
|
|
|
|
|
2026-03-12 01:23:28 -07:00
|
|
|
@pytest.fixture(autouse=True)
|
|
|
|
|
def _enforce_test_timeout():
|
|
|
|
|
"""Kill any individual test that takes longer than 30 seconds."""
|
|
|
|
|
old = signal.signal(signal.SIGALRM, _timeout_handler)
|
|
|
|
|
signal.alarm(30)
|
|
|
|
|
yield
|
|
|
|
|
signal.alarm(0)
|
|
|
|
|
signal.signal(signal.SIGALRM, old)
|