nixpkgs/nixos/tests/unifi.nix

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

46 lines
876 B
Nix
Raw Normal View History

2021-12-17 15:55:13 -08:00
# Test UniFi controller
{
system ? builtins.currentSystem,
config ? {
allowUnfree = true;
},
pkgs ? import ../.. { inherit system config; },
}:
with import ../lib/testing-python.nix { inherit system pkgs; };
with pkgs.lib;
let
makeAppTest =
unifi:
makeTest {
name = "unifi-controller-${unifi.version}";
meta = with pkgs.lib.maintainers; {
maintainers = [
patryk27
zhaofengli
];
2021-12-17 15:55:13 -08:00
};
nodes.server = {
nixpkgs.config = config;
2021-12-17 15:55:13 -08:00
services.unifi = {
enable = true;
unifiPackage = unifi;
openFirewall = false;
};
2021-12-17 15:55:13 -08:00
};
testScript = ''
server.wait_for_unit("unifi.service")
server.wait_until_succeeds("curl -Lk https://localhost:8443 >&2", timeout=300)
'';
};
in
with pkgs;
{
2024-04-12 00:07:09 +01:00
unifi8 = makeAppTest unifi8;
2021-12-17 15:55:13 -08:00
}