nixpkgs/nixos/tests/uptime-kuma.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
407 B
Nix
Raw Normal View History

2022-09-23 05:04:23 +00:00
import ./make-test-python.nix ({ lib, ... }:
{
name = "uptime-kuma";
meta.maintainers = with lib.maintainers; [ julienmalka ];
2022-09-23 05:04:23 +00:00
nodes.machine =
{ pkgs, ... }:
{ services.uptime-kuma.enable = true; };
testScript = ''
machine.start()
machine.wait_for_unit("uptime-kuma.service")
machine.wait_for_open_port(3001)
machine.succeed("curl --fail http://localhost:3001/")
'';
})