summary refs log blame commit diff
path: root/nixos/tests/haka.nix
blob: 40548f34690f6b220a0f0f779d7f80cc7d96a477 (plain) (tree)























                                                
# 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 =
      { config, pkgs, ... }:
        {
          services.haka.enable = true;
        };
    };

  testScript = ''
    startAll;

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