nixos/tests/snapcast: minor polish to make the tests more expressive

master
Martin Weinelt 2021-06-03 20:29:02 +02:00
parent 845f41770e
commit 6d27068d7c
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759
1 changed files with 2 additions and 2 deletions

View File

@ -72,10 +72,10 @@ in {
)
with subtest("test a connection"):
client.execute("systemd-run snapclient -h server -p ${toString port}")
client.execute("systemd-run --unit=snapcast-client snapclient -h server -p ${toString port}")
server.wait_until_succeeds(
"journalctl -o cat -u snapserver.service | grep -q 'Hello from'"
)
client.wait_until_succeeds("journalctl -o cat -u run-\* | grep -q ${toString bufferSize}")
client.wait_until_succeeds("journalctl -o cat -u snapcast-client | grep -q 'buffer: ${toString bufferSize}'")
'';
})