refactor(chain): 处理链功能域 mixin 化,清理未使用导入并根治兼容层循环导入

- ChainBase 拆分为 RecognitionMixin/MessageProcessingMixin/NotificationMixin
- TransferChain 拆分为 7 个功能 mixin(_mixins.py),SubscribeChain 音乐订阅域拆出 _music.py
- 斜杠命令交互四件套收敛为 InteractionChainMixin 委托,会话管理器移至 application 层,chain 层不再 re-export
- 模块基础类收敛到 app/modules/_base(notification/mediaserver 语义重命名)
- 清理 app/chain/__init__.py 24 个未使用导入,修正 49 处测试 patch 目标到实际命名空间
- 兼容层 legacy 符号不再并入 __all__,根治 schemas 初始化反向拉起 application.transfer 的循环导入
- 修复 bangumi 集数为字符串时 set_bangumi_info 抛 TypeError
- 新增重复代码等架构门禁测试;capability 清单校验排除下划线内部目录
This commit is contained in:
jxxghp
2026-08-16 16:30:16 +08:00
parent 24671f8f18
commit 7e851dbfa7
102 changed files with 6041 additions and 5888 deletions
+24 -1
View File
@@ -1,3 +1,18 @@
# 把真实 Agent 服务注册进 application 门面(幂等),供测试 patch 门面背后的单例方法。
from app.agent.llm import AgentCapabilityManager, LLMHelper
from app.agent.orchestrator import agent_manager
from app.agent.prompt import prompt_manager
from app.agent.prompt.transfer_redo import build_manual_redo_prompt
from app.application.agent import register_agent_services
register_agent_services(
agent_manager=agent_manager,
prompt_manager=prompt_manager,
capability_manager=AgentCapabilityManager,
llm_helper=LLMHelper,
manual_redo_prompt_builder=build_manual_redo_prompt,
)
import unittest
import asyncio
import sys
@@ -134,10 +149,14 @@ class TestTransferFailedRetryButtons(unittest.TestCase):
with patch(
"app.chain.transfer.TransferHistoryOper"
) as history_oper_cls, patch(
# mixin 中按自身模块命名空间解析 TransferHistoryOper,需同步镜像
"app.chain._mixins.TransferHistoryOper"
) as mixins_history_oper_cls, patch(
"app.chain.transfer.asyncio.run_coroutine_threadsafe",
side_effect=_close_pending_coro,
) as run_task:
history_oper_cls.return_value.get.return_value = history
mixins_history_oper_cls.return_value.get.return_value = history
with patch.object(chain, "post_message") as post_message:
chain.handle_failed_transfer_callback(
callback_data="transfer_ai_retry_34",
@@ -204,13 +223,17 @@ class TestTransferFailedRetryButtons(unittest.TestCase):
with patch(
"app.chain.transfer.TransferHistoryOper"
) as history_oper_cls, patch(
"app.chain.transfer.agent_manager.run_background_prompt",
# mixin 中按自身模块命名空间解析 TransferHistoryOper,需同步镜像
"app.chain._mixins.TransferHistoryOper"
) as mixins_history_oper_cls, patch(
"app.application.agent._agent_manager.run_background_prompt",
side_effect=fake_run_background_prompt,
), patch(
"app.chain.transfer.asyncio.run_coroutine_threadsafe",
side_effect=_run_pending_coro,
):
history_oper_cls.return_value.get.return_value = history
mixins_history_oper_cls.return_value.get.return_value = history
with patch.object(chain, "post_message"), patch.object(
chain, "async_post_message", side_effect=fake_async_post_message
):