change install test to run clan outside of the VM
This commit is contained in:
@@ -1,23 +1,12 @@
|
|||||||
{
|
{
|
||||||
self,
|
self,
|
||||||
lib,
|
lib,
|
||||||
|
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
let
|
let
|
||||||
installer =
|
target =
|
||||||
{ modulesPath, pkgs, ... }:
|
{ modulesPath, pkgs, ... }:
|
||||||
let
|
|
||||||
dependencies = [
|
|
||||||
self.clan.clanInternals.machines.${pkgs.hostPlatform.system}.test-install-machine-with-system.config.system.build.toplevel
|
|
||||||
self.clan.clanInternals.machines.${pkgs.hostPlatform.system}.test-install-machine-with-system.config.system.build.diskoScript
|
|
||||||
pkgs.stdenv.drvPath
|
|
||||||
pkgs.bash.drvPath
|
|
||||||
pkgs.nixos-anywhere
|
|
||||||
pkgs.bubblewrap
|
|
||||||
pkgs.buildPackages.xorg.lndir
|
|
||||||
] ++ builtins.map (i: i.outPath) (builtins.attrValues self.inputs);
|
|
||||||
closureInfo = pkgs.closureInfo { rootPaths = dependencies; };
|
|
||||||
in
|
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
(modulesPath + "/../tests/common/auto-format-root-device.nix")
|
(modulesPath + "/../tests/common/auto-format-root-device.nix")
|
||||||
@@ -28,33 +17,30 @@ let
|
|||||||
services.openssh.settings.PasswordAuthentication = false;
|
services.openssh.settings.PasswordAuthentication = false;
|
||||||
system.nixos.variant_id = "installer";
|
system.nixos.variant_id = "installer";
|
||||||
environment.systemPackages = [
|
environment.systemPackages = [
|
||||||
self.packages.${pkgs.system}.clan-cli-full
|
|
||||||
pkgs.nixos-facter
|
pkgs.nixos-facter
|
||||||
];
|
];
|
||||||
environment.etc."install-closure".source = "${closureInfo}/store-paths";
|
# Disable cache.nixos.org to speed up tests
|
||||||
|
nix.settings.substituters = [ ];
|
||||||
|
nix.settings.trusted-public-keys = [ ];
|
||||||
virtualisation.emptyDiskImages = [ 512 ];
|
virtualisation.emptyDiskImages = [ 512 ];
|
||||||
virtualisation.diskSize = 8 * 1024;
|
virtualisation.diskSize = 8 * 1024;
|
||||||
virtualisation.rootDevice = "/dev/vdb";
|
virtualisation.rootDevice = "/dev/vdb";
|
||||||
# both installer and target need to use the same diskImage
|
# both installer and target need to use the same diskImage
|
||||||
virtualisation.diskImage = "./target.qcow2";
|
virtualisation.diskImage = "./target.qcow2";
|
||||||
virtualisation.memorySize = 3048;
|
virtualisation.memorySize = 3048;
|
||||||
nix.settings = {
|
|
||||||
substituters = lib.mkForce [ ];
|
|
||||||
hashed-mirrors = null;
|
|
||||||
connect-timeout = lib.mkForce 3;
|
|
||||||
flake-registry = pkgs.writeText "flake-registry" ''{"flakes":[],"version":2}'';
|
|
||||||
experimental-features = [
|
|
||||||
"nix-command"
|
|
||||||
"flakes"
|
|
||||||
];
|
|
||||||
};
|
|
||||||
users.users.nonrootuser = {
|
users.users.nonrootuser = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
openssh.authorizedKeys.keyFiles = [ ../assets/ssh/pubkey ];
|
openssh.authorizedKeys.keys = [ (builtins.readFile ../assets/ssh/pubkey) ];
|
||||||
extraGroups = [ "wheel" ];
|
extraGroups = [ "wheel" ];
|
||||||
};
|
};
|
||||||
|
users.users.root.openssh.authorizedKeys.keys = [ (builtins.readFile ../assets/ssh/pubkey) ];
|
||||||
|
# Allow users to manage their own SSH keys
|
||||||
|
services.openssh.authorizedKeysFiles = [
|
||||||
|
"/root/.ssh/authorized_keys"
|
||||||
|
"/home/%u/.ssh/authorized_keys"
|
||||||
|
"/etc/ssh/authorized_keys.d/%u"
|
||||||
|
];
|
||||||
security.sudo.wheelNeedsPassword = false;
|
security.sudo.wheelNeedsPassword = false;
|
||||||
system.extraDependencies = dependencies;
|
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
@@ -105,6 +91,25 @@ in
|
|||||||
|
|
||||||
environment.etc."install-successful".text = "ok";
|
environment.etc."install-successful".text = "ok";
|
||||||
|
|
||||||
|
# Enable SSH and add authorized key for testing
|
||||||
|
services.openssh.enable = true;
|
||||||
|
services.openssh.settings.PasswordAuthentication = false;
|
||||||
|
users.users.nonrootuser = {
|
||||||
|
isNormalUser = true;
|
||||||
|
openssh.authorizedKeys.keys = [ (builtins.readFile ../assets/ssh/pubkey) ];
|
||||||
|
extraGroups = [ "wheel" ];
|
||||||
|
home = "/home/nonrootuser";
|
||||||
|
createHome = true;
|
||||||
|
};
|
||||||
|
users.users.root.openssh.authorizedKeys.keys = [ (builtins.readFile ../assets/ssh/pubkey) ];
|
||||||
|
# Allow users to manage their own SSH keys
|
||||||
|
services.openssh.authorizedKeysFiles = [
|
||||||
|
"/root/.ssh/authorized_keys"
|
||||||
|
"/home/%u/.ssh/authorized_keys"
|
||||||
|
"/etc/ssh/authorized_keys.d/%u"
|
||||||
|
];
|
||||||
|
security.sudo.wheelNeedsPassword = false;
|
||||||
|
|
||||||
boot.consoleLogLevel = lib.mkForce 100;
|
boot.consoleLogLevel = lib.mkForce 100;
|
||||||
boot.kernelParams = [ "boot.shell_on_fail" ];
|
boot.kernelParams = [ "boot.shell_on_fail" ];
|
||||||
|
|
||||||
@@ -181,55 +186,242 @@ in
|
|||||||
# vm-test-run-test-installation-> target: waiting for the VM to finish booting
|
# vm-test-run-test-installation-> target: waiting for the VM to finish booting
|
||||||
# vm-test-run-test-installation-> target: Guest root shell did not produce any data yet...
|
# vm-test-run-test-installation-> target: Guest root shell did not produce any data yet...
|
||||||
# vm-test-run-test-installation-> target: To debug, enter the VM and run 'systemctl status backdoor.service'.
|
# vm-test-run-test-installation-> target: To debug, enter the VM and run 'systemctl status backdoor.service'.
|
||||||
checks = pkgs.lib.mkIf (pkgs.stdenv.isLinux && !pkgs.stdenv.isAarch64) {
|
checks =
|
||||||
nixos-test-installation = self.clanLib.test.baseTest {
|
let
|
||||||
name = "installation";
|
# Custom Python package for port management utilities
|
||||||
nodes.target = {
|
portUtils = pkgs.python3Packages.buildPythonPackage {
|
||||||
services.openssh.enable = true;
|
pname = "port-utils";
|
||||||
virtualisation.diskImage = "./target.qcow2";
|
version = "1.0.0";
|
||||||
virtualisation.useBootLoader = true;
|
format = "other";
|
||||||
|
src = lib.fileset.toSource {
|
||||||
|
root = ./.;
|
||||||
|
fileset = ./port_utils.py;
|
||||||
|
};
|
||||||
|
dontUnpack = true;
|
||||||
|
installPhase = ''
|
||||||
|
install -D $src/port_utils.py $out/${pkgs.python3.sitePackages}/port_utils.py
|
||||||
|
touch $out/${pkgs.python3.sitePackages}/py.typed
|
||||||
|
'';
|
||||||
|
doCheck = false;
|
||||||
};
|
};
|
||||||
nodes.installer = installer;
|
closureInfo = pkgs.closureInfo {
|
||||||
|
rootPaths = [
|
||||||
|
self.checks.x86_64-linux.clan-core-for-checks
|
||||||
|
self.clanInternals.machines.${pkgs.hostPlatform.system}.test-install-machine-with-system.config.system.build.toplevel
|
||||||
|
self.clanInternals.machines.${pkgs.hostPlatform.system}.test-install-machine-with-system.config.system.build.initialRamdisk
|
||||||
|
self.clanInternals.machines.${pkgs.hostPlatform.system}.test-install-machine-with-system.config.system.build.diskoScript
|
||||||
|
pkgs.stdenv.drvPath
|
||||||
|
pkgs.bash.drvPath
|
||||||
|
pkgs.buildPackages.xorg.lndir
|
||||||
|
] ++ builtins.map (i: i.outPath) (builtins.attrValues self.inputs);
|
||||||
|
};
|
||||||
|
in
|
||||||
|
pkgs.lib.mkIf (pkgs.stdenv.isLinux && !pkgs.stdenv.isAarch64) {
|
||||||
|
nixos-test-installation = self.clanLib.test.baseTest {
|
||||||
|
name = "installation";
|
||||||
|
nodes.target = target;
|
||||||
|
extraPythonPackages = _p: [
|
||||||
|
portUtils
|
||||||
|
self.legacyPackages.${pkgs.system}.setupNixInNixPythonPackage
|
||||||
|
];
|
||||||
|
|
||||||
testScript = ''
|
testScript = ''
|
||||||
installer.start()
|
import tempfile
|
||||||
|
import os
|
||||||
|
import subprocess
|
||||||
|
from port_utils import find_free_port, setup_port_forwarding # type: ignore[import-untyped]
|
||||||
|
from setup_nix_in_nix import setup_nix_in_nix # type: ignore[import-untyped]
|
||||||
|
|
||||||
installer.succeed("${pkgs.coreutils}/bin/install -Dm 600 ${../assets/ssh/privkey} /root/.ssh/id_ed25519")
|
def create_test_machine(oldmachine=None, **kwargs):
|
||||||
|
"""Create a new test machine from an installed disk image"""
|
||||||
|
start_command = [
|
||||||
|
"${pkgs.qemu_test}/bin/qemu-kvm",
|
||||||
|
"-cpu", "max",
|
||||||
|
"-m", "3048",
|
||||||
|
"-virtfs", "local,path=/nix/store,security_model=none,mount_tag=nix-store",
|
||||||
|
"-drive", f"file={oldmachine.state_dir}/target.qcow2,id=drive1,if=none,index=1,werror=report",
|
||||||
|
"-device", "virtio-blk-pci,drive=drive1",
|
||||||
|
"-netdev", "user,id=net0",
|
||||||
|
"-device", "virtio-net-pci,netdev=net0",
|
||||||
|
]
|
||||||
|
machine = create_machine(start_command=" ".join(start_command), **kwargs)
|
||||||
|
driver.machines.append(machine)
|
||||||
|
return machine
|
||||||
|
|
||||||
installer.wait_until_succeeds("timeout 2 ssh -o StrictHostKeyChecking=accept-new -v nonrootuser@localhost hostname")
|
if "NIX_REMOTE" in os.environ:
|
||||||
installer.succeed("cp -r ${self.checks.x86_64-linux.clan-core-for-checks} test-flake && chmod -R +w test-flake")
|
del os.environ["NIX_REMOTE"] # we don't have any nix daemon running
|
||||||
|
target.start()
|
||||||
|
|
||||||
installer.succeed("clan machines install --no-reboot --debug --flake test-flake --yes test-install-machine-without-system --target-host nonrootuser@localhost --update-hardware-config nixos-facter >&2")
|
# Set up SSH key on host (test driver environment)
|
||||||
installer.shutdown()
|
with tempfile.TemporaryDirectory() as temp_dir:
|
||||||
|
|
||||||
# We are missing the test instrumentation somehow. Test this later.
|
# Set up nix chroot store environment
|
||||||
target.state_dir = installer.state_dir
|
os.environ["closureInfo"] = "${closureInfo}"
|
||||||
target.start()
|
os.environ["TMPDIR"] = temp_dir
|
||||||
target.wait_for_unit("multi-user.target")
|
|
||||||
'';
|
# Run setup function
|
||||||
} { inherit pkgs self; };
|
setup_nix_in_nix()
|
||||||
|
|
||||||
nixos-test-update-hardware-configuration = self.clanLib.test.baseTest {
|
|
||||||
name = "update-hardware-configuration";
|
|
||||||
nodes.installer = installer;
|
|
||||||
|
|
||||||
testScript = ''
|
host_port = find_free_port()
|
||||||
installer.start()
|
target.wait_for_unit("sshd.service")
|
||||||
installer.succeed("${pkgs.coreutils}/bin/install -Dm 600 ${../assets/ssh/privkey} /root/.ssh/id_ed25519")
|
target.wait_for_open_port(22)
|
||||||
installer.wait_until_succeeds("timeout 2 ssh -o StrictHostKeyChecking=accept-new -v nonrootuser@localhost hostname")
|
|
||||||
installer.succeed("cp -r ${self.checks.x86_64-linux.clan-core-for-checks} test-flake && chmod -R +w test-flake")
|
|
||||||
installer.fail("test -f test-flake/machines/test-install-machine/hardware-configuration.nix")
|
|
||||||
installer.fail("test -f test-flake/machines/test-install-machine/facter.json")
|
|
||||||
|
|
||||||
installer.succeed("clan machines update-hardware-config --debug --flake test-flake test-install-machine-without-system nonrootuser@localhost >&2")
|
setup_port_forwarding(target, host_port)
|
||||||
installer.succeed("test -f test-flake/machines/test-install-machine-without-system/facter.json")
|
|
||||||
installer.succeed("rm test-flake/machines/test-install-machine-without-system/facter.json")
|
|
||||||
|
|
||||||
installer.succeed("clan machines update-hardware-config --debug --backend nixos-generate-config --flake test-flake test-install-machine-without-system nonrootuser@localhost >&2")
|
ssh_key = os.path.join(temp_dir, "id_ed25519")
|
||||||
installer.succeed("test -f test-flake/machines/test-install-machine-without-system/hardware-configuration.nix")
|
with open(ssh_key, "w") as f:
|
||||||
installer.succeed("rm test-flake/machines/test-install-machine-without-system/hardware-configuration.nix")
|
with open("${../assets/ssh/privkey}", "r") as src:
|
||||||
'';
|
f.write(src.read())
|
||||||
} { inherit pkgs self; };
|
os.chmod(ssh_key, 0o600)
|
||||||
};
|
|
||||||
|
# Copy test flake to temp directory
|
||||||
|
flake_dir = os.path.join(temp_dir, "test-flake")
|
||||||
|
subprocess.run(["cp", "-r", "${self.checks.x86_64-linux.clan-core-for-checks}", flake_dir], check=True)
|
||||||
|
subprocess.run(["chmod", "-R", "+w", flake_dir], check=True)
|
||||||
|
|
||||||
|
# Run clan install from host using port forwarding
|
||||||
|
clan_cmd = [
|
||||||
|
"${self.packages.${pkgs.system}.clan-cli-full}/bin/clan",
|
||||||
|
"machines",
|
||||||
|
"install",
|
||||||
|
"--phases", "disko,install",
|
||||||
|
"--debug",
|
||||||
|
"--flake", env.flake_dir,
|
||||||
|
"--yes", "test-install-machine-without-system",
|
||||||
|
"--target-host", f"nonrootuser@localhost:{host_port}",
|
||||||
|
"-i", ssh_key,
|
||||||
|
"--option", "store", os.environ['CLAN_TEST_STORE'],
|
||||||
|
"--update-hardware-config", "nixos-facter",
|
||||||
|
]
|
||||||
|
|
||||||
|
# Set NIX_CONFIG to disable cache.nixos.org for speed
|
||||||
|
env = os.environ.copy()
|
||||||
|
env["NIX_CONFIG"] = "substituters = \ntrusted-public-keys = "
|
||||||
|
subprocess.run(clan_cmd, check=True, env=env)
|
||||||
|
|
||||||
|
# Shutdown the installer machine gracefully
|
||||||
|
try:
|
||||||
|
target.shutdown()
|
||||||
|
except BrokenPipeError:
|
||||||
|
# qemu has already exited
|
||||||
|
pass
|
||||||
|
|
||||||
|
# Create a new machine instance that boots from the installed system
|
||||||
|
installed_machine = create_test_machine(oldmachine=target, name="after_install")
|
||||||
|
installed_machine.start()
|
||||||
|
installed_machine.wait_for_unit("multi-user.target")
|
||||||
|
installed_machine.succeed("test -f /etc/install-successful")
|
||||||
|
'';
|
||||||
|
} { inherit pkgs self; };
|
||||||
|
|
||||||
|
nixos-test-update-hardware-configuration = self.clanLib.test.baseTest {
|
||||||
|
name = "update-hardware-configuration";
|
||||||
|
nodes.target = target;
|
||||||
|
extraPythonPackages = _p: [
|
||||||
|
portUtils
|
||||||
|
self.legacyPackages.${pkgs.system}.setupNixInNixPythonPackage
|
||||||
|
];
|
||||||
|
|
||||||
|
testScript = ''
|
||||||
|
import tempfile
|
||||||
|
import os
|
||||||
|
import subprocess
|
||||||
|
from port_utils import find_free_port, setup_port_forwarding # type: ignore[import-untyped]
|
||||||
|
from setup_nix_in_nix import setup_nix_in_nix # type: ignore[import-untyped]
|
||||||
|
|
||||||
|
# Keep reference to closureInfo: ${closureInfo}
|
||||||
|
|
||||||
|
# Set up nix chroot store environment
|
||||||
|
os.environ["closureInfo"] = "${closureInfo}"
|
||||||
|
|
||||||
|
# Run setup function
|
||||||
|
setup_nix_in_nix()
|
||||||
|
|
||||||
|
host_port = find_free_port()
|
||||||
|
|
||||||
|
target.start()
|
||||||
|
|
||||||
|
setup_port_forwarding(target, host_port)
|
||||||
|
|
||||||
|
# Set up SSH key and flake on host
|
||||||
|
with tempfile.TemporaryDirectory() as temp_dir:
|
||||||
|
ssh_key = os.path.join(temp_dir, "id_ed25519")
|
||||||
|
with open(ssh_key, "w") as f:
|
||||||
|
with open("${../assets/ssh/privkey}", "r") as src:
|
||||||
|
f.write(src.read())
|
||||||
|
os.chmod(ssh_key, 0o600)
|
||||||
|
|
||||||
|
flake_dir = os.path.join(temp_dir, "test-flake")
|
||||||
|
subprocess.run(["cp", "-r", "${self.checks.x86_64-linux.clan-core-for-checks}", flake_dir], check=True)
|
||||||
|
subprocess.run(["chmod", "-R", "+w", flake_dir], check=True)
|
||||||
|
|
||||||
|
# Verify files don't exist initially
|
||||||
|
hw_config_file = os.path.join(flake_dir, "machines/test-install-machine/hardware-configuration.nix")
|
||||||
|
facter_file = os.path.join(flake_dir, "machines/test-install-machine/facter.json")
|
||||||
|
|
||||||
|
assert not os.path.exists(hw_config_file), "hardware-configuration.nix should not exist initially"
|
||||||
|
assert not os.path.exists(facter_file), "facter.json should not exist initially"
|
||||||
|
|
||||||
|
target.wait_for_unit("sshd.service")
|
||||||
|
target.wait_for_open_port(22)
|
||||||
|
|
||||||
|
# Test facter backend
|
||||||
|
clan_cmd = [
|
||||||
|
"${self.packages.${pkgs.system}.clan-cli-full}/bin/clan",
|
||||||
|
"machines",
|
||||||
|
"update-hardware-config",
|
||||||
|
"--debug",
|
||||||
|
"--flake", ".",
|
||||||
|
"--host-key-check", "none",
|
||||||
|
"test-install-machine-without-system",
|
||||||
|
"-i", ssh_key,
|
||||||
|
"--option", "store", os.environ['CLAN_TEST_STORE'],
|
||||||
|
f"nonrootuser@localhost:{env.host_port}"
|
||||||
|
]
|
||||||
|
|
||||||
|
env = os.environ.copy()
|
||||||
|
env["CLAN_FLAKE"] = flake_dir
|
||||||
|
# Set NIX_CONFIG to disable cache.nixos.org for speed
|
||||||
|
env["NIX_CONFIG"] = "substituters = \ntrusted-public-keys = "
|
||||||
|
result = subprocess.run(clan_cmd, capture_output=True, cwd=flake_dir, env=env)
|
||||||
|
if result.returncode != 0:
|
||||||
|
print(f"Clan update-hardware-config failed: {result.stderr.decode()}")
|
||||||
|
raise Exception(f"Clan update-hardware-config failed with return code {result.returncode}")
|
||||||
|
|
||||||
|
facter_without_system_file = os.path.join(env.flake_dir, "machines/test-install-machine-without-system/facter.json")
|
||||||
|
assert os.path.exists(facter_without_system_file), "facter.json should exist after update"
|
||||||
|
os.remove(facter_without_system_file)
|
||||||
|
|
||||||
|
# Test nixos-generate-config backend
|
||||||
|
clan_cmd = [
|
||||||
|
"${self.packages.${pkgs.system}.clan-cli-full}/bin/clan",
|
||||||
|
"machines",
|
||||||
|
"update-hardware-config",
|
||||||
|
"--debug",
|
||||||
|
"--backend", "nixos-generate-config",
|
||||||
|
"--host-key-check", "none",
|
||||||
|
"--flake", ".",
|
||||||
|
"test-install-machine-without-system",
|
||||||
|
"--option", "ssh-option", f"-i {ssh_key} -o StrictHostKeyChecking=accept-new -o UserKnownHostsFile=/dev/null",
|
||||||
|
"--option", "store", os.environ['CLAN_TEST_STORE'],
|
||||||
|
f"nonrootuser@localhost:{env.host_port}"
|
||||||
|
]
|
||||||
|
|
||||||
|
env = os.environ.copy()
|
||||||
|
env["CLAN_FLAKE"] = flake_dir
|
||||||
|
# Set NIX_CONFIG to disable cache.nixos.org for speed
|
||||||
|
env["NIX_CONFIG"] = "substituters = \ntrusted-public-keys = "
|
||||||
|
result = subprocess.run(clan_cmd, capture_output=True, cwd=flake_dir, env=env)
|
||||||
|
if result.returncode != 0:
|
||||||
|
print(f"Clan update-hardware-config (nixos-generate-config) failed: {result.stderr.decode()}")
|
||||||
|
raise Exception(f"Clan update-hardware-config failed with return code {result.returncode}")
|
||||||
|
|
||||||
|
hw_config_without_system_file = os.path.join(env.flake_dir, "machines/test-install-machine-without-system/hardware-configuration.nix")
|
||||||
|
assert os.path.exists(hw_config_without_system_file), "hardware-configuration.nix should exist after update"
|
||||||
|
'';
|
||||||
|
} { inherit pkgs self; };
|
||||||
|
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user