about summary refs log tree commit diff
path: root/nixpkgs/nixos/tests/incus/socket-activated.nix
blob: 59caf1090fbd894f48c4c9ed91298df604418bf6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import ../make-test-python.nix ({ pkgs, lib, ... } :

{
  name = "incus-socket-activated";

  meta = {
    maintainers = lib.teams.lxc.members;
  };

  nodes.machine = { lib, ... }: {
    virtualisation = {
      incus.enable = true;
      incus.socketActivation = true;
    };
    networking.nftables.enable = true;
  };

  testScript = ''
    machine.wait_for_unit("incus.socket")

    # ensure service is not running by default
    machine.fail("systemctl is-active incus.service")
    machine.fail("systemctl is-active incus-preseed.service")

    # access the socket and ensure the service starts
    machine.succeed("incus list")
    machine.wait_for_unit("incus.service")
  '';
})