nixosTests.kexec: extend with kexecBoot attribute

Add a node2, which imports the kexec-boot.nix profile.

Ensure node2 successfully boots up, then invoke the kexec-boot script
from it on node1.
This commit is contained in:
Florian Klink 2022-02-26 22:38:28 +01:00 committed by lassulus
parent 366c8be2ad
commit f0178e45eb

View File

@ -1,22 +1,44 @@
# Test whether fast reboots via kexec work.
import ./make-test-python.nix ({ pkgs, lib, ...} : {
import ./make-test-python.nix ({ pkgs, lib, ... }: {
name = "kexec";
meta = with lib.maintainers; {
maintainers = [ eelco ];
};
nodes.machine = { ... }:
{ virtualisation.vlans = [ ]; };
nodes = {
node1 = { ... }: {
virtualisation.vlans = [ ];
virtualisation.memorySize = 2 * 1024;
};
testScript =
''
machine.wait_for_unit("multi-user.target")
machine.succeed('kexec --load /run/current-system/kernel --initrd /run/current-system/initrd --command-line "$(</proc/cmdline)"')
machine.execute("systemctl kexec >&2 &", check_return=False)
machine.connected = False
machine.connect()
machine.wait_for_unit("multi-user.target")
machine.shutdown()
'';
node2 = { modulesPath, ... }: {
virtualisation.vlans = [ ];
imports = [
"${modulesPath}/installer/kexec/kexec-boot.nix"
];
};
};
testScript = { nodes, ... }: ''
node1.wait_for_unit("multi-user.target")
node1.succeed('kexec --load /run/current-system/kernel --initrd /run/current-system/initrd --command-line "$(</proc/cmdline)"')
node1.execute("systemctl kexec >&2 &", check_return=False)
node1.connected = False
node1.connect()
node1.wait_for_unit("multi-user.target")
# Check the machine with kexec-boot.nix profile boots up
node2.wait_for_unit("multi-user.target")
node2.shutdown()
# Kexec node1 to the toplevel of node2 via the kexec-boot script
node1.execute('${nodes.node2.config.system.build.kexecBoot}/kexec-boot', check_return=False)
node1.connected = False
node1.connect()
node1.wait_for_unit("multi-user.target")
node1.shutdown()
'';
})