nixpkgs/nixos/tests/unifi.nix

31 lines
543 B
Nix
Raw Permalink Normal View History

{ lib, ... }:
2021-12-17 15:55:13 -08:00
{
name = "unifi";
meta.maintainers = with lib.maintainers; [
patryk27
zhaofengli
];
node.pkgsReadOnly = false;
nodes.machine = {
nixpkgs.config.allowUnfree = true;
services.unifi.enable = true;
};
testScript = ''
import json
start_all()
machine.wait_for_unit("unifi.service")
machine.wait_for_open_port(8880)
status = json.loads(machine.succeed("curl --silent --show-error --fail-with-body http://localhost:8880/status"))
assert status["meta"]["rc"] == "ok"
'';
2021-12-17 15:55:13 -08:00
}