mirror of
https://github.com/jxxghp/MoviePilot.git
synced 2026-08-31 13:07:56 +08:00
* fix(resource): select free-threaded extension ABI * chore(deps): require moviepilot-rust 0.2.9 * perf: add free-threaded runtime comparison * feat: add free-threaded runtime profile * chore(deps): require moviepilot-rust 0.3.0 * test: isolate system endpoint import graph * fix(docker): preserve runtime profile during recovery * feat(runtime): expose active GIL state * feat(plugin): log GIL fallback attribution * test: refresh runtime observability dependency baseline * fix(plugin): validate the active uv runtime profile * test(runtime): expand free-threaded benchmark evidence * docs(runtime): define v3t governance gates * test(runtime): separate rust benchmark modes * docs: sync free-threaded architecture baseline * perf: add PostgreSQL driver comparison * docs(runtime): record final free-threaded evidence * fix(runtime): converge dual-profile dependency verification * fix(runtime): scope Python 3.14 warning filter * fix(runtime): match actual oss2 syntax warning * docs(runtime): refresh free-threaded benchmark evidence * test(architecture): refresh runtime dependency baseline * ci: skip unused Trivy Java database * build: exclude local verification artifacts * docs(runtime): refresh PostgreSQL driver benchmarks * docs(runtime): record plugin restore acceptance * docs(runtime): record amd64 candidate acceptance * ci: pin beta image publisher action * test(architecture): merge runtime dependency baseline * feat(runtime): expose Python GIL status * docs(runtime): document Python runtime status fields
107 lines
3.4 KiB
Python
107 lines
3.4 KiB
Python
import tomllib
|
|
from pathlib import Path
|
|
from types import SimpleNamespace
|
|
|
|
import pytest
|
|
|
|
from app.doctor import dependencies as dependency_doctor
|
|
from app.foundation import environment
|
|
from app.runtime import dependencies
|
|
|
|
|
|
def test_free_threaded_runtime_tracks_interpreter_build(monkeypatch):
|
|
monkeypatch.setattr(
|
|
environment.sysconfig,
|
|
"get_config_var",
|
|
lambda name: 1 if name == "Py_GIL_DISABLED" else None,
|
|
)
|
|
|
|
assert environment.is_free_threaded_runtime() is True
|
|
|
|
|
|
def test_gil_status_tracks_current_interpreter_state(monkeypatch):
|
|
monkeypatch.setattr(environment.sys, "_is_gil_enabled", lambda: False)
|
|
|
|
assert environment.is_gil_enabled() is False
|
|
|
|
|
|
def test_runtime_dependency_group_tracks_interpreter_abi(monkeypatch):
|
|
monkeypatch.setattr(dependencies, "is_free_threaded_runtime", lambda: False)
|
|
assert dependencies.runtime_dependency_group() == "runtime-standard"
|
|
|
|
monkeypatch.setattr(dependencies, "is_free_threaded_runtime", lambda: True)
|
|
assert dependencies.runtime_dependency_group() == "runtime-free-threaded"
|
|
|
|
|
|
def test_runtime_requirements_include_project_and_active_group(tmp_path: Path, monkeypatch):
|
|
project_file = tmp_path / "pyproject.toml"
|
|
project_file.write_text(
|
|
"""
|
|
[project]
|
|
dependencies = ["shared==1"]
|
|
|
|
[dependency-groups]
|
|
runtime-standard = ["standard==2"]
|
|
runtime-free-threaded = ["free-threaded==3"]
|
|
""",
|
|
encoding="utf-8",
|
|
)
|
|
monkeypatch.setattr(
|
|
dependencies,
|
|
"runtime_dependency_group",
|
|
lambda: "runtime-free-threaded",
|
|
)
|
|
|
|
assert list(dependencies.iter_runtime_requirement_strings(project_file)) == [
|
|
"shared==1",
|
|
"free-threaded==3",
|
|
]
|
|
assert list(dependencies.iter_runtime_profile_requirement_strings(project_file)) == [
|
|
"free-threaded==3",
|
|
]
|
|
|
|
|
|
def test_runtime_profiles_share_gil_safe_crcmod_distribution():
|
|
project_file = Path(__file__).resolve().parents[1] / "pyproject.toml"
|
|
with project_file.open("rb") as file:
|
|
document = tomllib.load(file)
|
|
|
|
assert "crcmod-plus==2.3.1" in document["project"]["dependencies"]
|
|
groups = document["dependency-groups"]
|
|
assert all(
|
|
not requirement.lower().startswith("crcmod")
|
|
for group in ("runtime-standard", "runtime-free-threaded")
|
|
for requirement in groups[group]
|
|
)
|
|
assert {
|
|
"package": {"name": "oss2"},
|
|
"dependencies": ["crcmod"],
|
|
} in document["tool"]["uv"]["exclude-dependencies"]
|
|
|
|
|
|
def test_full_dependency_probe_rejects_psycopg_python_fallback(monkeypatch):
|
|
"""V3t 构建不得把 psycopg 纯 Python 实现误认为可发布能力。"""
|
|
modules = {
|
|
"moviepilot_rust": SimpleNamespace(
|
|
is_available=lambda: True,
|
|
jieba_cut=lambda _value: ["中文", "分词"],
|
|
zhconv_fast=lambda value, _target: value,
|
|
),
|
|
"crcmod.crcmod": SimpleNamespace(_usingExtension=True),
|
|
"psycopg": SimpleNamespace(pq=SimpleNamespace(__impl__="python")),
|
|
}
|
|
monkeypatch.setattr(
|
|
dependency_doctor,
|
|
"import_module",
|
|
lambda name: modules.get(name, SimpleNamespace()),
|
|
)
|
|
monkeypatch.setattr(
|
|
dependency_doctor.sysconfig,
|
|
"get_config_var",
|
|
lambda name: 1 if name == "Py_GIL_DISABLED" else None,
|
|
)
|
|
monkeypatch.setattr(dependency_doctor.sys, "_is_gil_enabled", lambda: False)
|
|
|
|
with pytest.raises(RuntimeError, match="psycopg C 实现不可用"):
|
|
dependency_doctor.main(full=True)
|