Loading nixos/tests/incus/default.nix +1 −0 Original line number Diff line number Diff line Loading @@ -14,6 +14,7 @@ openvswitch = import ./openvswitch.nix { inherit system pkgs; }; preseed = import ./preseed.nix { inherit system pkgs; }; socket-activated = import ./socket-activated.nix { inherit system pkgs; }; storage = import ./storage.nix { inherit system pkgs; }; ui = import ./ui.nix {inherit system pkgs;}; virtual-machine = handleTestOn [ "x86_64-linux" ] ./virtual-machine.nix { inherit system pkgs; }; } nixos/tests/incus/storage.nix 0 → 100644 +46 −0 Original line number Diff line number Diff line import ../make-test-python.nix ( { pkgs, lib, ... }: { name = "incus-storage"; meta = { maintainers = lib.teams.lxc.members; }; nodes.machine = { lib, ... }: { boot.supportedFilesystems = [ "zfs" ]; boot.zfs.forceImportRoot = false; environment.systemPackages = [ pkgs.parted ]; networking.hostId = "01234567"; networking.nftables.enable = true; virtualisation = { emptyDiskImages = [ 2048 ]; incus.enable = true; }; }; testScript = '' machine.wait_for_unit("incus.service") with subtest("Verify zfs pool created and usable"): machine.succeed( "zpool status", "parted --script /dev/vdb mklabel gpt", "zpool create zfs_pool /dev/vdb", ) machine.succeed("incus storage create zfs_pool zfs source=zfs_pool/incus") machine.succeed("zfs list zfs_pool/incus") machine.succeed("incus storage volume create zfs_pool test_fs --type filesystem") machine.succeed("incus storage volume create zfs_pool test_vol --type block") machine.succeed("incus storage show zfs_pool") machine.succeed("incus storage volume list zfs_pool") machine.succeed("incus storage volume show zfs_pool test_fs") machine.succeed("incus storage volume show zfs_pool test_vol") ''; } ) Loading
nixos/tests/incus/default.nix +1 −0 Original line number Diff line number Diff line Loading @@ -14,6 +14,7 @@ openvswitch = import ./openvswitch.nix { inherit system pkgs; }; preseed = import ./preseed.nix { inherit system pkgs; }; socket-activated = import ./socket-activated.nix { inherit system pkgs; }; storage = import ./storage.nix { inherit system pkgs; }; ui = import ./ui.nix {inherit system pkgs;}; virtual-machine = handleTestOn [ "x86_64-linux" ] ./virtual-machine.nix { inherit system pkgs; }; }
nixos/tests/incus/storage.nix 0 → 100644 +46 −0 Original line number Diff line number Diff line import ../make-test-python.nix ( { pkgs, lib, ... }: { name = "incus-storage"; meta = { maintainers = lib.teams.lxc.members; }; nodes.machine = { lib, ... }: { boot.supportedFilesystems = [ "zfs" ]; boot.zfs.forceImportRoot = false; environment.systemPackages = [ pkgs.parted ]; networking.hostId = "01234567"; networking.nftables.enable = true; virtualisation = { emptyDiskImages = [ 2048 ]; incus.enable = true; }; }; testScript = '' machine.wait_for_unit("incus.service") with subtest("Verify zfs pool created and usable"): machine.succeed( "zpool status", "parted --script /dev/vdb mklabel gpt", "zpool create zfs_pool /dev/vdb", ) machine.succeed("incus storage create zfs_pool zfs source=zfs_pool/incus") machine.succeed("zfs list zfs_pool/incus") machine.succeed("incus storage volume create zfs_pool test_fs --type filesystem") machine.succeed("incus storage volume create zfs_pool test_vol --type block") machine.succeed("incus storage show zfs_pool") machine.succeed("incus storage volume list zfs_pool") machine.succeed("incus storage volume show zfs_pool test_fs") machine.succeed("incus storage volume show zfs_pool test_vol") ''; } )