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.stdenv.lib.maintainers; {
|
|
|
|
maintainers = [ tvestelind ];
|
|
|
|
};
|
|
|
|
|
|
|
|
nodes = {
|
|
|
|
haka =
|
2018-07-20 21:56:59 +01:00
|
|
|
{ ... }:
|
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
|
|
|
'';
|
|
|
|
})
|