File size: 4,963 Bytes
ea8c728 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 | from __future__ import annotations
import subprocess
from pathlib import Path
import tarfile
import tomllib
import zipfile
import pytest
import shinka
import shinka.configs
from shinka.cli import launch as cli_launch
from shinka.release_check import find_ignored_archive_members
REPO_ROOT = Path(__file__).resolve().parents[1]
def _read_pyproject() -> dict:
return tomllib.loads((REPO_ROOT / "pyproject.toml").read_text(encoding="utf-8"))
def _make_git_repo(tmp_path: Path) -> Path:
repo_root = tmp_path / "repo"
repo_root.mkdir()
subprocess.run(["git", "init"], cwd=repo_root, check=True, capture_output=True)
(repo_root / ".gitignore").write_text("ignored.txt\n*.tmp\n", encoding="utf-8")
return repo_root
def _make_tar_gz(archive_path: Path, members: dict[str, str]) -> None:
with tarfile.open(archive_path, "w:gz") as archive:
for relpath, content in members.items():
file_path = archive_path.parent / relpath
file_path.parent.mkdir(parents=True, exist_ok=True)
file_path.write_text(content, encoding="utf-8")
archive.add(file_path, arcname=relpath)
def _make_whl(archive_path: Path, members: dict[str, str]) -> None:
with zipfile.ZipFile(archive_path, "w") as archive:
for relpath, content in members.items():
archive.writestr(relpath, content)
def test_project_metadata_targets_pypi_release():
pyproject = _read_pyproject()
project = pyproject["project"]
assert project["name"] == "shinka-evolve"
assert project["readme"] == "README.md"
assert project["license"] == "Apache-2.0"
assert project["scripts"] == {
"shinka_launch": "shinka.cli.launch:main",
"shinka_run": "shinka.cli.run:main",
"shinka_visualize": "shinka.webui.visualization:main",
}
setuptools_cfg = pyproject["tool"]["setuptools"]
assert "script-files" not in setuptools_cfg
assert setuptools_cfg["include-package-data"] is False
assert pyproject["tool"]["setuptools"]["package-data"] == {
"shinka": [
"configs/*.yaml",
"configs/*/*.yaml",
"favicon.png",
"embed/providers/*.csv",
"llm/providers/*.csv",
"webui/*.html",
"webui/*.png",
"webui/*.jpg",
]
}
def test_readme_documents_package_install():
readme = (REPO_ROOT / "README.md").read_text(encoding="utf-8")
assert "pip install shinka-evolve" in readme
assert "uv pip install shinka-evolve" in readme
assert "CHANGELOG.md" in readme
assert "CONTRIBUTING.md" in readme
assert "release_notes.md" not in readme
def test_changelog_tracks_current_package_version():
changelog = (REPO_ROOT / "CHANGELOG.md").read_text(encoding="utf-8")
assert shinka.__version__ == "0.0.2"
assert "# Changelog" in changelog
assert f"## {shinka.__version__} -" in changelog
def test_packaged_hydra_configs_live_inside_package():
config_path = Path(shinka.__file__).resolve().parent / "configs" / "config.yaml"
assert config_path.exists()
def test_packaged_hydra_configs_are_importable():
assert Path(shinka.configs.__file__).resolve().name == "__init__.py"
def test_shinka_launch_preprocesses_global_args():
processed = cli_launch.preprocess_args(
["task=circle_packing", "variant=default", "verbose=true"]
)
assert processed == [
"task@_global_=circle_packing",
"variant@_global_=default",
"verbose=true",
]
def test_release_check_flags_gitignored_members(tmp_path: Path):
repo_root = _make_git_repo(tmp_path)
archive_path = tmp_path / "artifact.tar.gz"
_make_tar_gz(
archive_path,
{
"ok.txt": "ok\n",
"ignored.txt": "nope\n",
"nested/file.tmp": "nope\n",
},
)
offending = find_ignored_archive_members(repo_root, [archive_path])
assert offending == {
archive_path.name: ["ignored.txt", "nested/file.tmp"],
}
def test_release_check_handles_wheels(tmp_path: Path):
repo_root = _make_git_repo(tmp_path)
archive_path = tmp_path / "artifact.whl"
_make_whl(
archive_path,
{
"ok.py": "print('ok')\n",
"ignored.txt": "nope\n",
},
)
offending = find_ignored_archive_members(repo_root, [archive_path])
assert offending == {archive_path.name: ["ignored.txt"]}
@pytest.mark.parametrize("archive_name", ["artifact.tar.gz", "artifact.whl"])
def test_release_check_accepts_clean_archives(tmp_path: Path, archive_name: str):
repo_root = _make_git_repo(tmp_path)
archive_path = tmp_path / archive_name
members = {"pkg/module.py": "x = 1\n", "README.md": "ok\n"}
if archive_name.endswith(".whl"):
_make_whl(archive_path, members)
else:
_make_tar_gz(archive_path, members)
assert find_ignored_archive_members(repo_root, [archive_path]) == {}
|