about summary refs log tree commit diff
path: root/nixpkgs/nixos/tests/haka.nix
blob: 6277ebb4933fdedfff8595de1048e6a0eb471433 (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
# This test runs haka and probes it with hakactl

import ./make-test.nix ({ pkgs, ...} : {
  name = "haka";
  meta = with pkgs.stdenv.lib.maintainers; {
    maintainers = [ tvestelind ];
  };

  nodes = {
    haka =
      { ... }:
        {
          services.haka.enable = true;
        };
    };

  testScript = ''
    startAll;

    $haka->waitForUnit("haka.service");
    $haka->succeed("hakactl status");
    $haka->succeed("hakactl stop");
  '';
})