about summary refs log tree commit diff
path: root/nixos/tests/incus/socket-activated.nix
blob: e48831cd3cb309c98c48dc14bc394ea8eec75af8 (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
import ../make-test-python.nix ({ pkgs, lib, ... } :

{
  name = "incus-socket-activated";

  meta.maintainers = with lib.maintainers; [ adamcstephens ];

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

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

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

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