Files
MoviePilot/tests/test_main_direct_execution.py

46 lines
1.5 KiB
Python
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import os
import subprocess
import sys
from pathlib import Path
PROJECT_ROOT = Path(__file__).parents[1]
MAIN_PATH = PROJECT_ROOT / "app" / "main.py"
def test_main_script_does_not_shadow_stdlib_platform(tmp_path):
"""PyCharm 脚本启动路径必须解析到标准库 platform。"""
probe = "\n".join(
(
"import runpy",
"import sys",
# CI 无 app.application.site.sites 二进制模块,先补垫片再执行 main.py与 conftest 同源);
# 必须在篡改 sys.path / 摘除 platform 之前调用,避免真实依赖链受探针环境影响。
"from app.testing.bootstrap import ensure_sites_stub",
"ensure_sites_stub()",
f"sys.path.insert(0, {str(MAIN_PATH.parent)!r})",
"sys.modules.pop('platform', None)",
f"runpy.run_path({str(MAIN_PATH)!r}, run_name='pycharm_main_probe')",
"import platform",
"assert hasattr(platform, 'python_implementation')",
f"assert {str(MAIN_PATH.parent)!r} not in str(getattr(platform, '__file__', ''))",
)
)
env = {
**os.environ,
"CONFIG_DIR": str(tmp_path / "config"),
"MOVIEPILOT_AUTO_UPDATE": "off",
}
result = subprocess.run(
[sys.executable, "-c", probe],
cwd=PROJECT_ROOT,
env=env,
capture_output=True,
text=True,
timeout=30,
check=False,
)
assert result.returncode == 0, result.stderr