2018-11-11 08:41:11 +00:00
|
|
|
{ system ? builtins.currentSystem,
|
|
|
|
config ? {},
|
|
|
|
pkgs ? import ../.. { inherit system config; }
|
|
|
|
}:
|
2017-11-13 18:56:03 +00:00
|
|
|
|
2020-01-28 07:54:17 +00:00
|
|
|
with import ../lib/testing-python.nix { inherit system pkgs; };
|
2017-11-13 18:56:03 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
makeZfsTest = name:
|
2021-01-10 12:23:32 +00:00
|
|
|
{ kernelPackage ? if enableUnstable then pkgs.linuxPackages_latest else pkgs.linuxPackages
|
2017-11-13 18:56:03 +00:00
|
|
|
, enableUnstable ? false
|
|
|
|
, extraTest ? ""
|
|
|
|
}:
|
|
|
|
makeTest {
|
|
|
|
name = "zfs-" + name;
|
2021-01-10 19:08:30 +00:00
|
|
|
meta = with pkgs.lib.maintainers; {
|
2017-11-13 18:56:03 +00:00
|
|
|
maintainers = [ adisbladis ];
|
|
|
|
};
|
|
|
|
|
2022-03-20 23:15:30 +00:00
|
|
|
nodes.machine = { pkgs, lib, ... }:
|
2021-06-11 07:24:56 +01:00
|
|
|
let
|
|
|
|
usersharePath = "/var/lib/samba/usershares";
|
|
|
|
in {
|
2020-01-28 07:54:17 +00:00
|
|
|
virtualisation.emptyDiskImages = [ 4096 ];
|
|
|
|
networking.hostId = "deadbeef";
|
|
|
|
boot.kernelPackages = kernelPackage;
|
|
|
|
boot.supportedFilesystems = [ "zfs" ];
|
|
|
|
boot.zfs.enableUnstable = enableUnstable;
|
2017-11-13 18:56:03 +00:00
|
|
|
|
2021-06-11 07:24:56 +01:00
|
|
|
services.samba = {
|
|
|
|
enable = true;
|
|
|
|
extraConfig = ''
|
|
|
|
registry shares = yes
|
|
|
|
usershare path = ${usersharePath}
|
|
|
|
usershare allow guests = yes
|
|
|
|
usershare max shares = 100
|
|
|
|
usershare owner only = no
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
systemd.services.samba-smbd.serviceConfig.ExecStartPre =
|
|
|
|
"${pkgs.coreutils}/bin/mkdir -m +t -p ${usersharePath}";
|
|
|
|
|
2020-01-28 07:54:17 +00:00
|
|
|
environment.systemPackages = [ pkgs.parted ];
|
2020-08-18 14:05:22 +01:00
|
|
|
|
|
|
|
# Setup regular fileSystems machinery to ensure forceImportAll can be
|
|
|
|
# tested via the regular service units.
|
2021-02-14 11:23:50 +00:00
|
|
|
virtualisation.fileSystems = {
|
2020-08-18 14:05:22 +01:00
|
|
|
"/forcepool" = {
|
|
|
|
device = "forcepool";
|
|
|
|
fsType = "zfs";
|
|
|
|
options = [ "noauto" ];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
# forcepool doesn't exist at first boot, and we need to manually test
|
|
|
|
# the import after tweaking the hostId.
|
|
|
|
systemd.services.zfs-import-forcepool.wantedBy = lib.mkVMOverride [];
|
|
|
|
systemd.targets.zfs.wantedBy = lib.mkVMOverride [];
|
|
|
|
boot.zfs.forceImportAll = true;
|
|
|
|
# /dev/disk/by-id doesn't get populated in the NixOS test framework
|
|
|
|
boot.zfs.devNodes = "/dev/disk/by-uuid";
|
2020-01-28 07:54:17 +00:00
|
|
|
};
|
2017-11-13 18:56:03 +00:00
|
|
|
|
|
|
|
testScript = ''
|
2019-10-27 12:53:36 +00:00
|
|
|
machine.succeed(
|
2020-01-28 07:54:17 +00:00
|
|
|
"modprobe zfs",
|
|
|
|
"zpool status",
|
|
|
|
"ls /dev",
|
|
|
|
"mkdir /tmp/mnt",
|
|
|
|
"udevadm settle",
|
|
|
|
"parted --script /dev/vdb mklabel msdos",
|
|
|
|
"parted --script /dev/vdb -- mkpart primary 1024M -1s",
|
|
|
|
"udevadm settle",
|
|
|
|
"zpool create rpool /dev/vdb1",
|
|
|
|
"zfs create -o mountpoint=legacy rpool/root",
|
2021-06-18 21:19:16 +01:00
|
|
|
# shared datasets cannot have legacy mountpoint
|
|
|
|
"zfs create rpool/shared_smb",
|
2020-01-28 07:54:17 +00:00
|
|
|
"mount -t zfs rpool/root /tmp/mnt",
|
|
|
|
"udevadm settle",
|
2021-06-18 21:19:16 +01:00
|
|
|
# wait for samba services
|
|
|
|
"systemctl is-system-running --wait",
|
|
|
|
"zfs set sharesmb=on rpool/shared_smb",
|
|
|
|
"zfs share rpool/shared_smb",
|
|
|
|
"smbclient -gNL localhost | grep rpool_shared_smb",
|
2020-01-28 07:54:17 +00:00
|
|
|
"umount /tmp/mnt",
|
|
|
|
"zpool destroy rpool",
|
|
|
|
"udevadm settle",
|
2019-10-27 12:53:36 +00:00
|
|
|
)
|
2020-02-19 19:38:15 +00:00
|
|
|
|
|
|
|
machine.succeed(
|
|
|
|
'echo password | zpool create -o altroot="/tmp/mnt" '
|
|
|
|
+ "-O encryption=aes-256-gcm -O keyformat=passphrase rpool /dev/vdb1",
|
|
|
|
"zfs create -o mountpoint=legacy rpool/root",
|
|
|
|
"mount -t zfs rpool/root /tmp/mnt",
|
|
|
|
"udevadm settle",
|
|
|
|
"umount /tmp/mnt",
|
|
|
|
"zpool destroy rpool",
|
|
|
|
"udevadm settle",
|
|
|
|
)
|
2020-08-18 14:05:22 +01:00
|
|
|
|
|
|
|
with subtest("boot.zfs.forceImportAll works"):
|
|
|
|
machine.succeed(
|
|
|
|
"rm /etc/hostid",
|
|
|
|
"zgenhostid deadcafe",
|
|
|
|
"zpool create forcepool /dev/vdb1 -O mountpoint=legacy",
|
|
|
|
)
|
|
|
|
machine.shutdown()
|
|
|
|
machine.start()
|
|
|
|
machine.succeed("udevadm settle")
|
|
|
|
machine.fail("zpool import forcepool")
|
|
|
|
machine.succeed(
|
|
|
|
"systemctl start zfs-import-forcepool.service",
|
|
|
|
"mount -t zfs forcepool /tmp/mnt",
|
|
|
|
)
|
2017-11-13 18:56:03 +00:00
|
|
|
'' + extraTest;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
in {
|
|
|
|
|
|
|
|
stable = makeZfsTest "stable" { };
|
|
|
|
|
|
|
|
unstable = makeZfsTest "unstable" {
|
|
|
|
enableUnstable = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
installer = (import ./installer.nix { }).zfsroot;
|
2022-04-07 18:03:47 +01:00
|
|
|
|
|
|
|
expand-partitions = makeTest {
|
|
|
|
name = "multi-disk-zfs";
|
|
|
|
nodes = {
|
|
|
|
machine = { pkgs, ... }: {
|
|
|
|
environment.systemPackages = [ pkgs.parted ];
|
|
|
|
boot.supportedFilesystems = [ "zfs" ];
|
|
|
|
networking.hostId = "00000000";
|
|
|
|
|
|
|
|
virtualisation = {
|
|
|
|
emptyDiskImages = [ 20480 20480 20480 20480 20480 20480 ];
|
|
|
|
};
|
|
|
|
|
|
|
|
specialisation.resize.configuration = {
|
|
|
|
services.zfs.expandOnBoot = [ "tank" ];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
testScript = { nodes, ... }:
|
|
|
|
''
|
|
|
|
start_all()
|
|
|
|
machine.wait_for_unit("default.target")
|
|
|
|
print(machine.succeed('mount'))
|
|
|
|
|
|
|
|
print(machine.succeed('parted --script /dev/vdb -- mklabel gpt'))
|
|
|
|
print(machine.succeed('parted --script /dev/vdb -- mkpart primary 1M 70M'))
|
|
|
|
|
|
|
|
print(machine.succeed('parted --script /dev/vdc -- mklabel gpt'))
|
|
|
|
print(machine.succeed('parted --script /dev/vdc -- mkpart primary 1M 70M'))
|
|
|
|
|
|
|
|
print(machine.succeed('zpool create tank mirror /dev/vdb1 /dev/vdc1 mirror /dev/vdd /dev/vde mirror /dev/vdf /dev/vdg'))
|
|
|
|
print(machine.succeed('zpool list -v'))
|
|
|
|
print(machine.succeed('mount'))
|
|
|
|
start_size = int(machine.succeed('df -k --output=size /tank | tail -n1').strip())
|
|
|
|
|
|
|
|
print(machine.succeed("/run/current-system/specialisation/resize/bin/switch-to-configuration test >&2"))
|
|
|
|
machine.wait_for_unit("zpool-expand-pools.service")
|
|
|
|
machine.wait_for_unit("zpool-expand@tank.service")
|
|
|
|
|
|
|
|
print(machine.succeed('zpool list -v'))
|
|
|
|
new_size = int(machine.succeed('df -k --output=size /tank | tail -n1').strip())
|
|
|
|
|
|
|
|
if (new_size - start_size) > 20000000:
|
|
|
|
print("Disk grew appropriately.")
|
|
|
|
else:
|
|
|
|
print(f"Disk went from {start_size} to {new_size}, which doesn't seem right.")
|
|
|
|
exit(1)
|
|
|
|
'';
|
|
|
|
};
|
2017-11-13 18:56:03 +00:00
|
|
|
}
|