32 lines
894 B
Python
32 lines
894 B
Python
import json
|
|
import subprocess
|
|
from pathlib import Path
|
|
|
|
import pytest
|
|
from cli import Cli
|
|
|
|
|
|
@pytest.mark.impure
|
|
def test_basics(
|
|
monkeypatch: pytest.MonkeyPatch, temporary_dir: Path, capsys: pytest.CaptureFixture
|
|
) -> None:
|
|
monkeypatch.chdir(temporary_dir)
|
|
cli = Cli()
|
|
cli.run(["create"])
|
|
assert (temporary_dir / ".clan-flake").exists()
|
|
cli.run(["machines", "create", "machine1"])
|
|
capsys.readouterr() # flush cache
|
|
cli.run(["machines", "list"])
|
|
assert "machine1" in capsys.readouterr().out
|
|
flake_show = subprocess.run(
|
|
["nix", "flake", "show", "--json"],
|
|
check=True,
|
|
capture_output=True,
|
|
text=True,
|
|
)
|
|
flake_outputs = json.loads(flake_show.stdout)
|
|
try:
|
|
flake_outputs["nixosConfigurations"]["machine1"]
|
|
except KeyError:
|
|
pytest.fail("nixosConfigurations.machine1 not found in flake outputs")
|