2026-03-26 14:34:31 -07:00
|
|
|
"""Tests for KeyboardInterrupt handling in exit cleanup paths.
|
|
|
|
|
|
|
|
|
|
``except Exception`` does not catch ``KeyboardInterrupt`` (which inherits
|
|
|
|
|
from ``BaseException``). A second Ctrl+C during exit cleanup must not
|
|
|
|
|
abort remaining cleanup steps. These tests exercise the actual production
|
|
|
|
|
code paths — not a copy of the try/except pattern.
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
import atexit
|
|
|
|
|
import weakref
|
|
|
|
|
from unittest.mock import MagicMock, patch, call
|
|
|
|
|
|
|
|
|
|
import pytest
|
|
|
|
|
|
|
|
|
|
|
2026-04-17 14:21:22 -07:00
|
|
|
@pytest.fixture(autouse=True)
|
|
|
|
|
def _mock_runtime_provider(monkeypatch):
|
|
|
|
|
"""run_job calls resolve_runtime_provider which can try real network
|
|
|
|
|
auto-detection (~4s of socket timeouts in hermetic CI). Mock it out
|
|
|
|
|
since these tests don't care about provider resolution — the agent
|
|
|
|
|
is mocked too."""
|
|
|
|
|
import hermes_cli.runtime_provider as rp
|
|
|
|
|
def _fake_resolve(*args, **kwargs):
|
|
|
|
|
return {
|
|
|
|
|
"provider": "openrouter",
|
|
|
|
|
"api_key": "test-key",
|
|
|
|
|
"base_url": "https://openrouter.ai/api/v1",
|
|
|
|
|
"model": "test/model",
|
|
|
|
|
"api_mode": "chat_completions",
|
|
|
|
|
}
|
|
|
|
|
monkeypatch.setattr(rp, "resolve_runtime_provider", _fake_resolve)
|
|
|
|
|
|
|
|
|
|
|
2026-03-26 14:34:31 -07:00
|
|
|
class TestCronJobCleanup:
|
|
|
|
|
"""cron/scheduler.py — end_session + close in the finally block."""
|
|
|
|
|
|
|
|
|
|
def test_keyboard_interrupt_in_end_session_does_not_skip_close(self):
|
|
|
|
|
"""If end_session raises KeyboardInterrupt, close() must still run."""
|
|
|
|
|
mock_db = MagicMock()
|
|
|
|
|
mock_db.end_session.side_effect = KeyboardInterrupt
|
|
|
|
|
|
|
|
|
|
from cron import scheduler
|
|
|
|
|
|
|
|
|
|
job = {
|
|
|
|
|
"id": "test-job-1",
|
|
|
|
|
"name": "test cleanup",
|
|
|
|
|
"prompt": "hello",
|
|
|
|
|
"schedule": "0 9 * * *",
|
|
|
|
|
"model": "test/model",
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
with patch("hermes_state.SessionDB", return_value=mock_db), \
|
|
|
|
|
patch.object(scheduler, "_build_job_prompt", return_value="hello"), \
|
|
|
|
|
patch.object(scheduler, "_resolve_origin", return_value=None), \
|
|
|
|
|
patch.object(scheduler, "_resolve_delivery_target", return_value=None), \
|
|
|
|
|
patch("dotenv.load_dotenv", return_value=None), \
|
|
|
|
|
patch("run_agent.AIAgent") as MockAgent:
|
|
|
|
|
# Make the agent raise immediately so we hit the finally block
|
|
|
|
|
MockAgent.return_value.run_conversation.side_effect = RuntimeError("boom")
|
|
|
|
|
scheduler.run_job(job)
|
|
|
|
|
|
|
|
|
|
mock_db.end_session.assert_called_once()
|
|
|
|
|
mock_db.close.assert_called_once()
|
|
|
|
|
|
|
|
|
|
def test_keyboard_interrupt_in_close_does_not_propagate(self):
|
|
|
|
|
"""If close() raises KeyboardInterrupt, it must not escape run_job."""
|
|
|
|
|
mock_db = MagicMock()
|
|
|
|
|
mock_db.close.side_effect = KeyboardInterrupt
|
|
|
|
|
|
|
|
|
|
from cron import scheduler
|
|
|
|
|
|
|
|
|
|
job = {
|
|
|
|
|
"id": "test-job-2",
|
|
|
|
|
"name": "test close interrupt",
|
|
|
|
|
"prompt": "hello",
|
|
|
|
|
"schedule": "0 9 * * *",
|
|
|
|
|
"model": "test/model",
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
with patch("hermes_state.SessionDB", return_value=mock_db), \
|
|
|
|
|
patch.object(scheduler, "_build_job_prompt", return_value="hello"), \
|
|
|
|
|
patch.object(scheduler, "_resolve_origin", return_value=None), \
|
|
|
|
|
patch.object(scheduler, "_resolve_delivery_target", return_value=None), \
|
|
|
|
|
patch("dotenv.load_dotenv", return_value=None), \
|
|
|
|
|
patch("run_agent.AIAgent") as MockAgent:
|
|
|
|
|
MockAgent.return_value.run_conversation.side_effect = RuntimeError("boom")
|
|
|
|
|
# Must not raise
|
|
|
|
|
scheduler.run_job(job)
|
|
|
|
|
|
|
|
|
|
mock_db.end_session.assert_called_once()
|
|
|
|
|
mock_db.close.assert_called_once()
|