2022-05-26 03:31:04 +00:00
|
|
|
import argparse
|
2022-02-21 22:27:03 +00:00
|
|
|
from pathlib import Path
|
2020-12-10 19:37:08 +00:00
|
|
|
from time import sleep
|
2022-05-21 20:35:02 +00:00
|
|
|
from typing import Any
|
2020-12-10 19:37:08 +00:00
|
|
|
|
2022-02-21 22:27:03 +00:00
|
|
|
import pytest
|
2020-12-10 19:37:08 +00:00
|
|
|
|
2022-06-08 15:25:12 +00:00
|
|
|
from pyodide_build import buildall, io
|
2020-12-10 19:37:08 +00:00
|
|
|
|
2022-04-09 20:41:10 +00:00
|
|
|
PACKAGES_DIR = Path(__file__).parent / "_test_packages"
|
2020-12-10 19:37:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_generate_dependency_graph():
|
2021-09-02 20:19:23 +00:00
|
|
|
pkg_map = buildall.generate_dependency_graph(PACKAGES_DIR, {"beautifulsoup4"})
|
2020-12-10 19:37:08 +00:00
|
|
|
|
2021-04-14 18:15:31 +00:00
|
|
|
assert set(pkg_map.keys()) == {
|
|
|
|
"soupsieve",
|
|
|
|
"beautifulsoup4",
|
|
|
|
}
|
2020-12-10 19:37:08 +00:00
|
|
|
assert pkg_map["soupsieve"].dependencies == []
|
|
|
|
assert pkg_map["soupsieve"].dependents == {"beautifulsoup4"}
|
|
|
|
assert pkg_map["beautifulsoup4"].dependencies == ["soupsieve"]
|
|
|
|
assert pkg_map["beautifulsoup4"].dependents == set()
|
|
|
|
|
|
|
|
|
2022-06-08 15:25:12 +00:00
|
|
|
@pytest.mark.parametrize(
|
|
|
|
"in_set, out_set",
|
|
|
|
[
|
|
|
|
({"scipy"}, {"scipy", "numpy", "CLAPACK"}),
|
|
|
|
({"scipy", "!numpy"}, set()),
|
|
|
|
({"scipy", "!numpy", "CLAPACK"}, {"CLAPACK"}),
|
|
|
|
({"scikit-learn", "!numpy"}, set()),
|
|
|
|
({"scikit-learn", "scipy", "!joblib"}, {"scipy", "numpy", "CLAPACK"}),
|
|
|
|
({"scikit-learn", "no-numpy-dependents"}, set()),
|
|
|
|
({"scikit-learn", "no-numpy-dependents", "numpy"}, {"numpy"}),
|
|
|
|
],
|
|
|
|
)
|
|
|
|
def test_generate_dependency_graph2(in_set, out_set):
|
|
|
|
pkg_map = buildall.generate_dependency_graph(PACKAGES_DIR, in_set)
|
|
|
|
assert set(pkg_map.keys()) == out_set
|
|
|
|
|
|
|
|
|
|
|
|
def test_generate_dependency_graph_disabled(monkeypatch):
|
|
|
|
def mock_parse_package_config(path):
|
|
|
|
d = io.parse_package_config(path)
|
|
|
|
if "numpy" in str(path):
|
|
|
|
d["package"]["_disabled"] = True
|
|
|
|
return d
|
|
|
|
|
|
|
|
monkeypatch.setattr(buildall, "parse_package_config", mock_parse_package_config)
|
|
|
|
pkg_map = buildall.generate_dependency_graph(PACKAGES_DIR, {"scipy"})
|
|
|
|
assert set(pkg_map.keys()) == set()
|
|
|
|
|
|
|
|
|
2022-05-03 04:09:14 +00:00
|
|
|
def test_generate_packages_json(tmp_path):
|
2022-04-09 20:41:10 +00:00
|
|
|
pkg_map = buildall.generate_dependency_graph(PACKAGES_DIR, {"pkg_1", "pkg_2"})
|
2022-01-24 01:47:04 +00:00
|
|
|
for pkg in pkg_map.values():
|
|
|
|
pkg.file_name = pkg.file_name or pkg.name + ".file"
|
2022-05-03 04:09:14 +00:00
|
|
|
# Write dummy package file for SHA-256 hash verification
|
|
|
|
with open(tmp_path / pkg.file_name, "w") as f:
|
|
|
|
f.write(pkg.name)
|
2021-07-24 16:22:46 +00:00
|
|
|
|
2022-05-03 04:09:14 +00:00
|
|
|
package_data = buildall.generate_packages_json(tmp_path, pkg_map)
|
2021-07-24 16:22:46 +00:00
|
|
|
assert set(package_data.keys()) == {"info", "packages"}
|
2022-06-02 23:40:46 +00:00
|
|
|
assert set(package_data["info"].keys()) == {"arch", "platform", "version"}
|
|
|
|
assert package_data["info"]["arch"] == "wasm32"
|
|
|
|
assert package_data["info"]["platform"].startswith("emscripten")
|
|
|
|
|
2021-07-24 16:22:46 +00:00
|
|
|
assert set(package_data["packages"]) == {
|
2022-04-09 20:41:10 +00:00
|
|
|
"pkg_1",
|
|
|
|
"pkg_1_1",
|
|
|
|
"pkg_2",
|
|
|
|
"pkg_3",
|
|
|
|
"pkg_3_1",
|
2021-07-24 16:22:46 +00:00
|
|
|
}
|
2022-04-09 20:41:10 +00:00
|
|
|
assert package_data["packages"]["pkg_1"] == {
|
|
|
|
"name": "pkg_1",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"file_name": "pkg_1.file",
|
|
|
|
"depends": ["pkg_1_1", "pkg_3"],
|
|
|
|
"imports": ["pkg_1"],
|
2022-01-24 01:47:04 +00:00
|
|
|
"install_dir": "site",
|
2022-05-16 20:41:01 +00:00
|
|
|
"sha256": "c1e38241013b5663e902fff97eb8585e98e6df446585da1dcf2ad121b52c2143",
|
2021-07-24 16:22:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-12-10 19:37:08 +00:00
|
|
|
@pytest.mark.parametrize("n_jobs", [1, 4])
|
|
|
|
def test_build_dependencies(n_jobs, monkeypatch):
|
|
|
|
build_list = []
|
|
|
|
|
|
|
|
class MockPackage(buildall.Package):
|
2022-05-21 20:35:02 +00:00
|
|
|
def build(self, outputdir: Path, args: Any) -> None:
|
2020-12-10 19:37:08 +00:00
|
|
|
build_list.append(self.name)
|
|
|
|
|
|
|
|
monkeypatch.setattr(buildall, "Package", MockPackage)
|
|
|
|
|
2022-04-09 20:41:10 +00:00
|
|
|
pkg_map = buildall.generate_dependency_graph(PACKAGES_DIR, {"pkg_1", "pkg_2"})
|
2020-12-10 19:37:08 +00:00
|
|
|
|
2021-12-31 17:29:36 +00:00
|
|
|
buildall.build_from_graph(
|
2022-05-26 03:31:04 +00:00
|
|
|
pkg_map, Path("."), argparse.Namespace(n_jobs=n_jobs, force_rebuild=True)
|
2021-12-31 17:29:36 +00:00
|
|
|
)
|
2020-12-10 19:37:08 +00:00
|
|
|
|
|
|
|
assert set(build_list) == {
|
2022-04-09 20:41:10 +00:00
|
|
|
"pkg_1",
|
|
|
|
"pkg_1_1",
|
|
|
|
"pkg_2",
|
|
|
|
"pkg_3",
|
|
|
|
"pkg_3_1",
|
2020-12-10 19:37:08 +00:00
|
|
|
}
|
2022-04-09 20:41:10 +00:00
|
|
|
assert build_list.index("pkg_1_1") < build_list.index("pkg_1")
|
|
|
|
assert build_list.index("pkg_3") < build_list.index("pkg_1")
|
|
|
|
assert build_list.index("pkg_3_1") < build_list.index("pkg_3")
|
2020-12-10 19:37:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize("n_jobs", [1, 4])
|
|
|
|
def test_build_all_dependencies(n_jobs, monkeypatch):
|
|
|
|
"""Try building all the dependency graph, without the actual build operations"""
|
|
|
|
|
|
|
|
class MockPackage(buildall.Package):
|
|
|
|
n_builds = 0
|
|
|
|
|
2022-05-21 20:35:02 +00:00
|
|
|
def build(self, outputdir: Path, args: Any) -> None:
|
2020-12-10 19:37:08 +00:00
|
|
|
sleep(0.005)
|
|
|
|
self.n_builds += 1
|
|
|
|
# check that each build is only run once
|
|
|
|
assert self.n_builds == 1
|
|
|
|
|
|
|
|
monkeypatch.setattr(buildall, "Package", MockPackage)
|
|
|
|
|
2021-12-05 20:34:09 +00:00
|
|
|
pkg_map = buildall.generate_dependency_graph(PACKAGES_DIR, packages={"*"})
|
2020-12-10 19:37:08 +00:00
|
|
|
|
2021-12-31 17:29:36 +00:00
|
|
|
buildall.build_from_graph(
|
2022-05-26 03:31:04 +00:00
|
|
|
pkg_map, Path("."), argparse.Namespace(n_jobs=n_jobs, force_rebuild=False)
|
2021-12-31 17:29:36 +00:00
|
|
|
)
|
2020-12-10 19:37:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize("n_jobs", [1, 4])
|
|
|
|
def test_build_error(n_jobs, monkeypatch):
|
|
|
|
"""Try building all the dependency graph, without the actual build operations"""
|
|
|
|
|
|
|
|
class MockPackage(buildall.Package):
|
2022-05-21 20:35:02 +00:00
|
|
|
def build(self, outputdir: Path, args: Any) -> None:
|
2020-12-10 19:37:08 +00:00
|
|
|
raise ValueError("Failed build")
|
|
|
|
|
|
|
|
monkeypatch.setattr(buildall, "Package", MockPackage)
|
|
|
|
|
2022-04-09 20:41:10 +00:00
|
|
|
pkg_map = buildall.generate_dependency_graph(PACKAGES_DIR, {"pkg_1"})
|
2020-12-10 19:37:08 +00:00
|
|
|
|
|
|
|
with pytest.raises(ValueError, match="Failed build"):
|
2021-12-31 17:29:36 +00:00
|
|
|
buildall.build_from_graph(
|
2022-05-26 03:31:04 +00:00
|
|
|
pkg_map, Path("."), argparse.Namespace(n_jobs=n_jobs, force_rebuild=True)
|
2021-12-31 17:29:36 +00:00
|
|
|
)
|