14 lines
548 B
Python
14 lines
548 B
Python
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")
|
|
|