mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-06-25 11:02:03 +00:00
Salvage of PR #41284 onto current main. Relocates the last 9 inline messaging adapters (+ satellites: telegram_network, feishu_comment/_rules/meeting_invite, wecom_crypto, wecom_callback) from gateway/platforms/ into self-contained bundled plugins under plugins/platforms/<x>/, discovered via the platform registry. Strips the per-platform core touchpoints from gateway/run.py, gateway/config.py, hermes_cli/gateway.py, hermes_cli/setup.py, and tools/send_message_tool.py. Carries forward the migration fixes (explicit enabled:false honored, get_connected_platforms forces discovery, plugin is_connected via gateway.get_env_value, logs --component gateway matches plugins.platforms.*, matrix hidden on Windows). Additionally ports config keys main added since the PR base: the matrix plugin's _apply_yaml_config now also covers allowed_users, ignore_user_patterns, process_notices, and session_scope (the inline gateway/config.py matrix block gained these in the 1340 commits the PR sat open; they would otherwise have been silently dropped on deletion).
89 lines
3.2 KiB
Python
89 lines
3.2 KiB
Python
"""TelegramAdapter send-path health gating after reconnect storms.
|
|
|
|
After sustained Bad Gateway / TimedOut reconnect cycles, the PTB httpx client
|
|
can enter a wedged state where ``bot.send_message()`` returns a valid Message
|
|
but nothing reaches the recipient. ``_send_path_degraded`` short-circuits
|
|
``send()`` so cron's live-adapter branch falls through to standalone HTTP.
|
|
"""
|
|
import sys
|
|
from unittest.mock import AsyncMock, MagicMock, patch
|
|
|
|
import pytest
|
|
|
|
from gateway.config import PlatformConfig
|
|
|
|
|
|
def _ensure_telegram_mock():
|
|
if "telegram" in sys.modules and hasattr(sys.modules["telegram"], "__file__"):
|
|
return
|
|
mod = MagicMock()
|
|
mod.error.NetworkError = type("NetworkError", (OSError,), {})
|
|
mod.error.TimedOut = type("TimedOut", (OSError,), {})
|
|
mod.error.BadRequest = type("BadRequest", (Exception,), {})
|
|
for name in ("telegram", "telegram.ext", "telegram.constants", "telegram.request"):
|
|
sys.modules.setdefault(name, mod)
|
|
sys.modules.setdefault("telegram.error", mod.error)
|
|
|
|
|
|
_ensure_telegram_mock()
|
|
|
|
from plugins.platforms.telegram.adapter import TelegramAdapter # noqa: E402
|
|
|
|
|
|
def _make_adapter() -> TelegramAdapter:
|
|
adapter = TelegramAdapter(PlatformConfig(enabled=True, token="***"))
|
|
adapter._bot = MagicMock()
|
|
adapter._bot.send_message = AsyncMock(return_value=MagicMock(message_id=42))
|
|
return adapter
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_send_succeeds_when_path_healthy():
|
|
"""Healthy adapter delivers normally; send_message is called."""
|
|
adapter = _make_adapter()
|
|
assert adapter._send_path_degraded is False
|
|
|
|
result = await adapter.send("123", "hello")
|
|
|
|
assert result.success is True
|
|
adapter._bot.send_message.assert_awaited()
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_send_short_circuits_when_path_degraded():
|
|
"""Degraded adapter returns failure WITHOUT calling send_message,
|
|
so cron's live-adapter branch falls through to standalone HTTP."""
|
|
adapter = _make_adapter()
|
|
adapter._send_path_degraded = True
|
|
|
|
result = await adapter.send("123", "hello")
|
|
|
|
assert result.success is False
|
|
assert result.error == "send_path_degraded"
|
|
assert result.retryable is True
|
|
adapter._bot.send_message.assert_not_awaited()
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_reconnect_storm_sets_and_heartbeat_clears_flag(monkeypatch):
|
|
"""_handle_polling_network_error sets the flag; a successful heartbeat
|
|
probe in _verify_polling_after_reconnect clears it."""
|
|
adapter = _make_adapter()
|
|
adapter._app = MagicMock()
|
|
adapter._app.updater = MagicMock()
|
|
adapter._app.updater.running = True
|
|
adapter._app.updater.stop = AsyncMock()
|
|
adapter._app.updater.start_polling = AsyncMock()
|
|
adapter._app.bot = MagicMock()
|
|
adapter._app.bot.get_me = AsyncMock(return_value=MagicMock())
|
|
adapter._polling_error_callback_ref = AsyncMock()
|
|
monkeypatch.setattr(
|
|
"plugins.platforms.telegram.adapter.Update", MagicMock(ALL_TYPES=[])
|
|
)
|
|
|
|
await adapter._handle_polling_network_error(OSError("Bad Gateway"))
|
|
assert adapter._send_path_degraded is True
|
|
|
|
with patch("plugins.platforms.telegram.adapter.asyncio.sleep", new_callable=AsyncMock):
|
|
await adapter._verify_polling_after_reconnect()
|
|
assert adapter._send_path_degraded is False
|