mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
26 lines
631 B
Nix
26 lines
631 B
Nix
import ./make-test-python.nix (
|
|
{ pkgs, ... }:
|
|
let
|
|
port = "7745";
|
|
in
|
|
{
|
|
name = "homebox";
|
|
meta = with pkgs.lib.maintainers; {
|
|
maintainers = [ patrickdag ];
|
|
};
|
|
nodes.machine = {
|
|
services.homebox = {
|
|
enable = true;
|
|
settings.HBOX_WEB_PORT = port;
|
|
};
|
|
};
|
|
testScript = ''
|
|
machine.wait_for_unit("homebox.service")
|
|
machine.wait_for_open_port(${port})
|
|
|
|
machine.succeed("curl --fail -X GET 'http://localhost:${port}/'")
|
|
out = machine.succeed("curl --fail 'http://localhost:${port}/api/v1/status'")
|
|
assert '"health":true' in out
|
|
'';
|
|
}
|
|
)
|