2014-04-14 12:02:44 +00:00
|
|
|
import ./make-test.nix ({ pkgs, ... }:
|
2013-06-28 02:19:38 +00:00
|
|
|
|
|
|
|
with pkgs.lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
ksExt = pkgs.writeText "ks-ext4" ''
|
|
|
|
clearpart --all --initlabel --drives=vdb
|
|
|
|
|
|
|
|
part /boot --recommended --label=boot --fstype=ext2 --ondisk=vdb
|
|
|
|
part swap --recommended --label=swap --fstype=swap --ondisk=vdb
|
|
|
|
part /nix --size=500 --label=nix --fstype=ext3 --ondisk=vdb
|
|
|
|
part / --recommended --label=root --fstype=ext4 --ondisk=vdb
|
|
|
|
'';
|
|
|
|
|
|
|
|
ksBtrfs = pkgs.writeText "ks-btrfs" ''
|
|
|
|
clearpart --all --initlabel --drives=vdb,vdc
|
|
|
|
|
|
|
|
part swap1 --recommended --label=swap1 --fstype=swap --ondisk=vdb
|
|
|
|
part swap2 --recommended --label=swap2 --fstype=swap --ondisk=vdc
|
|
|
|
|
|
|
|
part btrfs.1 --grow --ondisk=vdb
|
|
|
|
part btrfs.2 --grow --ondisk=vdc
|
|
|
|
|
|
|
|
btrfs / --data=0 --metadata=1 --label=root btrfs.1 btrfs.2
|
|
|
|
'';
|
|
|
|
|
2014-03-25 20:39:10 +00:00
|
|
|
ksF2fs = pkgs.writeText "ks-f2fs" ''
|
|
|
|
clearpart --all --initlabel --drives=vdb
|
|
|
|
|
|
|
|
part swap --recommended --label=swap --fstype=swap --ondisk=vdb
|
|
|
|
part /boot --recommended --label=boot --fstype=f2fs --ondisk=vdb
|
|
|
|
part / --recommended --label=root --fstype=f2fs --ondisk=vdb
|
|
|
|
'';
|
|
|
|
|
2013-06-28 02:19:38 +00:00
|
|
|
ksRaid = pkgs.writeText "ks-raid" ''
|
|
|
|
clearpart --all --initlabel --drives=vdb,vdc
|
|
|
|
|
|
|
|
part raid.01 --size=200 --ondisk=vdb
|
|
|
|
part raid.02 --size=200 --ondisk=vdc
|
|
|
|
|
|
|
|
part swap1 --size=500 --label=swap1 --fstype=swap --ondisk=vdb
|
|
|
|
part swap2 --size=500 --label=swap2 --fstype=swap --ondisk=vdc
|
|
|
|
|
|
|
|
part raid.11 --grow --ondisk=vdb
|
|
|
|
part raid.12 --grow --ondisk=vdc
|
|
|
|
|
|
|
|
raid /boot --level=1 --fstype=ext3 --device=md0 raid.01 raid.02
|
|
|
|
raid / --level=1 --fstype=xfs --device=md1 raid.11 raid.12
|
|
|
|
'';
|
|
|
|
|
|
|
|
ksRaidLvmCrypt = pkgs.writeText "ks-lvm-crypt" ''
|
|
|
|
clearpart --all --initlabel --drives=vdb,vdc
|
|
|
|
|
|
|
|
part raid.1 --grow --ondisk=vdb
|
|
|
|
part raid.2 --grow --ondisk=vdc
|
|
|
|
|
|
|
|
raid pv.0 --level=1 --encrypted --passphrase=x --device=md0 raid.1 raid.2
|
|
|
|
|
|
|
|
volgroup nixos pv.0
|
|
|
|
|
|
|
|
logvol /boot --size=200 --fstype=ext3 --name=boot --vgname=nixos
|
|
|
|
logvol swap --size=500 --fstype=swap --name=swap --vgname=nixos
|
|
|
|
logvol / --size=1000 --grow --fstype=ext4 --name=root --vgname=nixos
|
|
|
|
'';
|
|
|
|
in {
|
2014-06-28 14:04:49 +00:00
|
|
|
name = "partitiion";
|
|
|
|
|
2018-07-20 20:56:59 +00:00
|
|
|
machine = { pkgs, ... }: {
|
2013-06-28 02:19:38 +00:00
|
|
|
environment.systemPackages = [
|
2014-10-21 23:37:32 +00:00
|
|
|
pkgs.pythonPackages.nixpart0
|
2016-01-03 18:21:27 +00:00
|
|
|
pkgs.file pkgs.btrfs-progs pkgs.xfsprogs pkgs.lvm2
|
2013-06-28 02:19:38 +00:00
|
|
|
];
|
|
|
|
virtualisation.emptyDiskImages = [ 4096 4096 ];
|
|
|
|
};
|
|
|
|
|
|
|
|
testScript = ''
|
2013-06-30 18:56:21 +00:00
|
|
|
my $diskStart;
|
2013-06-30 22:47:56 +00:00
|
|
|
my @mtab;
|
|
|
|
|
|
|
|
sub getMtab {
|
|
|
|
my $mounts = $machine->succeed("cat /proc/mounts");
|
|
|
|
chomp $mounts;
|
|
|
|
return map [split], split /\n/, $mounts;
|
|
|
|
}
|
2013-06-30 18:56:21 +00:00
|
|
|
|
|
|
|
sub parttest {
|
|
|
|
my ($desc, $code) = @_;
|
|
|
|
$machine->start;
|
|
|
|
$machine->waitForUnit("default.target");
|
2013-06-30 22:47:56 +00:00
|
|
|
|
|
|
|
# Gather mounts and superblock
|
|
|
|
@mtab = getMtab;
|
2013-06-30 18:56:21 +00:00
|
|
|
$diskStart = $machine->succeed("dd if=/dev/vda bs=512 count=1");
|
2013-06-30 22:47:56 +00:00
|
|
|
|
2013-06-30 18:56:21 +00:00
|
|
|
subtest($desc, $code);
|
|
|
|
$machine->shutdown;
|
|
|
|
}
|
2013-06-28 02:19:38 +00:00
|
|
|
|
|
|
|
sub ensureSanity {
|
|
|
|
# Check whether the filesystem in /dev/vda is still intact
|
|
|
|
my $newDiskStart = $machine->succeed("dd if=/dev/vda bs=512 count=1");
|
|
|
|
if ($diskStart ne $newDiskStart) {
|
|
|
|
$machine->log("Something went wrong, the partitioner wrote " .
|
|
|
|
"something into the first 512 bytes of /dev/vda!");
|
|
|
|
die;
|
|
|
|
}
|
2013-06-30 22:47:56 +00:00
|
|
|
|
|
|
|
# Check whether nixpart has unmounted anything
|
|
|
|
my @currentMtab = getMtab;
|
|
|
|
for my $mount (@mtab) {
|
|
|
|
my $path = $mount->[1];
|
|
|
|
unless (grep { $_->[1] eq $path } @currentMtab) {
|
|
|
|
$machine->log("The partitioner seems to have unmounted $path.");
|
|
|
|
die;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sub checkMount {
|
|
|
|
my $mounts = $machine->succeed("cat /proc/mounts");
|
|
|
|
|
2013-06-28 02:19:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sub kickstart {
|
|
|
|
$machine->copyFileFromHost($_[0], "/kickstart");
|
|
|
|
$machine->succeed("nixpart -v /kickstart");
|
|
|
|
ensureSanity;
|
|
|
|
}
|
|
|
|
|
|
|
|
sub ensurePartition {
|
|
|
|
my ($name, $match) = @_;
|
|
|
|
my $path = $name =~ /^\// ? $name : "/dev/disk/by-label/$name";
|
|
|
|
my $out = $machine->succeed("file -Ls $path");
|
|
|
|
my @matches = grep(/^$path: .*$match/i, $out);
|
|
|
|
if (!@matches) {
|
|
|
|
$machine->log("Partition on $path was expected to have a " .
|
|
|
|
"file system that matches $match, but instead has: $out");
|
|
|
|
die;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sub ensureNoPartition {
|
|
|
|
$machine->succeed("test ! -e /dev/$_[0]");
|
|
|
|
}
|
|
|
|
|
2013-07-01 15:58:05 +00:00
|
|
|
sub ensureMountPoint {
|
|
|
|
$machine->succeed("mountpoint $_[0]");
|
|
|
|
}
|
|
|
|
|
2013-08-01 12:56:19 +00:00
|
|
|
sub remountAndCheck {
|
2013-07-01 15:32:48 +00:00
|
|
|
$machine->nest("Remounting partitions:", sub {
|
|
|
|
# XXX: "findmnt -ARunl -oTARGET /mnt" seems to NOT print all mounts!
|
|
|
|
my $getmounts_cmd = "cat /proc/mounts | cut -d' ' -f2 | grep '^/mnt'";
|
|
|
|
# Insert canaries first
|
|
|
|
my $canaries = $machine->succeed($getmounts_cmd . " | while read p;" .
|
|
|
|
" do touch \"\$p/canary\";" .
|
|
|
|
" echo \"\$p/canary\"; done");
|
|
|
|
# Now unmount manually
|
|
|
|
$machine->succeed($getmounts_cmd . " | tac | xargs -r umount");
|
|
|
|
# /mnt should be empty or non-existing
|
|
|
|
my $found = $machine->succeed("find /mnt -mindepth 1");
|
|
|
|
chomp $found;
|
|
|
|
if ($found) {
|
|
|
|
$machine->log("Cruft found in /mnt:\n$found");
|
|
|
|
die;
|
|
|
|
}
|
|
|
|
# Try to remount with nixpart
|
|
|
|
$machine->succeed("nixpart -vm /kickstart");
|
2013-07-01 15:58:05 +00:00
|
|
|
ensureMountPoint("/mnt");
|
2013-07-01 15:32:48 +00:00
|
|
|
# Check if our beloved canaries are dead
|
|
|
|
chomp $canaries;
|
|
|
|
$machine->nest("Checking canaries:", sub {
|
|
|
|
for my $canary (split /\n/, $canaries) {
|
|
|
|
$machine->succeed("test -e '$canary'");
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2013-06-30 18:56:21 +00:00
|
|
|
parttest "ext2, ext3 and ext4 filesystems", sub {
|
2013-06-28 02:19:38 +00:00
|
|
|
kickstart("${ksExt}");
|
|
|
|
ensurePartition("boot", "ext2");
|
|
|
|
ensurePartition("swap", "swap");
|
|
|
|
ensurePartition("nix", "ext3");
|
|
|
|
ensurePartition("root", "ext4");
|
|
|
|
ensurePartition("/dev/vdb4", "boot sector");
|
|
|
|
ensureNoPartition("vdb6");
|
|
|
|
ensureNoPartition("vdc1");
|
2013-08-01 12:56:19 +00:00
|
|
|
remountAndCheck;
|
2013-07-01 15:58:05 +00:00
|
|
|
ensureMountPoint("/mnt/boot");
|
|
|
|
ensureMountPoint("/mnt/nix");
|
2013-06-28 02:19:38 +00:00
|
|
|
};
|
|
|
|
|
2013-06-30 18:56:21 +00:00
|
|
|
parttest "btrfs filesystem", sub {
|
2013-07-01 16:41:38 +00:00
|
|
|
$machine->succeed("modprobe btrfs");
|
2013-06-28 02:19:38 +00:00
|
|
|
kickstart("${ksBtrfs}");
|
|
|
|
ensurePartition("swap1", "swap");
|
|
|
|
ensurePartition("swap2", "swap");
|
|
|
|
ensurePartition("/dev/vdb2", "btrfs");
|
|
|
|
ensurePartition("/dev/vdc2", "btrfs");
|
|
|
|
ensureNoPartition("vdb3");
|
|
|
|
ensureNoPartition("vdc3");
|
2013-08-01 12:56:19 +00:00
|
|
|
remountAndCheck;
|
2013-06-28 02:19:38 +00:00
|
|
|
};
|
|
|
|
|
2014-03-25 20:39:10 +00:00
|
|
|
parttest "f2fs filesystem", sub {
|
|
|
|
$machine->succeed("modprobe f2fs");
|
|
|
|
kickstart("${ksF2fs}");
|
|
|
|
ensurePartition("swap", "swap");
|
|
|
|
ensurePartition("boot", "f2fs");
|
|
|
|
ensurePartition("root", "f2fs");
|
2014-10-22 04:03:39 +00:00
|
|
|
remountAndCheck;
|
2014-03-25 20:39:10 +00:00
|
|
|
ensureMountPoint("/mnt/boot", "f2fs");
|
|
|
|
};
|
|
|
|
|
2013-06-30 18:56:21 +00:00
|
|
|
parttest "RAID1 with XFS", sub {
|
2013-06-28 02:19:38 +00:00
|
|
|
kickstart("${ksRaid}");
|
|
|
|
ensurePartition("swap1", "swap");
|
|
|
|
ensurePartition("swap2", "swap");
|
|
|
|
ensurePartition("/dev/md0", "ext3");
|
|
|
|
ensurePartition("/dev/md1", "xfs");
|
|
|
|
ensureNoPartition("vdb4");
|
|
|
|
ensureNoPartition("vdc4");
|
|
|
|
ensureNoPartition("md2");
|
2013-08-01 12:56:19 +00:00
|
|
|
remountAndCheck;
|
2013-07-01 15:58:05 +00:00
|
|
|
ensureMountPoint("/mnt/boot");
|
2013-06-28 02:19:38 +00:00
|
|
|
};
|
|
|
|
|
2013-06-30 18:56:21 +00:00
|
|
|
parttest "RAID1 with LUKS and LVM", sub {
|
2013-06-28 02:19:38 +00:00
|
|
|
kickstart("${ksRaidLvmCrypt}");
|
|
|
|
ensurePartition("/dev/vdb1", "data");
|
|
|
|
ensureNoPartition("vdb2");
|
|
|
|
ensurePartition("/dev/vdc1", "data");
|
|
|
|
ensureNoPartition("vdc2");
|
|
|
|
|
|
|
|
ensurePartition("/dev/md0", "luks");
|
|
|
|
ensureNoPartition("md1");
|
|
|
|
|
|
|
|
ensurePartition("/dev/nixos/boot", "ext3");
|
|
|
|
ensurePartition("/dev/nixos/swap", "swap");
|
|
|
|
ensurePartition("/dev/nixos/root", "ext4");
|
2013-08-01 12:56:19 +00:00
|
|
|
|
|
|
|
remountAndCheck;
|
2013-07-01 15:58:05 +00:00
|
|
|
ensureMountPoint("/mnt/boot");
|
2013-06-28 02:19:38 +00:00
|
|
|
};
|
|
|
|
'';
|
2014-04-14 12:02:44 +00:00
|
|
|
})
|