haka: very basic testing
This commit is contained in:
parent
11d475af29
commit
198c03bffe
24
nixos/tests/haka.nix
Normal file
24
nixos/tests/haka.nix
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
# 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");
|
||||||
|
'';
|
||||||
|
})
|
Loading…
x
Reference in New Issue
Block a user