mirror of
https://github.com/nix-community/disko
synced 2024-11-10 06:14:14 +00:00
07f9727ce6
154: tests: adjust wait_for_text calls to work for systemd-initrd or old stage-1 r=Mic92 a=lilyinstarlight Co-authored-by: Lily Foster <lily@lily.flowers>
16 lines
437 B
Nix
16 lines
437 B
Nix
{ pkgs ? (import <nixpkgs> { })
|
|
, makeDiskoTest ? (pkgs.callPackage ./lib.nix { }).makeDiskoTest
|
|
}:
|
|
makeDiskoTest {
|
|
name = "luks-lvm";
|
|
disko-config = ../example/luks-lvm.nix;
|
|
extraTestScript = ''
|
|
machine.succeed("cryptsetup isLuks /dev/vda2");
|
|
machine.succeed("mountpoint /home");
|
|
'';
|
|
enableOCR = true;
|
|
bootCommands = ''
|
|
machine.wait_for_text("[Pp]assphrase for")
|
|
machine.send_chars("secretsecret\n")
|
|
'';
|
|
}
|