feat: add exact subtitle search

This commit is contained in:
jxxghp
2026-06-09 17:04:17 +08:00
parent e3c5a94c52
commit 210aac0937
8 changed files with 903 additions and 7 deletions

View File

@@ -1,3 +1,5 @@
import os
import time
from datetime import datetime, timezone
from types import SimpleNamespace
@@ -389,6 +391,136 @@ def test_rust_indexer_parser_handles_jinja_pyquery_filters_and_links():
}]
def test_rust_indexer_subtitle_parser_dispatches_to_extension(monkeypatch):
"""
Rust 字幕解析入口应将站点配置透传给扩展函数。
"""
calls = []
expected = [{"title": "Green Snake"}]
def fake_parse_indexer_subtitles_fast(html_text, domain, list_config, fields, result_num):
"""
记录字幕解析扩展入口调用参数。
"""
calls.append((html_text, domain, list_config, fields, result_num))
return expected
fake_extension = SimpleNamespace(
is_available=lambda: True,
parse_indexer_subtitles_fast=fake_parse_indexer_subtitles_fast,
)
monkeypatch.setattr(rust_accel, "_moviepilot_rust", fake_extension)
fields = {
"language_icon": {"selector": "div:nth-child(1) img", "attribute": "src"},
"title": {"selector": 'div:nth-child(2) a[href*="downloadsubs.php"]'},
}
list_config = {"selector": "#subtitles-table > div"}
result = rust_accel.parse_indexer_subtitles(
html_text="<div></div>",
domain="https://hhanclub.net/",
list_config=list_config,
fields=fields,
result_num=100,
)
assert result == expected
assert calls == [("<div></div>", "https://hhanclub.net/", list_config, fields, 100)]
@pytest.mark.skipif(
os.environ.get("MP_RUST_PERF_TEST") != "1",
reason="性能测试仅在显式开启 MP_RUST_PERF_TEST=1 时运行",
)
def test_rust_subtitle_parser_is_several_times_faster_than_python(monkeypatch):
"""
Rust 字幕解析在生产 SiteSpider 路径下应显著快于 Python 兜底解析。
"""
if not hasattr(rust_accel._moviepilot_rust, "parse_indexer_subtitles_fast"):
pytest.skip("当前 Rust 扩展未包含字幕解析入口")
def subtitle_row(index: int) -> str:
"""
构造憨憨新版字幕卡片行,放大样本以稳定性能对比。
"""
return f"""
<div class="grid grid-cols-[10%_60%_10%_10%_10%]">
<div><img src="pic/flag/china.gif"></div>
<div>
<a href="downloadsubs.php?torrentid={index}&amp;subid={index + 1000}">
Example Show S01E03 1080p WEB-DL CHS {index}
</a>
<a href="https://hhanclub.net/userdetails.php?id={index}"><b>tester{index}</b></a>
</div>
<div><div>111.99&nbsp;KB</div></div>
<div><span title="2026-04-21 20:54:37">1月18天</span></div>
<div><a href="report.php?subtitle={index + 1000}">举报</a></div>
</div>
"""
html = f'<div id="subtitles-table">{"".join(subtitle_row(index) for index in range(600))}</div>'
indexer = {
"id": "hhanclub",
"name": "憨憨",
"domain": "https://hhanclub.net/",
"public": False,
"subtitles": {
"list": {"selector": "#subtitles-table > div"},
"fields": {
"language_icon": {"selector": "div:nth-child(1) img", "attribute": "src"},
"title": {"selector": 'div:nth-child(2) a[href*="downloadsubs.php"]'},
"download": {
"selector": 'div:nth-child(2) a[href*="downloadsubs.php"]',
"attribute": "href",
},
"size": {"selector": "div:nth-child(3)"},
"date_added": {"selector": "div:nth-child(4) span", "attribute": "title"},
"date_elapsed": {"selector": "div:nth-child(4) span"},
"grabs": {"defualt_value": 0},
"uploader": {"selector": 'div:nth-child(2) a[href*="userdetails.php"]'},
"report": {"selector": 'div:nth-child(5) a[href*="report.php"]', "attribute": "href"},
},
"result_num": 600,
},
}
def best_time(parse_func):
"""
多次运行取最短时间,降低偶发调度抖动对倍数判断的影响。
"""
elapsed_times = []
result = None
for _ in range(5):
start = time.perf_counter()
result = parse_func()
elapsed_times.append(time.perf_counter() - start)
return min(elapsed_times), result
def parse_with_python():
"""
强制禁用 Rust 字幕解析,测量 Python 兜底解析路径。
"""
with monkeypatch.context() as patch_context:
patch_context.setattr(rust_accel, "parse_indexer_subtitles", lambda **_kwargs: None)
return SiteSpider(indexer, keyword="Example Show", search_type="subtitles").parse(html)
def parse_with_rust():
"""
使用生产配置中的 Rust 字幕解析路径。
"""
return SiteSpider(indexer, keyword="Example Show", search_type="subtitles").parse(html)
monkeypatch.setattr(settings, "RUST_ACCEL", True)
python_time, python_result = best_time(parse_with_python)
rust_time, rust_result = best_time(parse_with_rust)
assert len(rust_result) == len(python_result) == 600
assert rust_result[0] == python_result[0]
assert rust_time * 3 <= python_time, (
f"Rust 字幕解析未达到 3 倍性能要求python={python_time:.6f}s, rust={rust_time:.6f}s"
)
def test_rust_indexer_parser_handles_default_values_and_template_arithmetic():
"""
Rust indexer 解析应支持 defualt_value、Jinja int filter 和模板算术表达式。

View File

@@ -0,0 +1,116 @@
import pytest
from app.api.endpoints.search import _parse_media_type
from app.chain.search import SearchChain
from app.core.context import MediaInfo, SubtitleInfo
from app.schemas.types import MediaType
def test_search_media_type_parser_accepts_agent_values():
"""
搜索入口应兼容前端使用的 movie/tv 媒体类型值。
"""
assert _parse_media_type("movie") == MediaType.MOVIE
assert _parse_media_type("tv") == MediaType.TV
assert _parse_media_type("电影") == MediaType.MOVIE
assert _parse_media_type("电视剧") == MediaType.TV
def test_exact_subtitle_match_keeps_same_tv_episode(monkeypatch):
"""
精确字幕搜索应识别字幕名称,并只保留同一剧集的字幕结果。
"""
chain = object.__new__(SearchChain)
def fail_filter(*_args, **_kwargs):
"""
字幕精确搜索不能调用资源过滤规则。
"""
pytest.fail("字幕精确搜索不应调用过滤规则")
monkeypatch.setattr(chain, "filter_torrents", fail_filter)
mediainfo = MediaInfo(
type=MediaType.TV,
title="Example Show",
original_title="Example Show",
en_title="Example Show",
year="2024",
season=1,
names=["Example Show"],
season_years={1: "2024"},
)
subtitles = [
SubtitleInfo(site_name="SiteA", title="Example Show S01E03 1080p WEB-DL CHS", subtitle_id="1"),
SubtitleInfo(site_name="SiteA", title="Example Show S01E04 1080p WEB-DL CHS", subtitle_id="2"),
SubtitleInfo(site_name="SiteA", title="Example Show S02E03 1080p WEB-DL CHS", subtitle_id="3"),
SubtitleInfo(site_name="SiteA", title="Other Show S01E03 1080p WEB-DL CHS", subtitle_id="4"),
]
result = chain._SearchChain__parse_subtitle_result(
subtitles=subtitles,
mediainfo=mediainfo,
season_episodes={1: [3]},
episode=3,
)
assert [item.subtitle_id for item in result] == ["1"]
def test_exact_subtitle_match_uses_file_name_candidate():
"""
精确字幕搜索应同时识别字幕标题和下载文件名。
"""
chain = object.__new__(SearchChain)
mediainfo = MediaInfo(
type=MediaType.TV,
title="Example Show",
original_title="Example Show",
en_title="Example Show",
year="2024",
season=1,
names=["Example Show"],
season_years={1: "2024"},
)
subtitles = [
SubtitleInfo(
site_name="SiteA",
title="Example Show subtitle package",
file_name="Example.Show.S01E03.1080p.WEB-DL.CHS.srt",
subtitle_id="1",
),
SubtitleInfo(
site_name="SiteA",
title="Example Show subtitle package",
file_name="Example.Show.S01E04.1080p.WEB-DL.CHS.srt",
subtitle_id="2",
),
]
result = chain._SearchChain__parse_subtitle_result(
subtitles=subtitles,
mediainfo=mediainfo,
season_episodes={1: [3]},
episode=3,
)
assert [item.subtitle_id for item in result] == ["1"]
def test_subtitle_search_params_keep_episode():
"""
精确字幕搜索缓存参数时应保留集数,便于前端刷新后继续按同一集搜索。
"""
params = SearchChain._normalize_search_params(
{
"keyword": "tmdb:123",
"type": MediaType.TV,
"season": 1,
"episode": 3,
"sites": "1,2",
"result_type": "subtitle",
}
)
assert params["episode"] == "3"
assert params["result_type"] == "subtitle"