disko/tests/module.nix

27 lines
769 B
Nix
Raw Normal View History

{ pkgs ? import <nixpkgs> { }
, diskoLib ? pkgs.callPackage ../lib { }
2022-10-29 14:19:29 +03:00
}:
diskoLib.testLib.makeDiskoTest {
inherit pkgs;
2023-02-21 19:19:39 +03:00
name = "module";
2022-10-29 14:19:29 +03:00
disko-config = ../example/complex.nix;
2023-09-02 20:42:05 +03:00
extraInstallerConfig.networking.hostId = "8425e349";
extraSystemConfig = {
networking.hostId = "8425e349";
2022-10-29 14:19:29 +03:00
fileSystems."/zfs_legacy_fs".options = [ "nofail" ]; # TODO find out why we need this!
};
testMode = "module";
extraTestScript = ''
machine.succeed("test -b /dev/md/raid1p1");
machine.succeed("mountpoint /zfs_fs");
machine.succeed("mountpoint /zfs_legacy_fs");
machine.succeed("mountpoint /ext4onzfs");
machine.succeed("mountpoint /ext4_on_lvm");
'';
extraInstallerConfig = {
2022-10-29 14:19:29 +03:00
boot.kernelModules = [ "dm-raid" "dm-mirror" ];
};
}