clan-core/pkgs/clan-cli/tests/test_create_flake.py

55 lines
1.3 KiB
Python
Raw Normal View History

import json
import subprocess
from pathlib import Path
import pytest
from cli import Cli
2023-09-22 17:17:45 +00:00
@pytest.fixture
def cli() -> Cli:
return Cli()
@pytest.mark.impure
2023-10-04 09:01:12 +00:00
def test_create_flake(
2023-09-22 17:17:45 +00:00
monkeypatch: pytest.MonkeyPatch,
capsys: pytest.CaptureFixture,
temporary_home: Path,
2023-09-22 17:17:45 +00:00
cli: Cli,
) -> None:
2023-11-15 13:28:40 +00:00
flake_dir = temporary_home / "test-flake"
2023-11-15 13:28:40 +00:00
cli.run(["flakes", "create", str(flake_dir)])
assert (flake_dir / ".clan-flake").exists()
monkeypatch.chdir(flake_dir)
2023-11-15 13:28:40 +00:00
cli.run(["machines", "create", "machine1"])
capsys.readouterr() # flush cache
2023-11-15 13:28:40 +00:00
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")
2023-09-22 17:17:45 +00:00
# configure machine1
capsys.readouterr()
2023-11-15 13:28:40 +00:00
cli.run(["config", "--machine", "machine1", "services.openssh.enable", ""])
2023-09-22 17:17:45 +00:00
capsys.readouterr()
cli.run(
[
"config",
"--machine",
"machine1",
"services.openssh.enable",
"true",
]
)