nixpkgs/nixos/tests/unifi.nix
Ilan Joselevich 65506ebf0f
nixos/unifi: refactor test and package
- use autoPatchElf
- correct supported platforms
- use finalAttrs and stdenvNoCC
- use runTest
- attest the status of the service
2025-04-23 00:56:34 +03:00

30 lines
543 B
Nix

{ lib, ... }:
{
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"
'';
}