summary refs log tree commit diff
path: root/nixos/tests/ntfy-sh.nix
blob: fb29a78134f80531ccc66b2b87d936f3c657da8b (plain) (blame)
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
import ./make-test-python.nix {
  name = "ntfy-sh";

  nodes.machine = { ... }: {
    services.ntfy-sh.enable = true;
  };

  testScript = ''
    import json

    msg = "Test notification"

    machine.wait_for_unit("multi-user.target")

    machine.wait_for_open_port(80)

    machine.succeed(f"curl -d '{msg}' localhost:80/test")

    notif = json.loads(machine.succeed("curl -s localhost:80/test/json?poll=1"))

    assert msg == notif["message"], "Wrong message"

    machine.succeed("ntfy user list")
  '';
}