about summary refs log tree commit diff
path: root/nixpkgs/nixos/tests/suwayomi-server.nix
blob: 36072028380b8a76466fd003014b88504c87a445 (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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{ system ? builtins.currentSystem
, pkgs
, lib ? pkgs.lib
}:
let
  inherit (import ../lib/testing-python.nix { inherit system pkgs; }) makeTest;
  inherit (lib) recursiveUpdate;

  baseTestConfig = {
    meta.maintainers = with lib.maintainers; [ ratcornu ];
    nodes.machine = { pkgs, ... }: {
      services.suwayomi-server = {
        enable = true;
        settings.server.port = 1234;
      };
    };
    testScript = ''
      machine.wait_for_unit("suwayomi-server.service")
      machine.wait_for_open_port(1234)
      machine.succeed("curl --fail http://localhost:1234/")
    '';
  };
in

{
  without-auth = makeTest (recursiveUpdate baseTestConfig {
    name = "suwayomi-server-without-auth";
  });

  with-auth = makeTest (recursiveUpdate baseTestConfig {
    name = "suwayomi-server-with-auth";

    nodes.machine = { pkgs, ... }: {
      services.suwayomi-server = {
        enable = true;

        settings.server = {
          port = 1234;
          basicAuthEnabled = true;
          basicAuthUsername = "alice";
          basicAuthPasswordFile = pkgs.writeText "snakeoil-pass.txt" "pass";
        };
      };
    };
  });
}