test(regulatory-info-package): 覆盖材料包主链路
This commit is contained in:
13
tests/test_regulatory_info_package_summary.py
Normal file
13
tests/test_regulatory_info_package_summary.py
Normal file
@@ -0,0 +1,13 @@
|
||||
from review_agent.regulatory_info_package.services.summary import build_assistant_summary
|
||||
|
||||
|
||||
def test_build_assistant_summary_puts_zip_first():
|
||||
exports = [
|
||||
{"file_name": "CH1.4 申请表.docx", "download_url": "/docx"},
|
||||
{"file_name": "第1章 监管信息(预生成版).zip", "download_url": "/zip", "export_type": "zip"},
|
||||
]
|
||||
|
||||
summary = build_assistant_summary(batch_no="RIP-1", exports=exports, failed_files=[])
|
||||
|
||||
assert summary.index("第1章 监管信息(预生成版).zip") < summary.index("CH1.4 申请表.docx")
|
||||
|
||||
Reference in New Issue
Block a user