mirror of
https://github.com/nix-community/disko
synced 2024-11-10 06:14:14 +00:00
24 lines
614 B
Nix
24 lines
614 B
Nix
{ pkgs ? (import <nixpkgs> { })
|
|
, makeDiskoTest ? (pkgs.callPackage ../lib { }).testLib.makeDiskoTest
|
|
}:
|
|
makeDiskoTest {
|
|
inherit pkgs;
|
|
name = "swap";
|
|
disko-config = ../example/swap.nix;
|
|
extraTestScript = ''
|
|
machine.succeed("mountpoint /");
|
|
machine.succeed("swapon --show >&2");
|
|
machine.succeed("""
|
|
lsblk --json |
|
|
jq -e '.blockdevices[] |
|
|
select(.name == "vda") |
|
|
.children[] |
|
|
select(.name == "vda3") |
|
|
.children[0].mountpoints[0] == "[SWAP]"
|
|
'
|
|
""");
|
|
'';
|
|
extraConfig = {
|
|
environment.systemPackages = [ pkgs.jq ];
|
|
};
|
|
}
|