1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/nixos/tests/ntfy-sh.nix

22 lines
439 B
Nix
Raw Normal View History

2022-09-01 08:36:19 -04:00
import ./make-test-python.nix {
2022-12-14 05:09:52 -05:00
name = "ntfy-sh";
2022-09-01 08:36:19 -04:00
nodes.machine = { ... }: {
services.ntfy-sh.enable = true;
};
testScript = ''
import json
msg = "Test notification"
machine.wait_for_unit("multi-user.target")
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"
'';
}