1 import ./make-test-python.nix ({ lib, pkgs, ... }: {
2 name = "syncthing-relay";
3 meta.maintainers = with pkgs.stdenv.lib.maintainers; [ delroth ];
6 environment.systemPackages = [ pkgs.jq ];
7 services.syncthing.relay = {
9 providedBy = "nixos-test";
10 pools = []; # Don't connect to any pool while testing.
17 machine.wait_for_unit("syncthing-relay.service")
18 machine.wait_for_open_port(12345)
19 machine.wait_for_open_port(12346)
21 out = machine.succeed(
22 "curl -sS http://localhost:12346/status | jq -r '.options.\"provided-by\"'"
24 assert "nixos-test" in out