summary refs log tree commit diff
path: root/nixos/tests/magnetico.nix
blob: bc7aef653ee521ff07d4b7d1c59c3e5a177bcbf8 (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
import ./make-test.nix ({ pkgs, ...} : {
  name = "magnetico";
  meta = with pkgs.stdenv.lib.maintainers; {
    maintainers = [ rnhmjoj ];
  };

  machine = { ... }: {
    imports = [ ../modules/profiles/minimal.nix ];

    networking.firewall.allowedTCPPorts = [ 9000 ];

    services.magnetico = {
      enable = true;
      crawler.port = 9000;
      web.credentials.user = "$2y$12$P88ZF6soFthiiAeXnz64aOWDsY3Dw7Yw8fZ6GtiqFNjknD70zDmNe";
    };
  };

  testScript =
    ''
      startAll;
      $machine->waitForUnit("magneticod");
      $machine->waitForUnit("magneticow");
      $machine->succeed("${pkgs.curl}/bin/curl -u user:password http://localhost:8080");
      $machine->succeed("${pkgs.curl}/bin/curl -u user:wrongpwd http://localhost:8080") =~ "Unauthorised." or die;
      $machine->shutdown();
    '';
})