nixpkgs/nixos/tests/syncthing-relay.nix

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

27 lines
715 B
Nix
Raw Normal View History

2019-11-25 08:36:37 +00:00
import ./make-test-python.nix ({ lib, pkgs, ... }: {
2018-11-17 14:02:00 +00:00
name = "syncthing-relay";
2024-04-27 09:54:22 +00:00
meta.maintainers = with pkgs.lib.maintainers; [ ];
2018-11-17 14:02:00 +00:00
2022-03-20 23:15:30 +00:00
nodes.machine = {
2018-11-17 14:02:00 +00:00
environment.systemPackages = [ pkgs.jq ];
services.syncthing.relay = {
enable = true;
providedBy = "nixos-test";
pools = []; # Don't connect to any pool while testing.
port = 12345;
statusPort = 12346;
};
};
testScript = ''
2019-11-25 08:36:37 +00:00
machine.wait_for_unit("syncthing-relay.service")
machine.wait_for_open_port(12345)
machine.wait_for_open_port(12346)
out = machine.succeed(
2020-09-15 22:27:51 +00:00
"curl -sSf http://localhost:12346/status | jq -r '.options.\"provided-by\"'"
2019-11-25 08:36:37 +00:00
)
assert "nixos-test" in out
2018-11-17 14:02:00 +00:00
'';
})