nixpkgs/nixos/tests/grow-partition.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

93 lines
2.5 KiB
Nix
Raw Normal View History

2023-10-16 16:58:19 +00:00
{ lib, ... }:
let
rootFslabel = "external";
rootFsDevice = "/dev/disk/by-label/${rootFslabel}";
externalModule =
partitionTableType:
{
config,
lib,
pkgs,
...
}:
{
virtualisation.directBoot.enable = false;
virtualisation.mountHostNixStore = false;
virtualisation.useEFIBoot = partitionTableType == "efi";
2023-10-16 16:58:19 +00:00
# This stops the qemu-vm module from overriding the fileSystems option
# with virtualisation.fileSystems.
virtualisation.fileSystems = lib.mkForce { };
2023-10-16 16:58:19 +00:00
boot.loader.grub.enable = true;
boot.loader.grub.efiSupport = partitionTableType == "efi";
boot.loader.grub.efiInstallAsRemovable = partitionTableType == "efi";
boot.loader.grub.device = if partitionTableType == "efi" then "nodev" else "/dev/vda";
2023-10-16 16:58:19 +00:00
boot.growPartition = true;
2023-10-16 16:58:19 +00:00
fileSystems = {
"/".device = rootFsDevice;
};
2023-10-16 16:58:19 +00:00
system.build.diskImage = import ../lib/make-disk-image.nix {
inherit config lib pkgs;
label = rootFslabel;
inherit partitionTableType;
format = "raw";
bootSize = "128M";
additionalSpace = "0M";
copyChannel = false;
};
2023-10-16 16:58:19 +00:00
};
in
{
name = "grow-partition";
meta.maintainers = with lib.maintainers; [ arianvp ];
nodes = {
efi = externalModule "efi";
legacy = externalModule "legacy";
legacyGPT = externalModule "legacy+gpt";
hybrid = externalModule "hybrid";
};
testScript =
{ nodes, ... }:
lib.concatLines (
lib.mapAttrsToList (name: node: ''
import os
import subprocess
import tempfile
import shutil
2023-10-16 16:58:19 +00:00
tmp_disk_image = tempfile.NamedTemporaryFile()
2023-10-16 16:58:19 +00:00
shutil.copyfile("${node.system.build.diskImage}/nixos.img", tmp_disk_image.name)
2023-10-16 16:58:19 +00:00
subprocess.run([
"${node.virtualisation.qemu.package}/bin/qemu-img",
"resize",
"-f",
"raw",
tmp_disk_image.name,
"+32M",
])
2023-10-16 16:58:19 +00:00
# Set NIX_DISK_IMAGE so that the qemu script finds the right disk image.
os.environ['NIX_DISK_IMAGE'] = tmp_disk_image.name
2023-10-16 16:58:19 +00:00
${name}.wait_for_unit("growpart.service")
systemd_growpart_logs = ${name}.succeed("journalctl --boot --unit growpart.service")
assert "CHANGED" in systemd_growpart_logs
${name}.succeed("systemctl restart growpart.service")
systemd_growpart_logs = ${name}.succeed("journalctl --boot --unit growpart.service")
assert "NOCHANGE" in systemd_growpart_logs
2023-10-16 16:58:19 +00:00
'') nodes
);
}