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