about summary refs log tree commit diff
path: root/nixpkgs/nixos/tests/audiobookshelf.nix
blob: 64bd415160ee0b92c13b300c23261f709c482efa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import ./make-test-python.nix ({ lib, ... }:

with lib;

{
  name = "audiobookshelf";
  meta.maintainers = with maintainers; [ wietsedv ];

  nodes.machine =
    { pkgs, ... }:
    {
      services.audiobookshelf = {
        enable = true;
        port = 1234;
      };
    };

  testScript = ''
    machine.wait_for_unit("audiobookshelf.service")
    machine.wait_for_open_port(1234)
    machine.succeed("curl --fail http://localhost:1234/")
  '';
})