| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334 |
- """关键词搜索离线测试:纯 parser + search_keyword(去重/翻页/截断/SearchError)。"""
- from __future__ import annotations
- import json
- from pathlib import Path
- import pytest
- from core.config import PgConfig, Settings
- from acquisition.crawler import RateLimiter
- from acquisition.search import (
- SearchError,
- parse_search_response,
- parse_weixin,
- parse_xiaohongshu,
- search_douyin_hits,
- search_keyword,
- search_xiaohongshu,
- )
- FIX = Path(__file__).parent / "fixtures"
- def _settings() -> Settings:
- return Settings(
- pg=PgConfig(host="h", port=5432, user="u", password="p", database="d"),
- aiddit_crawler_base_url="http://crawler.test", crawler_timeout=30,
- openrouter_timeout_seconds=90,
- openrouter_model="m",
- openrouter_base_url="b", openrouter_api_key="k",
- llm_model="m", max_cards=12, frames_dir="f", douyin_ratio="540p", data_dir="")
- def _no_wait() -> RateLimiter:
- return RateLimiter(min_interval_seconds=0.0)
- class _Resp:
- def __init__(self, payload): self._p = payload
- def raise_for_status(self): return None
- def json(self): return self._p
- class _FakeClient:
- """按调用次序返回预置 payload;记录每次 post 的 body。"""
- def __init__(self, pages): self.pages = list(pages); self.calls = []; self.closed = False
- def post(self, url, json=None, headers=None, timeout=None):
- self.calls.append(json)
- return _Resp(self.pages.pop(0))
- def close(self): self.closed = True
- class _FakeClientWithUrls:
- """按调用次序返回预置 payload;记录每次 post 的 url/body。"""
- def __init__(self, pages): self.pages = list(pages); self.calls = []; self.closed = False
- def post(self, url, json=None, headers=None, timeout=None):
- self.calls.append({"url": url, "body": json})
- return _Resp(self.pages.pop(0))
- def close(self): self.closed = True
- class _RecordingLimiter:
- def __init__(self):
- self.buckets = []
- def wait(self, bucket: str):
- self.buckets.append(bucket)
- def test_parse_from_fixture():
- resp = json.loads((FIX / "xhs_search_分镜脚本.json").read_text("utf-8"))
- ids, has_more, cursor = parse_search_response(resp)
- assert ids == ["6a2bce890000000006034be4", "68282529000000002100e28c"]
- assert has_more is True and cursor == "2"
- def test_parse_business_error_raises():
- with pytest.raises(SearchError):
- parse_search_response({"code": 10000, "msg": "未知错误", "data": None})
- def test_search_dedup_and_limit():
- # page1 含重复 id,page2 提供更多;limit=3 → 截断且去重
- page1 = {"code": 0, "data": {"has_more": True, "next_cursor": "2",
- "data": [{"id": "a"}, {"id": "a"}, {"id": "b"}]}}
- page2 = {"code": 0, "data": {"has_more": True, "next_cursor": "3",
- "data": [{"id": "b"}, {"id": "c"}, {"id": "d"}]}}
- client = _FakeClient([page1, page2])
- out = search_keyword("分镜", settings=_settings(), http_client=client,
- rate_limiter=_no_wait(), limit=3)
- assert out == ["a", "b", "c"]
- def test_search_stops_on_no_more():
- page1 = {"code": 0, "data": {"has_more": False, "next_cursor": "",
- "data": [{"id": "a"}, {"id": "b"}]}}
- client = _FakeClient([page1])
- out = search_keyword("分镜", settings=_settings(), http_client=client,
- rate_limiter=_no_wait(), limit=10)
- assert out == ["a", "b"] # has_more=False → 不再翻页,不报错
- assert client.calls[0]["keyword"] == "分镜"
- def test_search_business_error_raises():
- client = _FakeClient([{"code": 10000, "msg": "未知错误", "data": None}])
- with pytest.raises(SearchError):
- search_keyword("x", settings=_settings(), http_client=client,
- rate_limiter=_no_wait())
- def test_search_unsupported_platform():
- with pytest.raises(SearchError):
- search_keyword("x", platform="bilibili", settings=_settings(),
- rate_limiter=_no_wait())
- def test_parse_douyin_uses_aweme_id():
- resp = {"code": 0, "data": {"has_more": True, "next_cursor": "10",
- "data": [{"aweme_id": "7618138722512424246"}, {"aweme_id": "7600000000000000000"}]}}
- ids, has_more, cursor = parse_search_response(resp, platform="douyin")
- assert ids == ["7618138722512424246", "7600000000000000000"]
- assert has_more is True and cursor == "10"
- def test_douyin_body_has_account_id_and_params():
- page = {"code": 0, "data": {"has_more": False, "next_cursor": "",
- "data": [{"aweme_id": "a1"}, {"aweme_id": "a2"}]}}
- client = _FakeClient([page])
- out = search_keyword("科普", platform="douyin", content_type="视频",
- settings=_settings(), http_client=client, rate_limiter=_no_wait(), limit=10)
- assert out == ["a1", "a2"] # 用 aweme_id 解析
- body = client.calls[0]
- assert body["account_id"] == "7450041106378522636" # piaoquantv 抖音账号
- assert body["cookie_batch"] == "default" # piaoquantv 抖音必带
- assert body["sort_type"] == "综合排序" # 平台默认(非小红书的"综合")
- assert body["publish_time"] == "不限"
- assert body["cursor"] == "0" # 抖音起始 cursor
- def test_douyin_search_hits_success_does_not_request_aiddit():
- page = {"code": 0, "data": {"has_more": False, "next_cursor": "",
- "data": [{"aweme_id": "a1", "title": "ok"}]}}
- client = _FakeClientWithUrls([page])
- limiter = _RecordingLimiter()
- out = search_douyin_hits(
- "科普",
- settings=_settings(),
- http_client=client,
- rate_limiter=limiter,
- limit=1,
- )
- assert [hit.content_id for hit in out] == ["a1"]
- assert out[0].provider == "piaoquantv"
- assert out[0].raw["title"] == "ok"
- assert len(client.calls) == 1
- assert client.calls[0]["url"].startswith("http://crawapi.piaoquantv.com/")
- assert limiter.buckets == ["douyin"]
- def test_douyin_search_hits_falls_back_to_aiddit_with_separate_body():
- piao_error = {"code": 10000, "msg": "captcha", "data": None}
- aiddit_page = {"code": 0, "data": {"has_more": False, "next_cursor": "",
- "data": [{"aweme_id": "aid-1", "desc": "aiddit"}]}}
- client = _FakeClientWithUrls([piao_error, aiddit_page])
- limiter = _RecordingLimiter()
- out = search_douyin_hits(
- "厦门",
- settings=_settings(),
- http_client=client,
- rate_limiter=limiter,
- limit=1,
- )
- assert out[0].content_id == "aid-1"
- assert out[0].provider == "aiddit"
- assert len(client.calls) == 2
- piao_body = client.calls[0]["body"]
- aiddit_body = client.calls[1]["body"]
- assert piao_body["account_id"] == "7450041106378522636"
- assert piao_body["cookie_batch"] == "default"
- assert piao_body["publish_time"] == "不限"
- assert piao_body["cursor"] == "0"
- assert aiddit_body["cursor"] == ""
- assert aiddit_body["sort_type"] == "最多点赞"
- assert "account_id" not in aiddit_body
- assert "cookie_batch" not in aiddit_body
- assert "publish_time" not in aiddit_body
- assert client.calls[1]["url"].startswith("http://crawler.test/")
- assert limiter.buckets == ["douyin", "douyin"]
- def test_douyin_search_hits_falls_back_when_no_usable_aweme_id():
- piao_empty = {"code": 0, "data": {"has_more": False, "next_cursor": "",
- "data": [{"id": "not-aweme"}]}}
- aiddit_page = {"code": 0, "data": {"has_more": False, "next_cursor": "",
- "data": [{"aweme_id": "aid-2"}]}}
- client = _FakeClientWithUrls([piao_empty, aiddit_page])
- out = search_douyin_hits(
- "厦门",
- settings=_settings(),
- http_client=client,
- rate_limiter=_RecordingLimiter(),
- limit=1,
- )
- assert out[0].provider == "aiddit"
- assert out[0].content_id == "aid-2"
- def test_douyin_search_hits_paginates_with_successful_provider_cursor():
- page1 = {"code": 0, "data": {"has_more": True, "next_cursor": "10",
- "data": [{"aweme_id": "a1"}]}}
- page2 = {"code": 0, "data": {"has_more": False, "next_cursor": "",
- "data": [{"aweme_id": "a2"}]}}
- client = _FakeClientWithUrls([page1, page2])
- out = search_douyin_hits(
- "厦门",
- settings=_settings(),
- http_client=client,
- rate_limiter=_RecordingLimiter(),
- limit=2,
- )
- assert [hit.content_id for hit in out] == ["a1", "a2"]
- assert client.calls[0]["body"]["cursor"] == "0"
- assert client.calls[1]["body"]["cursor"] == "10"
- def test_douyin_search_hits_switches_provider_with_provider_own_cursor():
- piao_page1 = {"code": 0, "data": {"has_more": True, "next_cursor": "10",
- "data": [{"aweme_id": "p1"}]}}
- piao_page2_error = {"code": 10000, "msg": "captcha", "data": None}
- aiddit_page1 = {"code": 0, "data": {"has_more": True, "next_cursor": "12",
- "data": [{"aweme_id": "a1"}]}}
- client = _FakeClientWithUrls([piao_page1, piao_page2_error, aiddit_page1])
- out = search_douyin_hits(
- "厦门",
- settings=_settings(),
- http_client=client,
- rate_limiter=_RecordingLimiter(),
- limit=2,
- )
- assert [(hit.content_id, hit.provider) for hit in out] == [
- ("p1", "piaoquantv"),
- ("a1", "aiddit"),
- ]
- assert client.calls[1]["body"]["cursor"] == "10"
- assert client.calls[2]["body"]["cursor"] == ""
- def test_parse_weixin_cleans_title_and_keeps_url_cover():
- resp = {"code": 0, "data": {"data": [
- {"title": "复旦教授<em class='highlight'>历史科普</em>", "url": "http://mp.weixin.qq.com/s?x=1",
- "cover_url": "https://mmbiz.qpic.cn/a.jpg", "nick_name": "某号", "time": "1天前"},
- {"title": "无链接的应被跳过"}, # 无 url → 跳过
- ]}}
- out = parse_weixin(resp, limit=5)
- assert len(out) == 1
- assert out[0]["title"] == "复旦教授历史科普" # <em> 标记被清掉
- assert out[0]["url"].startswith("http://mp.weixin.qq.com")
- assert out[0]["cover_url"].endswith("a.jpg") and out[0]["nick_name"] == "某号"
- def test_parse_weixin_business_error():
- with pytest.raises(SearchError):
- parse_weixin({"code": 10000, "msg": "x"})
- def test_parse_xiaohongshu_takes_cover_title_from_note_card():
- resp = {"code": 0, "data": {"data": [
- {"id": "abc123", "note_card": {
- "type": "video", "display_title": "社会运行规则",
- "image_list": [{"image_url": "https://ci.xiaohongshu.com/cover.jpg"}],
- "user": {"nickname": "某号"}}},
- {"id": "noimg", "note_card": {"display_title": "无封面应跳过", "image_list": []}},
- ]}}
- out = parse_xiaohongshu(resp, limit=5)
- assert len(out) == 1 # 无封面的被跳过
- assert out[0]["id"] == "abc123" and out[0]["title"] == "社会运行规则"
- assert out[0]["cover_url"].endswith("cover.jpg") and out[0]["nick_name"] == "某号"
- assert out[0]["url"] == "https://www.xiaohongshu.com/explore/abc123"
- def test_xiaohongshu_search_omits_content_type_by_default():
- page = {"code": 0, "data": {"data": [
- {"id": "abc", "note_card": {
- "type": "video",
- "display_title": "混合结果",
- "image_list": [{"image_url": "https://ci.test/c.jpg"}],
- }}
- ]}}
- client = _FakeClient([page])
- out = search_xiaohongshu(
- "符号 视频 灵感 怎么做",
- settings=_settings(),
- http_client=client,
- rate_limiter=_no_wait(),
- limit=1,
- )
- assert out[0]["id"] == "abc"
- assert "content_type" not in client.calls[0]
- def test_parse_xiaohongshu_title_falls_back_to_desc():
- resp = {"code": 0, "data": {"data": [
- {"id": "x1", "note_card": {"display_title": "", "desc": "那些赤裸裸的社会真相!\n第二行",
- "image_list": [{"image_url": "u.jpg"}]}},
- ]}}
- out = parse_xiaohongshu(resp, limit=5)
- assert out[0]["title"] == "那些赤裸裸的社会真相!" # display_title 空 → 取 desc 首行
- def test_parse_xiaohongshu_business_error():
- with pytest.raises(SearchError):
- parse_xiaohongshu({"code": 10000, "msg": "x"})
- def test_xiaohongshu_body_no_account_id():
- page = {"code": 0, "data": {"has_more": False, "next_cursor": "", "data": [{"id": "x1"}]}}
- client = _FakeClient([page])
- search_keyword("科普", platform="xiaohongshu", settings=_settings(),
- http_client=client, rate_limiter=_no_wait())
- body = client.calls[0]
- assert "account_id" not in body # 小红书不带
- assert body["sort_type"] == "综合" and body["cursor"] == ""
|