mirror of https://github.com/pyodide/pyodide.git
53 lines
1.8 KiB
Python
53 lines
1.8 KiB
Python
import shutil
|
|
import subprocess
|
|
|
|
from pathlib import Path
|
|
|
|
import pytest
|
|
|
|
from pyodide_build import buildpkg
|
|
from pyodide_build.io import parse_package_config
|
|
|
|
|
|
def test_download_and_extract(monkeypatch):
|
|
monkeypatch.setattr(subprocess, "run", lambda *args, **kwargs: True)
|
|
monkeypatch.setattr(buildpkg, "check_checksum", lambda *args, **kwargs: True)
|
|
monkeypatch.setattr(shutil, "unpack_archive", lambda *args, **kwargs: True)
|
|
|
|
test_pkgs = []
|
|
|
|
# tarballname == version
|
|
test_pkgs.append(parse_package_config("./packages/scipy/meta.yaml"))
|
|
test_pkgs.append(parse_package_config("./packages/numpy/meta.yaml"))
|
|
|
|
# tarballname != version
|
|
test_pkgs.append(
|
|
{
|
|
"package": {"name": "pyyaml", "version": "5.3.1"},
|
|
"source": {
|
|
"url": "https://files.pythonhosted.org/packages/64/c2/b80047c7ac2478f9501676c988a5411ed5572f35d1beff9cae07d321512c/PyYAML-5.3.1.tar.gz"
|
|
},
|
|
}
|
|
)
|
|
|
|
for pkg in test_pkgs:
|
|
packagedir = pkg["package"]["name"] + "-" + pkg["package"]["version"]
|
|
buildpath = Path(pkg["package"]["name"]) / "build"
|
|
srcpath = buildpkg.download_and_extract(buildpath, packagedir, pkg, args=None)
|
|
|
|
assert srcpath.name.lower().endswith(packagedir.lower())
|
|
|
|
|
|
@pytest.mark.parametrize("is_library", [True, False])
|
|
def test_run_script(is_library, tmpdir):
|
|
build_dir = Path(tmpdir.mkdir("build"))
|
|
src_dir = Path(tmpdir.mkdir("build/package_name"))
|
|
script = "touch out.txt"
|
|
pkg = {"build": {"script": script, "library": is_library}}
|
|
buildpkg.run_script(build_dir, src_dir, pkg)
|
|
assert (src_dir / "out.txt").exists()
|
|
if is_library:
|
|
assert (build_dir / ".packaged").exists()
|
|
else:
|
|
assert not (build_dir / ".packaged").exists()
|