nixpkgs/nixos/tests/ntfy-sh.nix

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

27 lines
586 B
Nix
Raw Normal View History

2022-09-01 12:36:19 +00:00
import ./make-test-python.nix {
2022-12-14 10:09:52 +00:00
name = "ntfy-sh";
2022-09-01 12:36:19 +00:00
nodes.machine = { ... }: {
services.ntfy-sh.enable = true;
services.ntfy-sh.settings.base-url = "http://localhost:2586";
2022-09-01 12:36:19 +00:00
};
testScript = ''
import json
msg = "Test notification"
machine.wait_for_unit("multi-user.target")
machine.wait_for_open_port(2586)
2023-01-15 14:48:48 +00:00
machine.succeed(f"curl -d '{msg}' localhost:2586/test")
2022-09-01 12:36:19 +00:00
notif = json.loads(machine.succeed("curl -s localhost:2586/test/json?poll=1"))
2022-09-01 12:36:19 +00:00
assert msg == notif["message"], "Wrong message"
machine.succeed("ntfy user list")
2022-09-01 12:36:19 +00:00
'';
}