Files
MoviePilot/tests/test_feishu_ws_lifecycle.py
T

185 lines
6.3 KiB
Python

import asyncio
import threading
from types import SimpleNamespace
from unittest.mock import MagicMock, patch
from app.testing.bootstrap import ensure_optional_stub
# 可选三方依赖在 CI / 全新环境可能未安装,补占位避免 app.modules.feishu 导入失败
ensure_optional_stub("psutil")
ensure_optional_stub("dateparser")
ensure_optional_stub("Pinyin2Hanzi", is_pinyin=lambda value: False)
from app.modules.feishu.feishu import Feishu, lark_ws_client_module
def _build_feishu_client() -> Feishu:
"""构造不会启动真实飞书长连接的测试客户端。"""
with (
patch.object(Feishu, "_build_api_client", return_value=MagicMock()),
patch.object(Feishu, "_start_ws_client"),
):
return Feishu(
FEISHU_APP_ID="cli_test_app_id",
FEISHU_APP_SECRET="cli_test_app_secret",
name="feishu-test",
)
async def _wait_forever() -> None:
"""模拟飞书 SDK 创建的长生命周期后台任务。"""
await asyncio.Future()
def test_parallel_ws_clients_keep_independent_sdk_event_loops() -> None:
"""多个飞书配置并发启动时不得覆盖彼此的 SDK 事件循环。"""
clients = [_build_feishu_client(), _build_feishu_client()]
barrier = threading.Barrier(2)
constructed = threading.Event()
construction_lock = threading.Lock()
fake_clients = []
class _ConcurrentWsClient:
"""模拟真实 SDK 通过模块级 loop 与 _select 驱动长连接。"""
def __init__(self, *_args, **_kwargs):
"""登记实例并准备关停路径需要的 SDK 私有状态。"""
self._auto_reconnect = True
self._conn = None
self._conn_url = ""
self._conn_id = ""
self._service_id = ""
self._lock = asyncio.Lock()
self.started = threading.Event()
self.observed_loop = None
with construction_lock:
fake_clients.append(self)
if len(fake_clients) == 2:
constructed.set()
def start(self) -> None:
"""强制两个线程同时解析 SDK 全局,再等待各自停止信号。"""
barrier.wait(timeout=2)
async def run_until_stopped() -> None:
"""记录真实运行循环,并调用 SDK 的模块级阻塞选择。"""
self.observed_loop = asyncio.get_running_loop()
self.started.set()
await lark_ws_client_module._select()
lark_ws_client_module.loop.run_until_complete(run_until_stopped())
with patch(
"app.modules.feishu.feishu.lark.ws.Client",
_ConcurrentWsClient,
):
try:
for client in clients:
client._start_ws_client()
assert constructed.wait(timeout=2)
assert all(fake.started.wait(timeout=2) for fake in fake_clients)
observed_loops = [fake.observed_loop for fake in fake_clients]
assert len(set(observed_loops)) == 2
assert all(loop is not None for loop in observed_loops)
finally:
for client in clients:
client.stop()
assert all(
client._ws_thread is None or not client._ws_thread.is_alive()
for client in clients
)
def test_shutdown_ws_client_cancels_sdk_tasks_before_quiet_disconnect():
"""飞书关机清理应先消费后台任务,再静默关闭 WebSocket 连接。"""
client = _build_feishu_client()
loop = asyncio.new_event_loop()
closed = False
async def _close_conn() -> None:
"""记录测试连接已被关闭。"""
nonlocal closed
closed = True
try:
asyncio.set_event_loop(loop)
task = loop.create_task(_wait_forever())
task.add_done_callback(client._consume_ws_task_result)
client._ws_tasks.add(task)
ws_client = SimpleNamespace(
_auto_reconnect=True,
_conn=SimpleNamespace(close=_close_conn),
_conn_url="wss://msg-frontier.feishu.cn/ws/v2?access_key=secret&ticket=secret",
_conn_id="conn_test",
_service_id="service_test",
_lock=asyncio.Lock(),
)
client._ws_client = ws_client
loop.run_until_complete(client._shutdown_ws_client())
finally:
loop.close()
asyncio.set_event_loop(None)
assert task.cancelled()
assert closed
assert not ws_client._auto_reconnect
assert ws_client._conn is None
assert ws_client._conn_url == ""
assert ws_client._conn_id == ""
assert ws_client._service_id == ""
assert client._ws_tasks == set()
def test_shutdown_ws_client_skips_disconnect_when_sdk_lock_is_busy_and_connection_gone():
"""SDK 已无连接对象时,关机清理不应等待可能长期占用的内部锁。"""
client = _build_feishu_client()
async def _run_shutdown() -> SimpleNamespace:
lock = asyncio.Lock()
await lock.acquire()
ws_client = SimpleNamespace(
_auto_reconnect=True,
_conn=None,
_conn_url="wss://msg-frontier.feishu.cn/ws/v2?access_key=secret&ticket=secret",
_conn_id="conn_test",
_service_id="service_test",
_lock=lock,
)
client._ws_client = ws_client
await asyncio.wait_for(client._shutdown_ws_client(), timeout=0.2)
return ws_client
ws_client = asyncio.run(_run_shutdown())
assert not ws_client._auto_reconnect
assert ws_client._conn is None
assert ws_client._conn_url == ""
assert ws_client._conn_id == ""
assert ws_client._service_id == ""
def test_consume_ws_task_result_suppresses_stop_exception():
"""停止过程中飞书 SDK 后台任务的异常应被取回并降为调试日志。"""
client = _build_feishu_client()
loop = asyncio.new_event_loop()
try:
future = loop.create_future()
future.set_exception(RuntimeError("normal shutdown"))
client._ws_tasks.add(future)
client._stop_event.set()
with (
patch("app.modules.feishu.feishu.logger.debug") as debug_logger,
patch("app.modules.feishu.feishu.logger.error") as error_logger,
):
client._consume_ws_task_result(future)
finally:
loop.close()
debug_logger.assert_called_once()
error_logger.assert_not_called()
assert future not in client._ws_tasks