python312Packages.homematicip: 1.1.2 -> 1.1.3 (#356780)
[NixPkgs.git] / nixos / tests / luks.nix
blobda1d0c63b95dfc6c5411d34b77d979631853ab4c
1 import ./make-test-python.nix ({ lib, pkgs, ... }: {
2   name = "luks";
4   nodes.machine = { pkgs, ... }: {
5     imports = [ ./common/auto-format-root-device.nix ];
7     # Use systemd-boot
8     virtualisation = {
9       emptyDiskImages = [ 512 512 ];
10       useBootLoader = true;
11       useEFIBoot = true;
12       # To boot off the encrypted disk, we need to have a init script which comes from the Nix store
13       mountHostNixStore = true;
14     };
15     boot.loader.systemd-boot.enable = true;
17     boot.kernelParams = lib.mkOverride 5 [ "console=tty1" ];
19     environment.systemPackages = with pkgs; [ cryptsetup ];
21     specialisation = rec {
22       boot-luks.configuration = {
23         boot.initrd.luks.devices = lib.mkVMOverride {
24           # We have two disks and only type one password - key reuse is in place
25           cryptroot.device = "/dev/vdb";
26           cryptroot2.device = "/dev/vdc";
27         };
28         virtualisation.rootDevice = "/dev/mapper/cryptroot";
29       };
30       boot-luks-custom-keymap.configuration = lib.mkMerge [
31         boot-luks.configuration
32         {
33           console.keyMap = "neo";
34         }
35       ];
36     };
37   };
39   enableOCR = true;
41   testScript = ''
42     # Create encrypted volume
43     machine.wait_for_unit("multi-user.target")
44     machine.succeed("echo -n supersecret | cryptsetup luksFormat -q --iter-time=1 /dev/vdb -")
45     machine.succeed("echo -n supersecret | cryptsetup luksFormat -q --iter-time=1 /dev/vdc -")
47     # Boot from the encrypted disk
48     machine.succeed("bootctl set-default nixos-generation-1-specialisation-boot-luks.conf")
49     machine.succeed("sync")
50     machine.crash()
52     # Boot and decrypt the disk
53     machine.start()
54     machine.wait_for_text("Passphrase for")
55     machine.send_chars("supersecret\n")
56     machine.wait_for_unit("multi-user.target")
58     assert "/dev/mapper/cryptroot on / type ext4" in machine.succeed("mount")
60     # Boot from the encrypted disk with custom keymap
61     machine.succeed("bootctl set-default nixos-generation-1-specialisation-boot-luks-custom-keymap.conf")
62     machine.succeed("sync")
63     machine.crash()
65     # Boot and decrypt the disk
66     machine.start()
67     machine.wait_for_text("Passphrase for")
68     machine.send_chars("havfkhfrkfl\n")
69     machine.wait_for_unit("multi-user.target")
71     assert "/dev/mapper/cryptroot on / type ext4" in machine.succeed("mount")
72   '';