-
-
Notifications
You must be signed in to change notification settings - Fork 14.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Checks - if all configured ports are listened on - if all pipes for multiple streams get set up - if rpc interaction is possible
- Loading branch information
Showing
3 changed files
with
63 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
import ./make-test-python.nix ({ pkgs, ...} : | ||
|
||
let | ||
port = 10004; | ||
tcpPort = 10005; | ||
httpPort = 10080; | ||
in { | ||
name = "snapcast"; | ||
meta = with pkgs.stdenv.lib.maintainers; { | ||
maintainers = [ hexa ]; | ||
}; | ||
|
||
nodes = { | ||
server = { | ||
services.snapserver = { | ||
enable = true; | ||
port = port; | ||
tcp.port = tcpPort; | ||
http.port = httpPort; | ||
streams = { | ||
mpd = { | ||
type = "pipe"; | ||
location = "/run/snapserver/mpd"; | ||
}; | ||
bluetooth = { | ||
type = "pipe"; | ||
location = "/run/snapserver/bluetooth"; | ||
}; | ||
}; | ||
}; | ||
}; | ||
}; | ||
|
||
testScript = '' | ||
import json | ||
get_rpc_version = {"id": "1", "jsonrpc": "2.0", "method": "Server.GetRPCVersion"} | ||
start_all() | ||
server.wait_for_unit("snapserver.service") | ||
server.wait_until_succeeds("ss -ntl | grep -q ${toString port}") | ||
server.wait_until_succeeds("ss -ntl | grep -q ${toString tcpPort}") | ||
server.wait_until_succeeds("ss -ntl | grep -q ${toString httpPort}") | ||
with subtest("check that pipes are created"): | ||
server.succeed("test -p /run/snapserver/mpd") | ||
server.succeed("test -p /run/snapserver/bluetooth") | ||
with subtest("test tcp json-rpc"): | ||
server.succeed(f"echo '{json.dumps(get_rpc_version)}' | nc -w 1 localhost ${toString tcpPort}") | ||
with subtest("test http json-rpc"): | ||
server.succeed( | ||
"curl --fail http://localhost:${toString httpPort}/jsonrpc -d '{json.dumps(get_rpc_version)}'" | ||
) | ||
''; | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters