2023-08-10 20:07:42 +02:00
|
|
|
import ../make-test-python.nix ({ pkgs, lib, ... } :
|
2020-06-08 21:33:21 +02:00
|
|
|
|
|
|
|
let
|
2023-08-25 05:00:42 +02:00
|
|
|
releases = import ../../release.nix {
|
2022-05-03 12:24:13 +02:00
|
|
|
configuration = {
|
|
|
|
# Building documentation makes the test unnecessarily take a longer time:
|
|
|
|
documentation.enable = lib.mkForce false;
|
2020-06-08 21:33:21 +02:00
|
|
|
|
2022-05-03 12:24:13 +02:00
|
|
|
# Our tests require `grep` & friends:
|
|
|
|
environment.systemPackages = with pkgs; [ busybox ];
|
2022-04-26 12:12:01 +02:00
|
|
|
};
|
2022-05-03 12:24:13 +02:00
|
|
|
};
|
2020-06-08 21:33:21 +02:00
|
|
|
|
2023-08-25 05:00:42 +02:00
|
|
|
lxd-image-metadata = releases.lxdContainerMeta.${pkgs.stdenv.hostPlatform.system};
|
|
|
|
lxd-image-rootfs = releases.lxdContainerImage.${pkgs.stdenv.hostPlatform.system};
|
2023-10-12 16:52:05 +02:00
|
|
|
lxd-image-rootfs-squashfs = releases.lxdContainerImageSquashfs.${pkgs.stdenv.hostPlatform.system};
|
2020-09-09 17:25:27 +02:00
|
|
|
|
2020-06-08 21:33:21 +02:00
|
|
|
in {
|
2023-08-25 05:00:42 +02:00
|
|
|
name = "lxd-container";
|
2020-09-09 17:25:27 +02:00
|
|
|
|
2023-12-02 15:38:44 +01:00
|
|
|
meta = {
|
|
|
|
maintainers = lib.teams.lxc.members;
|
2020-06-08 21:33:21 +02:00
|
|
|
};
|
|
|
|
|
2022-03-21 00:15:30 +01:00
|
|
|
nodes.machine = { lib, ... }: {
|
2020-06-08 21:33:21 +02:00
|
|
|
virtualisation = {
|
2023-10-12 16:52:05 +02:00
|
|
|
diskSize = 6144;
|
2022-05-03 12:24:13 +02:00
|
|
|
|
2020-06-08 21:33:21 +02:00
|
|
|
# Since we're testing `limits.cpu`, we've gotta have a known number of
|
2020-09-09 17:25:27 +02:00
|
|
|
# cores to lean on
|
2020-06-08 21:33:21 +02:00
|
|
|
cores = 2;
|
|
|
|
|
|
|
|
# Ditto, for `limits.memory`
|
|
|
|
memorySize = 512;
|
|
|
|
|
|
|
|
lxc.lxcfs.enable = true;
|
|
|
|
lxd.enable = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
testScript = ''
|
2023-08-10 20:07:42 +02:00
|
|
|
def instance_is_up(_) -> bool:
|
|
|
|
status, _ = machine.execute("lxc exec container --disable-stdin --force-interactive /run/current-system/sw/bin/true")
|
|
|
|
return status == 0
|
|
|
|
|
2020-06-08 21:33:21 +02:00
|
|
|
machine.wait_for_unit("sockets.target")
|
|
|
|
machine.wait_for_unit("lxd.service")
|
2020-09-09 19:46:21 +02:00
|
|
|
machine.wait_for_file("/var/lib/lxd/unix.socket")
|
2020-06-08 21:33:21 +02:00
|
|
|
|
2023-08-10 20:07:42 +02:00
|
|
|
# Wait for lxd to settle
|
|
|
|
machine.succeed("lxd waitready")
|
2020-06-08 21:33:21 +02:00
|
|
|
|
2023-09-04 17:58:53 +02:00
|
|
|
# no preseed should mean no service
|
|
|
|
machine.fail("systemctl status lxd-preseed.service")
|
|
|
|
|
2023-08-10 20:07:42 +02:00
|
|
|
machine.succeed("lxd init --minimal")
|
2020-06-08 21:33:21 +02:00
|
|
|
|
|
|
|
machine.succeed(
|
2022-05-03 12:24:13 +02:00
|
|
|
"lxc image import ${lxd-image-metadata}/*/*.tar.xz ${lxd-image-rootfs}/*/*.tar.xz --alias nixos"
|
2020-06-08 21:33:21 +02:00
|
|
|
)
|
|
|
|
|
2022-05-03 12:24:13 +02:00
|
|
|
with subtest("Container can be managed"):
|
|
|
|
machine.succeed("lxc launch nixos container")
|
2023-08-10 20:07:42 +02:00
|
|
|
with machine.nested("Waiting for instance to start and be usable"):
|
|
|
|
retry(instance_is_up)
|
2022-05-03 12:24:13 +02:00
|
|
|
machine.succeed("echo true | lxc exec container /run/current-system/sw/bin/bash -")
|
2023-10-12 16:52:05 +02:00
|
|
|
machine.succeed("lxc delete -f container")
|
|
|
|
|
|
|
|
with subtest("Squashfs image is functional"):
|
|
|
|
machine.succeed(
|
|
|
|
"lxc image import ${lxd-image-metadata}/*/*.tar.xz ${lxd-image-rootfs-squashfs} --alias nixos-squashfs"
|
|
|
|
)
|
|
|
|
machine.succeed("lxc launch nixos-squashfs container")
|
|
|
|
with machine.nested("Waiting for instance to start and be usable"):
|
|
|
|
retry(instance_is_up)
|
|
|
|
machine.succeed("echo true | lxc exec container /run/current-system/sw/bin/bash -")
|
2022-05-03 12:24:13 +02:00
|
|
|
machine.succeed("lxc delete -f container")
|
2020-06-08 21:33:21 +02:00
|
|
|
|
2022-05-03 12:24:13 +02:00
|
|
|
with subtest("Container is mounted with lxcfs inside"):
|
|
|
|
machine.succeed("lxc launch nixos container")
|
2023-08-10 20:07:42 +02:00
|
|
|
with machine.nested("Waiting for instance to start and be usable"):
|
|
|
|
retry(instance_is_up)
|
2020-06-08 21:33:21 +02:00
|
|
|
|
|
|
|
## ---------- ##
|
|
|
|
## limits.cpu ##
|
|
|
|
|
2022-05-03 12:24:13 +02:00
|
|
|
machine.succeed("lxc config set container limits.cpu 1")
|
|
|
|
machine.succeed("lxc restart container")
|
2023-08-10 20:07:42 +02:00
|
|
|
with machine.nested("Waiting for instance to start and be usable"):
|
|
|
|
retry(instance_is_up)
|
2020-06-08 21:33:21 +02:00
|
|
|
|
|
|
|
assert (
|
|
|
|
"1"
|
2022-05-03 12:24:13 +02:00
|
|
|
== machine.succeed("lxc exec container grep -- -c ^processor /proc/cpuinfo").strip()
|
2020-06-08 21:33:21 +02:00
|
|
|
)
|
|
|
|
|
2022-05-03 12:24:13 +02:00
|
|
|
machine.succeed("lxc config set container limits.cpu 2")
|
|
|
|
machine.succeed("lxc restart container")
|
2023-08-10 20:07:42 +02:00
|
|
|
with machine.nested("Waiting for instance to start and be usable"):
|
|
|
|
retry(instance_is_up)
|
2020-06-08 21:33:21 +02:00
|
|
|
|
|
|
|
assert (
|
|
|
|
"2"
|
2022-05-03 12:24:13 +02:00
|
|
|
== machine.succeed("lxc exec container grep -- -c ^processor /proc/cpuinfo").strip()
|
2020-06-08 21:33:21 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
## ------------- ##
|
|
|
|
## limits.memory ##
|
|
|
|
|
2022-05-03 12:24:13 +02:00
|
|
|
machine.succeed("lxc config set container limits.memory 64MB")
|
|
|
|
machine.succeed("lxc restart container")
|
2023-08-10 20:07:42 +02:00
|
|
|
with machine.nested("Waiting for instance to start and be usable"):
|
|
|
|
retry(instance_is_up)
|
2020-06-08 21:33:21 +02:00
|
|
|
|
|
|
|
assert (
|
|
|
|
"MemTotal: 62500 kB"
|
2022-05-03 12:24:13 +02:00
|
|
|
== machine.succeed("lxc exec container grep -- MemTotal /proc/meminfo").strip()
|
2020-06-08 21:33:21 +02:00
|
|
|
)
|
|
|
|
|
2022-05-03 12:24:13 +02:00
|
|
|
machine.succeed("lxc config set container limits.memory 128MB")
|
|
|
|
machine.succeed("lxc restart container")
|
2023-08-10 20:07:42 +02:00
|
|
|
with machine.nested("Waiting for instance to start and be usable"):
|
|
|
|
retry(instance_is_up)
|
2020-06-08 21:33:21 +02:00
|
|
|
|
|
|
|
assert (
|
|
|
|
"MemTotal: 125000 kB"
|
2022-05-03 12:24:13 +02:00
|
|
|
== machine.succeed("lxc exec container grep -- MemTotal /proc/meminfo").strip()
|
2020-06-08 21:33:21 +02:00
|
|
|
)
|
|
|
|
|
2022-05-03 12:24:13 +02:00
|
|
|
machine.succeed("lxc delete -f container")
|
2020-06-08 21:33:21 +02:00
|
|
|
'';
|
|
|
|
})
|