nix-update/tests/test_flake.py
2023-08-02 10:00:31 -04:00

34 lines
1000 B
Python

import subprocess
import conftest
from nix_update import main
def test_main(helpers: conftest.Helpers) -> None:
with helpers.testpkgs(init_git=True) as path:
main(["--file", str(path), "--flake", "--commit", "--test", "crate"])
version = subprocess.run(
[
"nix",
"eval",
"--raw",
"--extra-experimental-features",
"flakes nix-command",
f"{path}#crate.version",
],
check=True,
text=True,
stdout=subprocess.PIPE,
).stdout.strip()
assert tuple(map(int, version.split("."))) >= (8, 5, 2)
commit = subprocess.run(
["git", "-C", path, "log", "-1"],
text=True,
stdout=subprocess.PIPE,
check=True,
).stdout.strip()
print(commit)
assert f"crate: 8.0.0 -> {version}" in commit
assert "https://diff.rs/fd-find/8.0.0/" in commit