nix-eval-jobs/tests/test_eval.py

47 lines
1.3 KiB
Python
Raw Normal View History

#!/usr/bin/env python3
import subprocess
import json
from tempfile import TemporaryDirectory
from pathlib import Path
from typing import List
TEST_ROOT = Path(__file__).parent.resolve()
PROJECT_ROOT = TEST_ROOT.parent
BIN = PROJECT_ROOT.joinpath("build", "src", "nix-eval-jobs")
def common_test(extra_args: List[str]) -> None:
with TemporaryDirectory() as tempdir:
cmd = [str(BIN), "--gc-roots-dir", tempdir, "--meta"] + extra_args
res = subprocess.run(
cmd,
cwd=TEST_ROOT.joinpath("assets"),
text=True,
check=True,
stdout=subprocess.PIPE,
)
2021-08-25 08:36:32 +00:00
results = [json.loads(r) for r in res.stdout.split("\n") if r]
assert len(results) == 2
2021-08-25 08:36:32 +00:00
built_job = results[0]
assert built_job["attr"] == "builtJob"
assert built_job["name"] == "job1"
2022-01-04 08:43:06 +00:00
assert built_job["outputs"]["out"].startswith("/nix/store")
2021-12-31 11:00:04 +00:00
assert built_job["drvPath"].endswith(".drv")
assert built_job["meta"]['broken'] is False
substituted_job = results[1]
assert substituted_job["attr"] == "substitutedJob"
assert substituted_job["name"].startswith("hello-")
assert substituted_job["meta"]['broken'] is False
def test_flake() -> None:
common_test(["--flake", ".#hydraJobs"])
def test_expression() -> None:
common_test(["ci.nix"])