nixpkgs/nixos/tests/haka.nix

25 lines
450 B
Nix
Raw Normal View History

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