parinfer-rust: useFetchCargoVendor
[NixPkgs.git] / nixos / tests / lxd / container.nix
blobd5506194cfa49dd3eaa95e56b445606ed0775657
1 import ../make-test-python.nix (
2   { pkgs, lib, ... }:
4   let
5     releases = import ../../release.nix {
6       configuration = {
7         # Building documentation makes the test unnecessarily take a longer time:
8         documentation.enable = lib.mkForce false;
10         # Our tests require `grep` & friends:
11         environment.systemPackages = with pkgs; [ busybox ];
12       };
13     };
15     lxd-image-metadata = releases.lxdContainerMeta.${pkgs.stdenv.hostPlatform.system};
16     lxd-image-rootfs = releases.lxdContainerImage.${pkgs.stdenv.hostPlatform.system};
17     lxd-image-rootfs-squashfs = releases.lxdContainerImageSquashfs.${pkgs.stdenv.hostPlatform.system};
19   in
20   {
21     name = "lxd-container";
23     nodes.machine =
24       { lib, ... }:
25       {
26         virtualisation = {
27           diskSize = 6144;
29           # Since we're testing `limits.cpu`, we've gotta have a known number of
30           # cores to lean on
31           cores = 2;
33           # Ditto, for `limits.memory`
34           memorySize = 512;
36           lxc.lxcfs.enable = true;
37           lxd.enable = true;
38         };
39       };
41     testScript = ''
42       def instance_is_up(_) -> bool:
43         status, _ = machine.execute("lxc exec container --disable-stdin --force-interactive /run/current-system/sw/bin/true")
44         return status == 0
46       machine.wait_for_unit("sockets.target")
47       machine.wait_for_unit("lxd.service")
48       machine.wait_for_file("/var/lib/lxd/unix.socket")
50       # Wait for lxd to settle
51       machine.succeed("lxd waitready")
53       # no preseed should mean no service
54       machine.fail("systemctl status lxd-preseed.service")
56       machine.succeed("lxd init --minimal")
58       machine.succeed(
59           "lxc image import ${lxd-image-metadata}/*/*.tar.xz ${lxd-image-rootfs}/*/*.tar.xz --alias nixos"
60       )
62       with subtest("Container can be managed"):
63           machine.succeed("lxc launch nixos container")
64           with machine.nested("Waiting for instance to start and be usable"):
65             retry(instance_is_up)
66           machine.succeed("echo true | lxc exec container /run/current-system/sw/bin/bash -")
67           machine.succeed("lxc delete -f container")
69       with subtest("Squashfs image is functional"):
70           machine.succeed(
71               "lxc image import ${lxd-image-metadata}/*/*.tar.xz ${lxd-image-rootfs-squashfs}/nixos-lxc-image-${pkgs.stdenv.hostPlatform.system}.squashfs --alias nixos-squashfs"
72           )
73           machine.succeed("lxc launch nixos-squashfs container")
74           with machine.nested("Waiting for instance to start and be usable"):
75             retry(instance_is_up)
76           machine.succeed("echo true | lxc exec container /run/current-system/sw/bin/bash -")
77           machine.succeed("lxc delete -f container")
79       with subtest("Container is mounted with lxcfs inside"):
80           machine.succeed("lxc launch nixos container")
81           with machine.nested("Waiting for instance to start and be usable"):
82               retry(instance_is_up)
84           ## ---------- ##
85           ## limits.cpu ##
87           machine.succeed("lxc config set container limits.cpu 1")
88           machine.succeed("lxc restart container")
89           with machine.nested("Waiting for instance to start and be usable"):
90               retry(instance_is_up)
92           assert (
93               "1"
94               == machine.succeed("lxc exec container grep -- -c ^processor /proc/cpuinfo").strip()
95           )
97           machine.succeed("lxc config set container limits.cpu 2")
98           machine.succeed("lxc restart container")
99           with machine.nested("Waiting for instance to start and be usable"):
100               retry(instance_is_up)
102           assert (
103               "2"
104               == machine.succeed("lxc exec container grep -- -c ^processor /proc/cpuinfo").strip()
105           )
107           ## ------------- ##
108           ## limits.memory ##
110           machine.succeed("lxc config set container limits.memory 64MB")
111           machine.succeed("lxc restart container")
112           with machine.nested("Waiting for instance to start and be usable"):
113               retry(instance_is_up)
115           assert (
116               "MemTotal:          62500 kB"
117               == machine.succeed("lxc exec container grep -- MemTotal /proc/meminfo").strip()
118           )
120           machine.succeed("lxc config set container limits.memory 128MB")
121           machine.succeed("lxc restart container")
122           with machine.nested("Waiting for instance to start and be usable"):
123               retry(instance_is_up)
125           assert (
126               "MemTotal:         125000 kB"
127               == machine.succeed("lxc exec container grep -- MemTotal /proc/meminfo").strip()
128           )
130           machine.succeed("lxc delete -f container")
131     '';
132   }