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

27 lines
717 B
Nix
Raw Normal View History

2019-11-25 03:36:37 -05:00
import ./make-test-python.nix ({ lib, pkgs, ... }: {
2018-11-17 09:02:00 -05:00
name = "syncthing-relay";
meta.maintainers = with pkgs.lib.maintainers; [ delroth ];
2018-11-17 09:02:00 -05:00
machine = {
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 03:36:37 -05: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 18:27:51 -04:00
"curl -sSf http://localhost:12346/status | jq -r '.options.\"provided-by\"'"
2019-11-25 03:36:37 -05:00
)
assert "nixos-test" in out
2018-11-17 09:02:00 -05:00
'';
})