2017-11-18 22:33:24 +00:00
|
|
|
# Test configuration switching.
|
|
|
|
|
2019-12-15 17:22:35 +00:00
|
|
|
import ./make-test-python.nix ({ pkgs, ...} : {
|
2017-11-18 22:33:24 +00:00
|
|
|
name = "switch-test";
|
|
|
|
meta = with pkgs.stdenv.lib.maintainers; {
|
|
|
|
maintainers = [ gleber ];
|
|
|
|
};
|
|
|
|
|
|
|
|
nodes = {
|
2018-07-20 21:56:59 +01:00
|
|
|
machine = { ... }: {
|
2017-11-18 22:33:24 +00:00
|
|
|
users.mutableUsers = false;
|
|
|
|
};
|
2018-07-20 21:56:59 +01:00
|
|
|
other = { ... }: {
|
2017-11-18 22:33:24 +00:00
|
|
|
users.mutableUsers = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
testScript = {nodes, ...}: let
|
|
|
|
originalSystem = nodes.machine.config.system.build.toplevel;
|
|
|
|
otherSystem = nodes.other.config.system.build.toplevel;
|
2019-02-14 21:55:16 +00:00
|
|
|
|
|
|
|
# Ensures failures pass through using pipefail, otherwise failing to
|
|
|
|
# switch-to-configuration is hidden by the success of `tee`.
|
|
|
|
stderrRunner = pkgs.writeScript "stderr-runner" ''
|
2020-04-07 07:25:48 +01:00
|
|
|
#! ${pkgs.runtimeShell}
|
2019-02-14 21:55:16 +00:00
|
|
|
set -e
|
|
|
|
set -o pipefail
|
|
|
|
exec env -i "$@" | tee /dev/stderr
|
|
|
|
'';
|
2017-11-18 22:33:24 +00:00
|
|
|
in ''
|
2019-12-15 17:22:35 +00:00
|
|
|
machine.succeed(
|
|
|
|
"${stderrRunner} ${originalSystem}/bin/switch-to-configuration test"
|
|
|
|
)
|
|
|
|
machine.succeed(
|
|
|
|
"${stderrRunner} ${otherSystem}/bin/switch-to-configuration test"
|
|
|
|
)
|
2017-11-18 22:33:24 +00:00
|
|
|
'';
|
|
|
|
})
|