1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/nixos/tests/haka.nix

25 lines
457 B
Nix
Raw Normal View History

2016-01-22 18:44:35 -05:00
# This test runs haka and probes it with hakactl
2019-12-30 10:57:00 -05:00
import ./make-test-python.nix ({ pkgs, ...} : {
2016-01-22 18:44:35 -05:00
name = "haka";
meta = with pkgs.stdenv.lib.maintainers; {
maintainers = [ tvestelind ];
};
nodes = {
haka =
{ ... }:
2016-01-22 18:44:35 -05:00
{
services.haka.enable = true;
};
};
testScript = ''
2019-12-30 10:57:00 -05:00
start_all()
2016-01-22 18:44:35 -05:00
2019-12-30 10:57:00 -05:00
haka.wait_for_unit("haka.service")
haka.succeed("hakactl status")
haka.succeed("hakactl stop")
2016-01-22 18:44:35 -05:00
'';
})