from pathlib import Path import pytest from api import TestClient @pytest.mark.impure def test_inspect(api: TestClient, test_flake_with_core: Path) -> None: response = api.post( "/api/vms/inspect", json=dict(flake_url=str(test_flake_with_core), flake_attr="vm1"), ) assert response.status_code == 200, "Failed to inspect vm" config = response.json()["config"] assert config.get("flake_attr") == "vm1" assert config.get("cores") == 1 assert config.get("memory_size") == 1024 assert config.get("graphics") is True @pytest.mark.impure def test_create(api: TestClient, test_flake_with_core: Path) -> None: print(f"flake_url: {test_flake_with_core} ") response = api.post( "/api/vms/create", json=dict( flake_url=str(test_flake_with_core), flake_attr="vm1", cores=1, memory_size=1024, graphics=True, ), ) assert response.status_code == 200, "Failed to inspect vm" uuid = response.json()["uuid"] assert len(uuid) == 36 assert uuid.count("-") == 4 response = api.get(f"/api/vms/{uuid}/status") for line in response.stream: print(line) assert response.status_code == 200, "Failed to get vm status"