X-Git-Url: http://git.scottworley.com/nixos-qemu-vm-isolation/blobdiff_plain/0fb3685a199d2804993f5b414cf4cca1be35e66a..HEAD:/checks/mount-grep.nix diff --git a/checks/mount-grep.nix b/checks/mount-grep.nix index 99084ea..5354d26 100644 --- a/checks/mount-grep.nix +++ b/checks/mount-grep.nix @@ -1,12 +1,20 @@ -{ lib, pkgs, ... }: { +pkgs: { name = "qemu-private-store-mount-grep"; + hostPkgs = pkgs; + + includeTestScriptReferences = false; + nodes = { shared = _: { }; private = _: { imports = [ ../modules/qemu-vm-isolation.nix ]; }; + privateErofs = _: { + imports = [ ../modules/qemu-vm-isolation.nix ]; + virtualisation.qemu.isolation.nixStoreFilesystemType = "erofs"; + }; useNixStoreImage = { virtualisation = { - sharedDirectories = lib.mkForce { }; + sharedDirectories = pkgs.lib.mkForce { }; useNixStoreImage = true; }; }; @@ -14,18 +22,14 @@ testScript = '' start_all() - shared.wait_for_unit("multi-user.target") - private.wait_for_unit("multi-user.target") - useNixStoreImage.wait_for_unit("multi-user.target") + for machine in [shared, private, privateErofs, useNixStoreImage]: + machine.wait_for_unit("multi-user.target") shared.succeed("[[ $(mount | grep -c virt) -gt 0 ]]") - private.succeed("[[ $(mount | grep -c virt) -eq 0 ]]") - useNixStoreImage.succeed("[[ $(mount | grep -c virt) -eq 0 ]]") - shared.succeed("[[ -e ${pkgs.pv} ]]") - private.fail("[[ -e ${pkgs.pv} ]]") - # useNixStoreImage isn't ready until this works: - # useNixStoreImage.fail("[[ -e ${pkgs.pv} ]]") + for machine in [private, privateErofs, useNixStoreImage]: + machine.succeed("[[ $(mount | grep -c virt) -eq 0 ]]") + machine.fail("[[ -e ${pkgs.pv} ]]") ''; }