2023-10-20 07:10:59 +03:00
|
|
|
import ../make-test-python.nix ({ pkgs, lib, ... } :
|
|
|
|
|
|
|
|
let
|
|
|
|
releases = import ../../release.nix {
|
|
|
|
configuration = {
|
|
|
|
# Building documentation makes the test unnecessarily take a longer time:
|
|
|
|
documentation.enable = lib.mkForce false;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
container-image-metadata = releases.lxdContainerMeta.${pkgs.stdenv.hostPlatform.system};
|
|
|
|
container-image-rootfs = releases.lxdContainerImage.${pkgs.stdenv.hostPlatform.system};
|
|
|
|
in
|
|
|
|
{
|
|
|
|
name = "incus-container";
|
|
|
|
|
2023-12-02 17:38:44 +03:00
|
|
|
meta = {
|
|
|
|
maintainers = lib.teams.lxc.members;
|
|
|
|
};
|
2023-10-20 07:10:59 +03:00
|
|
|
|
|
|
|
nodes.machine = { ... }: {
|
|
|
|
virtualisation = {
|
|
|
|
# Ensure test VM has enough resources for creating and managing guests
|
|
|
|
cores = 2;
|
|
|
|
memorySize = 1024;
|
|
|
|
diskSize = 4096;
|
|
|
|
|
|
|
|
incus.enable = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
testScript = ''
|
|
|
|
def instance_is_up(_) -> bool:
|
2023-11-03 05:09:37 +03:00
|
|
|
status, _ = machine.execute("incus exec container --disable-stdin --force-interactive /run/current-system/sw/bin/true")
|
|
|
|
return status == 0
|
|
|
|
|
|
|
|
def set_container(config):
|
|
|
|
machine.succeed(f"incus config set container {config}")
|
|
|
|
machine.succeed("incus restart container")
|
|
|
|
with machine.nested("Waiting for instance to start and be usable"):
|
|
|
|
retry(instance_is_up)
|
2023-10-20 07:10:59 +03:00
|
|
|
|
|
|
|
machine.wait_for_unit("incus.service")
|
|
|
|
|
|
|
|
# no preseed should mean no service
|
|
|
|
machine.fail("systemctl status incus-preseed.service")
|
|
|
|
|
|
|
|
machine.succeed("incus admin init --minimal")
|
|
|
|
|
|
|
|
with subtest("Container image can be imported"):
|
|
|
|
machine.succeed("incus image import ${container-image-metadata}/*/*.tar.xz ${container-image-rootfs}/*/*.tar.xz --alias nixos")
|
|
|
|
|
|
|
|
with subtest("Container can be launched and managed"):
|
|
|
|
machine.succeed("incus launch nixos container")
|
|
|
|
with machine.nested("Waiting for instance to start and be usable"):
|
|
|
|
retry(instance_is_up)
|
|
|
|
machine.succeed("echo true | incus exec container /run/current-system/sw/bin/bash -")
|
|
|
|
|
2023-12-21 22:55:08 +03:00
|
|
|
with subtest("Container mounts lxcfs overlays"):
|
|
|
|
machine.succeed("incus exec container mount | grep 'lxcfs on /proc/cpuinfo type fuse.lxcfs'")
|
|
|
|
machine.succeed("incus exec container mount | grep 'lxcfs on /proc/meminfo type fuse.lxcfs'")
|
|
|
|
|
2023-10-20 07:10:59 +03:00
|
|
|
with subtest("Container CPU limits can be managed"):
|
2023-11-03 05:09:37 +03:00
|
|
|
set_container("limits.cpu 1")
|
2023-10-20 07:10:59 +03:00
|
|
|
cpuinfo = machine.succeed("incus exec container grep -- -c ^processor /proc/cpuinfo").strip()
|
|
|
|
assert cpuinfo == "1", f"Wrong number of CPUs reported from /proc/cpuinfo, want: 1, got: {cpuinfo}"
|
|
|
|
|
2023-11-03 05:09:37 +03:00
|
|
|
set_container("limits.cpu 2")
|
2023-10-20 07:10:59 +03:00
|
|
|
cpuinfo = machine.succeed("incus exec container grep -- -c ^processor /proc/cpuinfo").strip()
|
|
|
|
assert cpuinfo == "2", f"Wrong number of CPUs reported from /proc/cpuinfo, want: 2, got: {cpuinfo}"
|
|
|
|
|
|
|
|
with subtest("Container memory limits can be managed"):
|
2023-11-03 05:09:37 +03:00
|
|
|
set_container("limits.memory 64MB")
|
2023-10-20 07:10:59 +03:00
|
|
|
meminfo = machine.succeed("incus exec container grep -- MemTotal /proc/meminfo").strip()
|
|
|
|
meminfo_bytes = " ".join(meminfo.split(' ')[-2:])
|
|
|
|
assert meminfo_bytes == "62500 kB", f"Wrong amount of memory reported from /proc/meminfo, want: '62500 kB', got: '{meminfo_bytes}'"
|
|
|
|
|
2023-11-03 05:09:37 +03:00
|
|
|
set_container("limits.memory 128MB")
|
2023-10-20 07:10:59 +03:00
|
|
|
meminfo = machine.succeed("incus exec container grep -- MemTotal /proc/meminfo").strip()
|
|
|
|
meminfo_bytes = " ".join(meminfo.split(' ')[-2:])
|
2023-11-03 05:09:37 +03:00
|
|
|
assert meminfo_bytes == "125000 kB", f"Wrong amount of memory reported from /proc/meminfo, want: '125000 kB', got: '{meminfo_bytes}'"
|
2023-10-27 19:58:50 +03:00
|
|
|
|
|
|
|
with subtest("lxc-container generator configures plain container"):
|
|
|
|
machine.execute("incus delete --force container")
|
|
|
|
machine.succeed("incus launch nixos container")
|
|
|
|
with machine.nested("Waiting for instance to start and be usable"):
|
|
|
|
retry(instance_is_up)
|
|
|
|
|
|
|
|
machine.succeed("incus exec container test -- -e /run/systemd/system/service.d/zzz-lxc-service.conf")
|
|
|
|
|
|
|
|
with subtest("lxc-container generator configures nested container"):
|
|
|
|
machine.execute("incus delete --force container")
|
|
|
|
machine.succeed("incus launch nixos container --config security.nesting=true")
|
|
|
|
with machine.nested("Waiting for instance to start and be usable"):
|
|
|
|
retry(instance_is_up)
|
|
|
|
|
|
|
|
machine.fail("incus exec container test -- -e /run/systemd/system/service.d/zzz-lxc-service.conf")
|
|
|
|
target = machine.succeed("incus exec container readlink -- -f /run/systemd/system/systemd-binfmt.service").strip()
|
|
|
|
assert target == "/dev/null", "lxc generator did not correctly mask /run/systemd/system/systemd-binfmt.service"
|
|
|
|
|
|
|
|
with subtest("lxc-container generator configures privileged container"):
|
|
|
|
machine.execute("incus delete --force container")
|
|
|
|
machine.succeed("incus launch nixos container --config security.privileged=true")
|
|
|
|
with machine.nested("Waiting for instance to start and be usable"):
|
|
|
|
retry(instance_is_up)
|
|
|
|
# give generator an extra second to run
|
|
|
|
machine.sleep(1)
|
|
|
|
|
|
|
|
machine.succeed("incus exec container test -- -e /run/systemd/system/service.d/zzz-lxc-service.conf")
|
2023-10-20 07:10:59 +03:00
|
|
|
'';
|
|
|
|
})
|