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
89 lines
2.6 KiB
Python
89 lines
2.6 KiB
Python
"""Gateway command help rendering tests."""
|
|
|
|
import pytest
|
|
|
|
from gateway.config import Platform
|
|
from gateway.platforms.base import MessageEvent
|
|
from gateway.session import SessionSource
|
|
|
|
|
|
def _make_event(text: str, platform: Platform) -> MessageEvent:
|
|
return MessageEvent(
|
|
text=text,
|
|
source=SessionSource(
|
|
platform=platform,
|
|
chat_id="chat-1",
|
|
user_id="user-1",
|
|
user_name="tester",
|
|
chat_type="dm",
|
|
),
|
|
)
|
|
|
|
|
|
def _make_runner():
|
|
from gateway.run import GatewayRunner
|
|
|
|
return object.__new__(GatewayRunner)
|
|
|
|
|
|
def test_start_is_known_gateway_command():
|
|
"""Telegram sends /start automatically; gateway should intercept it as a no-op."""
|
|
from hermes_cli.commands import GATEWAY_KNOWN_COMMANDS, resolve_command
|
|
|
|
cmd = resolve_command("start")
|
|
assert "start" in GATEWAY_KNOWN_COMMANDS
|
|
assert cmd is not None
|
|
assert cmd.name == "start"
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_help_sanitizes_slash_command_mentions_for_telegram(monkeypatch):
|
|
"""Telegram help output must not expose invalid uppercase/hyphenated slashes."""
|
|
monkeypatch.setattr(
|
|
"agent.skill_commands.get_skill_commands",
|
|
lambda: {
|
|
"/Linear": {"description": "Open Linear"},
|
|
"/Custom-Thing": {"description": "Run a custom thing"},
|
|
},
|
|
)
|
|
|
|
result = await _make_runner()._handle_help_command(
|
|
_make_event("/help", Platform.TELEGRAM)
|
|
)
|
|
|
|
assert "`/linear`" in result
|
|
assert "`/custom_thing`" in result
|
|
assert "`/Linear`" not in result
|
|
assert "`/Custom-Thing`" not in result
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_commands_sanitizes_slash_command_mentions_for_telegram(monkeypatch):
|
|
"""Paginated Telegram /commands output uses Telegram-valid slash mentions."""
|
|
monkeypatch.setattr(
|
|
"agent.skill_commands.get_skill_commands",
|
|
lambda: {"/Linear": {"description": "Open Linear"}},
|
|
)
|
|
|
|
result = await _make_runner()._handle_commands_command(
|
|
_make_event("/commands 999", Platform.TELEGRAM)
|
|
)
|
|
|
|
assert "`/linear`" in result
|
|
assert "`/Linear`" not in result
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_help_keeps_non_telegram_slash_command_mentions_unchanged(monkeypatch):
|
|
"""Only Telegram needs slash mentions rewritten to Telegram command names."""
|
|
monkeypatch.setattr(
|
|
"agent.skill_commands.get_skill_commands",
|
|
lambda: {"/Linear": {"description": "Open Linear"}},
|
|
)
|
|
|
|
result = await _make_runner()._handle_help_command(
|
|
_make_event("/help", Platform.DISCORD)
|
|
)
|
|
|
|
assert "`/Linear`" in result
|