2022-12-21 00:08:48 +00:00
|
|
|
import ./make-test-python.nix (
|
|
|
|
{ pkgs, ... }:
|
|
|
|
{
|
|
|
|
name = "gonic";
|
|
|
|
|
|
|
|
nodes.machine =
|
|
|
|
{ ... }:
|
|
|
|
{
|
2024-03-28 13:45:02 +00:00
|
|
|
systemd.tmpfiles.settings = {
|
|
|
|
"10-gonic" = {
|
|
|
|
"/tmp/music"."d" = { };
|
|
|
|
"/tmp/podcast"."d" = { };
|
|
|
|
"/tmp/playlists"."d" = { };
|
2024-12-10 19:26:33 +00:00
|
|
|
};
|
|
|
|
};
|
2022-12-21 00:08:48 +00:00
|
|
|
services.gonic = {
|
|
|
|
enable = true;
|
|
|
|
settings = {
|
2024-03-28 13:45:02 +00:00
|
|
|
music-path = [ "/tmp/music" ];
|
|
|
|
podcast-path = "/tmp/podcast";
|
|
|
|
playlists-path = "/tmp/playlists";
|
2024-12-10 19:26:33 +00:00
|
|
|
};
|
|
|
|
};
|
2024-03-28 13:45:02 +00:00
|
|
|
};
|
2022-12-21 00:08:48 +00:00
|
|
|
|
|
|
|
testScript = ''
|
|
|
|
machine.wait_for_unit("gonic")
|
|
|
|
machine.wait_for_open_port(4747)
|
|
|
|
'';
|
|
|
|
}
|
|
|
|
)
|