| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161 |
- """Tests for repository-owned Python release versions."""
- from __future__ import annotations
- import json
- import runpy
- import stat
- from pathlib import Path
- from types import SimpleNamespace
- import pytest
- ROOT = Path(__file__).resolve().parents[3]
- SCRIPT = ROOT / "scripts" / "build-python-release.py"
- build_python_release = SimpleNamespace(**runpy.run_path(str(SCRIPT)))
- def helper_header(target: str) -> bytes:
- header = bytearray(8)
- header[:4] = b"\xcf\xfa\xed\xfe"
- cpu_type = 0x01000007 if target == "macos-x64" else 0x0100000C
- header[4:8] = cpu_type.to_bytes(4, "little")
- return bytes(header)
- def test_repository_version_matches_root_package_json() -> None:
- expected = json.loads((ROOT / "package.json").read_text())["version"]
- assert build_python_release.repository_version() == expected
- def test_release_tag_is_optional_for_non_release_builds() -> None:
- build_python_release.validate_release_tag(None, "1.2.3")
- def test_release_tag_must_match_repository_version() -> None:
- build_python_release.validate_release_tag("python-v1.2.3", "1.2.3")
- with pytest.raises(ValueError, match="expected 'python-v1.2.3'"):
- build_python_release.validate_release_tag("python-v1.2.4", "1.2.3")
- def test_repository_version_rejects_non_stable_versions(tmp_path: Path) -> None:
- (tmp_path / "package.json").write_text('{"version":"1.2.3-dev"}\n')
- with pytest.raises(ValueError, match="must be stable X.Y.Z"):
- build_python_release.repository_version(tmp_path)
- def test_stage_runtime_copies_executable_and_spawn_helper(tmp_path: Path) -> None:
- executable = tmp_path / "dsh-jsonrpc-agent-pkg-macos-arm64"
- executable.write_bytes(b"runtime")
- executable.chmod(0o755)
- spawn_helper = Path(f"{executable}-spawn-helper")
- spawn_helper.write_bytes(helper_header("macos-arm64"))
- spawn_helper.chmod(0o751)
- destination = tmp_path / "staging"
- build_python_release.stage_runtime(
- destination,
- "1.2.3",
- executable,
- executable.name,
- )
- runtime_dir = destination / "src" / "deepseek_harness_runtime" / "runtime"
- assert (runtime_dir / executable.name).read_bytes() == b"runtime"
- copied_helper = runtime_dir / spawn_helper.name
- assert copied_helper.read_bytes() == helper_header("macos-arm64")
- assert copied_helper.stat().st_mode & stat.S_IXUSR
- def test_stage_runtime_rejects_missing_spawn_helper(tmp_path: Path) -> None:
- executable = tmp_path / "dsh-jsonrpc-agent-pkg-macos-arm64"
- executable.write_bytes(b"runtime")
- executable.chmod(0o755)
- with pytest.raises(FileNotFoundError, match="spawn helper"):
- build_python_release.stage_runtime(
- tmp_path / "staging",
- "1.2.3",
- executable,
- executable.name,
- )
- def test_stage_runtime_rejects_unsupported_executable_name(tmp_path: Path) -> None:
- executable = tmp_path / "custom-runtime"
- executable.write_bytes(b"runtime")
- executable.chmod(0o755)
- with pytest.raises(
- ValueError,
- match=(
- "unsupported runtime executable 'custom-runtime'; expected one of: "
- "dsh-jsonrpc-agent-pkg-linux-arm64, dsh-jsonrpc-agent-pkg-linux-x64, "
- "dsh-jsonrpc-agent-pkg-macos-arm64"
- ),
- ):
- build_python_release.stage_runtime(
- tmp_path / "staging",
- "1.2.3",
- executable,
- executable.name,
- )
- @pytest.mark.parametrize("target", ["linux-x64", "linux-arm64"])
- def test_stage_runtime_copies_linux_executable_without_spawn_helper(
- tmp_path: Path, target: str
- ) -> None:
- executable = tmp_path / f"dsh-jsonrpc-agent-pkg-{target}"
- executable.write_bytes(b"runtime")
- executable.chmod(0o755)
- destination = tmp_path / "staging"
- build_python_release.stage_runtime(destination, "1.2.3", executable, executable.name)
- runtime_dir = destination / "src" / "deepseek_harness_runtime" / "runtime"
- runtime_files = [path.name for path in runtime_dir.glob("dsh-jsonrpc-agent-pkg-*")]
- assert runtime_files == [executable.name]
- @pytest.mark.parametrize("target", ["macos-x64", "macos-arm64"])
- def test_spawn_helper_binary_target(target: str) -> None:
- assert build_python_release.spawn_helper_binary_target(helper_header(target)) == target
- def test_stage_runtime_rejects_mismatched_spawn_helper(tmp_path: Path) -> None:
- executable = tmp_path / "dsh-jsonrpc-agent-pkg-macos-arm64"
- executable.write_bytes(b"runtime")
- executable.chmod(0o755)
- spawn_helper = Path(f"{executable}-spawn-helper")
- spawn_helper.write_bytes(helper_header("macos-x64"))
- spawn_helper.chmod(0o755)
- with pytest.raises(ValueError, match="expected macos-arm64, found macos-x64"):
- build_python_release.stage_runtime(
- tmp_path / "staging",
- "1.2.3",
- executable,
- executable.name,
- )
- def test_stage_runtime_rejects_non_binary_spawn_helper(tmp_path: Path) -> None:
- executable = tmp_path / "dsh-jsonrpc-agent-pkg-macos-arm64"
- executable.write_bytes(b"runtime")
- executable.chmod(0o755)
- spawn_helper = Path(f"{executable}-spawn-helper")
- spawn_helper.write_bytes(b"helper")
- spawn_helper.chmod(0o755)
- with pytest.raises(ValueError, match="unsupported format or architecture"):
- build_python_release.stage_runtime(
- tmp_path / "staging",
- "1.2.3",
- executable,
- executable.name,
- )
|