mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
25 lines
469 B
Nix
25 lines
469 B
Nix
|
# 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");
|
||
|
'';
|
||
|
})
|