about summary refs log tree commit diff
path: root/nixpkgs/nixos/tests/gonic.nix
blob: 726d7da0970f74497409f8984ce45539844e7573 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import ./make-test-python.nix ({ pkgs, ... }: {
  name = "gonic";

  nodes.machine = { ... }: {
    services.gonic = {
      enable = true;
      settings = {
        music-path = [ "/tmp" ];
        podcast-path = "/tmp";
      };
    };
  };

  testScript = ''
    machine.wait_for_unit("gonic")
    machine.wait_for_open_port(4747)
  '';
})