mirror of
https://github.com/jxxghp/MoviePilot.git
synced 2026-09-04 15:09:46 +08:00
- 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 清单校验排除下划线内部目录
77 lines
3.1 KiB
Python
77 lines
3.1 KiB
Python
# -*- coding: utf-8 -*-
|
|
"""订阅自定义识别词快照用例:下载时保存完整识别词,整理时快照优先、实时反查兜底。
|
|
|
|
回归场景:订阅做季+集组合偏移(如 S04E05→S01E71),下载阶段生效但整理阶段因实时反查订阅
|
|
返回空而静默回退全局识别词、丢失偏移。修复后由订阅链在发起下载时将完整识别词作为入参传入
|
|
下载模块并存档(避免下载模块反查订阅的同级循环依赖),整理时优先复用该快照。
|
|
"""
|
|
from types import SimpleNamespace
|
|
|
|
import app.chain._mixins as mixins_module
|
|
from app.chain.transfer import TransferChain
|
|
|
|
|
|
def _fake_history(custom_words=None, note=None):
|
|
"""构造仅含测试所需字段的下载历史替身。"""
|
|
return SimpleNamespace(custom_words=custom_words, note=note)
|
|
|
|
|
|
def test_transfer_prefers_snapshot_over_live_lookup(monkeypatch):
|
|
"""整理时存在下载快照,应直接使用快照且不触发实时反查订阅。"""
|
|
called = {"lookup": False}
|
|
|
|
class _GuardSubscribeChain:
|
|
def get_subscribe_by_source(self, source):
|
|
# 一旦走到实时反查即视为失败:快照存在时不应触发
|
|
called["lookup"] = True
|
|
return SimpleNamespace(custom_words="不应使用\n实时反查")
|
|
|
|
monkeypatch.setattr(mixins_module, "SubscribeChain", _GuardSubscribeChain)
|
|
|
|
history = _fake_history(
|
|
custom_words="S04 => S01\n第 <> 集 >> EP+66",
|
|
note={"source": "Subscribe|{...}"},
|
|
)
|
|
result = TransferChain._get_subscribe_custom_words(history)
|
|
|
|
assert result == ["S04 => S01", "第 <> 集 >> EP+66"]
|
|
assert called["lookup"] is False
|
|
|
|
|
|
def test_transfer_falls_back_to_live_lookup_without_snapshot(monkeypatch):
|
|
"""整理时无快照(历史旧记录),应按下载来源实时反查订阅取识别词。"""
|
|
|
|
class _FakeSubscribeChain:
|
|
def get_subscribe_by_source(self, source):
|
|
assert source == "Subscribe|{...}"
|
|
return SimpleNamespace(custom_words="A => B")
|
|
|
|
monkeypatch.setattr(mixins_module, "SubscribeChain", _FakeSubscribeChain)
|
|
|
|
history = _fake_history(custom_words=None, note={"source": "Subscribe|{...}"})
|
|
result = TransferChain._get_subscribe_custom_words(history)
|
|
|
|
assert result == ["A => B"]
|
|
|
|
|
|
def test_transfer_returns_none_when_unavailable(monkeypatch):
|
|
"""无下载记录、note 非字典、或来源反查不到订阅时返回 None(回退全局识别词)。"""
|
|
|
|
class _NoneSubscribeChain:
|
|
def get_subscribe_by_source(self, source):
|
|
return None
|
|
|
|
monkeypatch.setattr(mixins_module, "SubscribeChain", _NoneSubscribeChain)
|
|
|
|
# 无下载记录
|
|
assert TransferChain._get_subscribe_custom_words(None) is None
|
|
# 无快照且 note 非字典:不应触发实时反查
|
|
assert TransferChain._get_subscribe_custom_words(_fake_history(note="不是字典")) is None
|
|
# 无快照、来源可解析但反查不到订阅
|
|
assert (
|
|
TransferChain._get_subscribe_custom_words(
|
|
_fake_history(note={"source": "Subscribe|{}"})
|
|
)
|
|
is None
|
|
)
|