nixos/tests: Add test for initrd secrets
lz4 compression is excluded because it doesn't work for a reason which remains unclear to me.
This commit is contained in:
parent
d4ef25db5d
commit
3136e49b8e
@ -168,6 +168,7 @@ in
|
|||||||
initrd-network-openvpn = handleTest ./initrd-network-openvpn {};
|
initrd-network-openvpn = handleTest ./initrd-network-openvpn {};
|
||||||
initrd-network-ssh = handleTest ./initrd-network-ssh {};
|
initrd-network-ssh = handleTest ./initrd-network-ssh {};
|
||||||
initrdNetwork = handleTest ./initrd-network.nix {};
|
initrdNetwork = handleTest ./initrd-network.nix {};
|
||||||
|
initrd-secrets = handleTest ./initrd-secrets.nix {};
|
||||||
installer = handleTest ./installer.nix {};
|
installer = handleTest ./installer.nix {};
|
||||||
iodine = handleTest ./iodine.nix {};
|
iodine = handleTest ./iodine.nix {};
|
||||||
ipfs = handleTest ./ipfs.nix {};
|
ipfs = handleTest ./ipfs.nix {};
|
||||||
|
35
nixos/tests/initrd-secrets.nix
Normal file
35
nixos/tests/initrd-secrets.nix
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
{ system ? builtins.currentSystem
|
||||||
|
, config ? {}
|
||||||
|
, pkgs ? import ../.. { inherit system config; }
|
||||||
|
, lib ? pkgs.lib
|
||||||
|
, testing ? import ../lib/testing-python.nix { inherit system pkgs; }
|
||||||
|
}:
|
||||||
|
let
|
||||||
|
secretInStore = pkgs.writeText "topsecret" "iamasecret";
|
||||||
|
testWithCompressor = compressor: testing.makeTest {
|
||||||
|
name = "initrd-secrets-${compressor}";
|
||||||
|
|
||||||
|
meta.maintainers = [ lib.maintainers.lheckemann ];
|
||||||
|
|
||||||
|
machine = { ... }: {
|
||||||
|
virtualisation.useBootLoader = true;
|
||||||
|
boot.initrd.secrets."/test" = secretInStore;
|
||||||
|
boot.initrd.postMountCommands = ''
|
||||||
|
cp /test /mnt-root/secret-from-initramfs
|
||||||
|
'';
|
||||||
|
boot.initrd.compressor = compressor;
|
||||||
|
# zstd compression is only supported from 5.9 onwards. Remove when 5.10 becomes default.
|
||||||
|
boot.kernelPackages = pkgs.linuxPackages_latest;
|
||||||
|
};
|
||||||
|
|
||||||
|
testScript = ''
|
||||||
|
start_all()
|
||||||
|
machine.wait_for_unit("multi-user.target")
|
||||||
|
machine.succeed(
|
||||||
|
"cmp ${secretInStore} /secret-from-initramfs"
|
||||||
|
)
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
in lib.flip lib.genAttrs testWithCompressor [
|
||||||
|
"cat" "gzip" "bzip2" "xz" "lzma" "lzop" "pigz" "pixz" "zstd"
|
||||||
|
]
|
Loading…
Reference in New Issue
Block a user