1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/nixos/tests/initrd-secrets.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

56 lines
1.4 KiB
Nix
Raw Normal View History

{
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}";
2024-06-21 12:41:50 +01:00
meta.maintainers = [ ];
2022-03-20 23:15:30 +00:00
nodes.machine =
{ ... }:
{
virtualisation.useBootLoader = true;
boot.initrd.secrets = {
"/test" = secretInStore;
# This should *not* need to be copied in postMountCommands
"/run/keys/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",
"cmp ${secretInStore} /run/keys/test",
)
'';
};
in
lib.flip lib.genAttrs testWithCompressor [
"cat"
"gzip"
"bzip2"
"xz"
"lzma"
"lzop"
"pigz"
"pixz"
"zstd"
]