mirror of
https://github.com/rennf93/roboco.git
synced 2026-08-03 07:23:24 +02:00
40 lines
1.4 KiB
Python
40 lines
1.4 KiB
Python
"""The X-mentions orchestrator loop is fully dormant when disabled (default).
|
|||
|
|
|
||
|
|
With ``x_engine_enabled`` off, ``_x_mentions_poll_loop`` must return
|
||
|
|
immediately — no sleep, no HTTP, no DB — so a standard deployment behaves
|
||
|
|
exactly as today.
|
||
|
|
"""
|
||
|
|
|
||
|
|
from __future__ import annotations
|
||
|
|
|
||
|
|
import asyncio
|
||
|
|
import types
|
||
|
|
from typing import cast
|
||
|
|
|
||
|
|
import pytest
|
||
|
|
from roboco.config import settings as cfg
|
||
|
|
from roboco.runtime.orchestrator import AgentOrchestrator
|
||
|
|
|
||
|
|
|
||
|
|
@pytest.mark.asyncio
|
||
|
|
async def test_x_mentions_loop_returns_immediately_when_disabled(
|
||
|
|
monkeypatch: pytest.MonkeyPatch,
|
||
|
|
) -> None:
|
||
|
|
monkeypatch.setattr(cfg, "x_engine_enabled", False)
|
||
|
|
stub = cast("AgentOrchestrator", types.SimpleNamespace(_running=True))
|
||
|
|
# Gated off -> returns at once. If the gate were missing it would sleep the
|
||
|
|
# full interval and this wait_for would time out.
|
||
|
|
await asyncio.wait_for(AgentOrchestrator._x_mentions_poll_loop(stub), timeout=1.0)
|
||
|
|
|
||
|
|
|
||
|
|
@pytest.mark.asyncio
|
||
|
|
async def test_x_mentions_loop_dormant_when_only_replies_disabled(
|
||
|
|
monkeypatch: pytest.MonkeyPatch,
|
||
|
|
) -> None:
|
||
|
|
"""Engine on but the reply sub-switch off (the release-posts-only default):
|
||
|
|
the mentions loop still never runs."""
|
||
|
|
monkeypatch.setattr(cfg, "x_engine_enabled", True)
|
||
|
|
monkeypatch.setattr(cfg, "x_replies_enabled", False)
|
||
|
|
stub = cast("AgentOrchestrator", types.SimpleNamespace(_running=True))
|
||
|
|
await asyncio.wait_for(AgentOrchestrator._x_mentions_poll_loop(stub), timeout=1.0)
|