See: cl/4840
When importing Python modules, we include `functional2` in the module
path, like this:
from functional2.testlib.fixtures.env import ManagedEnv
This means that python expects to see a file like
`functional2/testlib/fixtures/env.py`. We run `pytest` from `tests/` in
the `justfile` and have `tests/functional2/__init__.py` so `pytest` in
`meson` is able to find these imports.
However, language servers generally consider the `pyproject.toml` to be
the project root, so (e.g.) `pyright` is unable to follow any of the
`functional2` imports, leading to lots of spurious errors.
In cl/4840 I moved `tests/functional2/pyproject.toml` to
`tests/pyproject.toml`, which worked but was considered aesthetically
unappealing.
This diff is much larger but it's a more elegant solution.
Change-Id: I2983c7b87f88f59a4e3521451a9f5acd6a6a6964
47 lines
1.7 KiB
Python
47 lines
1.7 KiB
Python
import sys
|
|
|
|
import pytest
|
|
from pathlib import Path
|
|
from testlib.fixtures.file_helper import with_files
|
|
from testlib.fixtures.nix import Nix
|
|
from testlib.utils import get_global_asset, CopyFile
|
|
from testlib.xattrs import verify_no_xattrs_in_tree, skip_if_xattrs_are_unsupported
|
|
|
|
|
|
@with_files(
|
|
{"config.nix": get_global_asset("config.nix"), "xattrs.nix": CopyFile("assets/xattrs.nix")}
|
|
)
|
|
def test_xattrs_during_build(nix: Nix):
|
|
skip_if_xattrs_are_unsupported(nix.env)
|
|
|
|
nix.nix_build(["xattrs.nix", "-A", "during-build", "--no-out-link"]).run().ok()
|
|
|
|
|
|
def build_and_get_store_path(nix: Nix, asset: str, attribute: str) -> Path:
|
|
return nix.physical_store_path_for(
|
|
nix.nix_build([asset, "-A", attribute, "--no-out-link"]).run().ok().stdout_plain
|
|
)
|
|
|
|
|
|
@with_files(
|
|
{"config.nix": get_global_asset("config.nix"), "xattrs.nix": CopyFile("assets/xattrs.nix")}
|
|
)
|
|
@pytest.mark.skipif(
|
|
sys.platform != "linux", reason="xattrs scrubbing is not expected to function outside of Linux"
|
|
)
|
|
def test_xattrs_in_output(nix: Nix):
|
|
skip_if_xattrs_are_unsupported(nix.env)
|
|
|
|
# We assert that xattrs producing derivations in the outputs should complete with no xattrs in the final output path.
|
|
# NOTE: if another platform is added, another `verify_no_acl_in_tree`
|
|
# should be added to ensure that ACLs are truly removed.
|
|
# On Linux, this is not necessary.
|
|
output_path = build_and_get_store_path(nix, "xattrs.nix", "in-root-outputs-file")
|
|
verify_no_xattrs_in_tree(output_path)
|
|
|
|
output_path = build_and_get_store_path(nix, "xattrs.nix", "in-root-outputs-dir")
|
|
verify_no_xattrs_in_tree(output_path)
|
|
|
|
output_path = build_and_get_store_path(nix, "xattrs.nix", "in-output-content")
|
|
verify_no_xattrs_in_tree(output_path)
|