nixpkgs/nixos/tests/gonic.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
670 B
Nix
Raw Normal View History

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