2022-12-08 20:36:42 +03:00
|
|
|
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()
|
2023-04-27 06:24:38 +03:00
|
|
|
assert tuple(map(int, version.split("."))) >= (8, 5, 2)
|
2022-12-08 20:36:42 +03:00
|
|
|
commit = subprocess.run(
|
|
|
|
["git", "-C", path, "log", "-1"],
|
|
|
|
text=True,
|
|
|
|
stdout=subprocess.PIPE,
|
|
|
|
check=True,
|
|
|
|
).stdout.strip()
|
|
|
|
print(commit)
|
2023-08-02 17:00:31 +03:00
|
|
|
assert f"crate: 8.0.0 -> {version}" in commit
|
2023-05-12 19:52:30 +03:00
|
|
|
assert "https://diff.rs/fd-find/8.0.0/" in commit
|