2022-02-27 00:38:28 +03:00
|
|
|
import ./make-test-python.nix ({ pkgs, lib, ... }: {
|
2014-06-28 18:04:49 +04:00
|
|
|
name = "kexec";
|
2019-12-24 18:17:39 +03:00
|
|
|
meta = with lib.maintainers; {
|
2022-02-27 13:15:30 +03:00
|
|
|
maintainers = [ flokli lassulus ];
|
2015-07-12 13:09:40 +03:00
|
|
|
};
|
2013-09-16 19:15:42 +04:00
|
|
|
|
2022-02-27 00:38:28 +03:00
|
|
|
nodes = {
|
|
|
|
node1 = { ... }: {
|
|
|
|
virtualisation.vlans = [ ];
|
2022-02-27 13:15:30 +03:00
|
|
|
virtualisation.memorySize = 4 * 1024;
|
|
|
|
virtualisation.useBootLoader = true;
|
|
|
|
virtualisation.useEFIBoot = true;
|
|
|
|
boot.loader.systemd-boot.enable = true;
|
|
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
2022-02-27 00:38:28 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
node2 = { modulesPath, ... }: {
|
|
|
|
virtualisation.vlans = [ ];
|
2022-04-16 20:09:22 +03:00
|
|
|
environment.systemPackages = [ pkgs.hello ];
|
2022-02-27 00:38:28 +03:00
|
|
|
imports = [
|
2022-06-09 20:59:03 +03:00
|
|
|
"${modulesPath}/installer/netboot/netboot-minimal.nix"
|
2022-02-27 00:38:28 +03:00
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
testScript = { nodes, ... }: ''
|
2022-04-16 20:09:22 +03:00
|
|
|
# Test whether reboot via kexec works.
|
2022-02-27 00:38:28 +03:00
|
|
|
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")
|
|
|
|
|
2022-06-09 20:59:03 +03:00
|
|
|
# Check if the machine with netboot-minimal.nix profile boots up
|
2022-02-27 00:38:28 +03:00
|
|
|
node2.wait_for_unit("multi-user.target")
|
|
|
|
node2.shutdown()
|
|
|
|
|
|
|
|
# Kexec node1 to the toplevel of node2 via the kexec-boot script
|
2022-02-27 13:15:30 +03:00
|
|
|
node1.succeed('touch /run/foo')
|
2022-04-16 20:09:22 +03:00
|
|
|
node1.fail('hello')
|
2022-06-09 20:59:03 +03:00
|
|
|
node1.execute('${nodes.node2.config.system.build.kexecTree}/kexec-boot', check_return=False)
|
2022-02-27 13:15:30 +03:00
|
|
|
node1.succeed('! test -e /run/foo')
|
2022-04-16 20:09:22 +03:00
|
|
|
node1.succeed('hello')
|
|
|
|
node1.succeed('[ "$(hostname)" = "node2" ]')
|
2022-02-27 00:38:28 +03:00
|
|
|
|
|
|
|
node1.shutdown()
|
|
|
|
'';
|
2015-07-12 13:09:40 +03:00
|
|
|
})
|