pyodide/packages/test_common.py

112 lines
3.1 KiB
Python
Raw Normal View History

2018-08-03 11:57:51 +00:00
import pytest
import os
from pathlib import Path
2021-01-11 07:59:22 +00:00
from pyodide_build.common import _parse_package_subset
from pyodide_build.io import parse_package_config
2018-08-03 11:57:51 +00:00
PKG_DIR = Path(__file__).parent
2018-08-03 11:57:51 +00:00
def registered_packages():
"""Returns a list of registered package names"""
packages = []
for name in os.listdir(PKG_DIR):
if (PKG_DIR / name).is_dir() and (PKG_DIR / name / "meta.yaml").exists():
packages.append(name)
2018-08-03 11:57:51 +00:00
return packages
2018-08-03 12:43:40 +00:00
def registered_packages_meta():
"""Returns a dictionary with the contents of `meta.yaml`
for each registered package
2018-08-03 12:43:40 +00:00
"""
packages = registered_packages
2021-01-11 07:59:22 +00:00
return {
name: parse_package_config(PKG_DIR / name / "meta.yaml") for name in packages
}
2018-08-03 12:43:40 +00:00
UNSUPPORTED_PACKAGES = {"chrome": ["pandas", "scipy", "scikit-learn"], "firefox": []}
@pytest.mark.parametrize("name", registered_packages())
def test_parse_package(name):
# check that we can parse the meta.yaml
2021-01-11 07:59:22 +00:00
meta = parse_package_config(PKG_DIR / name / "meta.yaml")
skip_host = meta.get("build", {}).get("skip_host", True)
if name == "numpy":
assert skip_host is False
elif name == "pandas":
assert skip_host is True
@pytest.mark.parametrize("name", registered_packages())
def test_import(name, selenium_standalone):
2018-08-03 11:57:51 +00:00
# check that we can parse the meta.yaml
2021-01-11 07:59:22 +00:00
meta = parse_package_config(PKG_DIR / name / "meta.yaml")
2018-08-03 11:57:51 +00:00
if name in UNSUPPORTED_PACKAGES[selenium_standalone.browser]:
pytest.xfail(
"{} fails to load and is not supported on {}.".format(
name, selenium_standalone.browser
)
)
built_packages = _parse_package_subset(os.environ.get("PYODIDE_PACKAGES"))
2020-05-08 23:46:59 +00:00
# only a subset of packages were built
if built_packages is not None and name not in built_packages:
pytest.skip(f"{name} was skipped due to PYODIDE_PACKAGES")
2020-05-08 23:46:59 +00:00
2018-11-08 20:03:30 +00:00
selenium_standalone.run("import glob, os")
baseline_pyc = selenium_standalone.run(
"""
len(list(glob.glob(
'/lib/python3.8/site-packages/**/*.pyc',
2018-11-08 20:03:30 +00:00
recursive=True)
))
"""
)
selenium_standalone.load_package(name)
# Make sure there are no additional .pyc file
assert (
selenium_standalone.run(
"""
2018-11-08 20:03:30 +00:00
len(list(glob.glob(
'/lib/python3.8/site-packages/**/*.pyc',
2018-11-08 20:03:30 +00:00
recursive=True)
))
"""
)
== baseline_pyc
)
2018-11-08 20:03:30 +00:00
2018-10-31 14:06:08 +00:00
loaded_packages = []
for import_name in meta.get("test", {}).get("imports", []):
2018-10-31 14:06:08 +00:00
if name not in loaded_packages:
selenium_standalone.load_package(name)
loaded_packages.append(name)
2018-07-18 13:26:18 +00:00
try:
selenium_standalone.run("import %s" % import_name)
2018-10-31 14:06:08 +00:00
except Exception:
2018-07-18 13:26:18 +00:00
print(selenium_standalone.logs)
raise
2018-11-08 20:03:30 +00:00
2018-11-08 20:25:21 +00:00
# Make sure that even after importing, there are no additional .pyc
# files
assert (
selenium_standalone.run(
"""
2018-11-08 20:03:30 +00:00
len(list(glob.glob(
'/lib/python3.8/site-packages/**/*.pyc',
2018-11-08 20:03:30 +00:00
recursive=True)
))
"""
)
== baseline_pyc
)