blob: a15a622f78b8763ecd40e49c67b544d54214a66d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
{ lib, ... }:
{
name = "unifi";
meta.maintainers = with lib.maintainers; [
patryk27
zhaofengli
];
node.pkgsReadOnly = false;
nodes.machine = {
services.unifi.enable = true;
};
testScript = ''
import json
start_all()
machine.wait_for_unit("unifi.service")
machine.wait_for_open_port(8880)
machine.succeed("systemctl show unifi.service | grep -q 'ActiveState=active'")
machine.succeed("pgrep mongod")
status = json.loads(machine.succeed("curl --silent --show-error --fail-with-body http://localhost:8880/status"))
assert status["meta"]["rc"] == "ok"
machine.succeed("systemctl stop unifi.service")
machine.succeed("systemctl show unifi.service | grep -q 'ActiveState=inactive'")
machine.fail("pgrep mongod")
machine.succeed("systemctl start unifi.service")
machine.wait_for_unit("unifi.service")
machine.succeed("systemctl show unifi.service | grep -q 'ActiveState=active'")
machine.succeed("pgrep mongod")
'';
}
|