mirror of
https://github.com/nix-community/disko.git
synced 2024-11-04 05:44:29 +03:00
add nixos test
This commit is contained in:
parent
fab04d2a5e
commit
88f56a0b64
97
tests/test.nix
Normal file
97
tests/test.nix
Normal file
@ -0,0 +1,97 @@
|
|||||||
|
import <nixpkgs/nixos/tests/make-test.nix> ({ pkgs, ... }: let
|
||||||
|
|
||||||
|
disko-config = {
|
||||||
|
type = "devices";
|
||||||
|
content = {
|
||||||
|
vdb = {
|
||||||
|
type = "table";
|
||||||
|
format = "gpt";
|
||||||
|
partitions = [
|
||||||
|
{
|
||||||
|
type = "partition";
|
||||||
|
part-type = "ESP";
|
||||||
|
start = "1MiB";
|
||||||
|
end = "100MiB";
|
||||||
|
fs-type = "FAT32";
|
||||||
|
bootable = true;
|
||||||
|
content = {
|
||||||
|
type = "filesystem";
|
||||||
|
format = "vfat";
|
||||||
|
mountpoint = "/boot";
|
||||||
|
options = [
|
||||||
|
"defaults"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
||||||
|
{
|
||||||
|
type = "partition";
|
||||||
|
part-type = "primary";
|
||||||
|
start = "100MiB";
|
||||||
|
end = "100%";
|
||||||
|
content = {
|
||||||
|
type = "luks";
|
||||||
|
algo = "aes-xts...";
|
||||||
|
name = "crypted";
|
||||||
|
keyfile = "/tmp/secret.key";
|
||||||
|
extraArgs = [
|
||||||
|
"--hash sha512"
|
||||||
|
"--iter-time 5000"
|
||||||
|
];
|
||||||
|
content = {
|
||||||
|
type = "lvm";
|
||||||
|
name = "pool";
|
||||||
|
lvs = {
|
||||||
|
root = {
|
||||||
|
type = "lv";
|
||||||
|
size = "100M";
|
||||||
|
mountpoint = "/";
|
||||||
|
content = {
|
||||||
|
type = "filesystem";
|
||||||
|
format = "ext4";
|
||||||
|
mountpoint = "/";
|
||||||
|
options = [
|
||||||
|
"defaults"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
home = {
|
||||||
|
type = "lv";
|
||||||
|
size = "100M";
|
||||||
|
content = {
|
||||||
|
type = "filesystem";
|
||||||
|
format = "ext4";
|
||||||
|
mountpoint = "/home";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
in {
|
||||||
|
name = "disko";
|
||||||
|
|
||||||
|
machine =
|
||||||
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
<nixpkgs/nixos/modules/profiles/installation-device.nix>
|
||||||
|
<nixpkgs/nixos/modules/profiles/base.nix>
|
||||||
|
];
|
||||||
|
|
||||||
|
virtualisation.emptyDiskImages = [ 512 ];
|
||||||
|
};
|
||||||
|
|
||||||
|
testScript =
|
||||||
|
''
|
||||||
|
$machine->succeed("echo 'secret' > /tmp/secret.key");
|
||||||
|
$machine->succeed("${pkgs.writeScript "create" ((import ../lib).create disko-config)}");
|
||||||
|
$machine->succeed("${pkgs.writeScript "mount" ((import ../lib).mount disko-config)}");
|
||||||
|
'';
|
||||||
|
|
||||||
|
})
|
Loading…
Reference in New Issue
Block a user