python.pkgs.pyqt5: 5.14.2 -> 5.15.0
[NixPkgs.git] / nixos / tests / magnetico.nix
blob6770d32358e833e6db5ebfd40e6f55d0e55d80cc
1 import ./make-test-python.nix ({ pkgs, ...} :
3 let
4   port = 8081;
5 in
7   name = "magnetico";
8   meta = with pkgs.stdenv.lib.maintainers; {
9     maintainers = [ rnhmjoj ];
10   };
12   machine = { ... }: {
13     imports = [ ../modules/profiles/minimal.nix ];
15     networking.firewall.allowedTCPPorts = [ 9000 ];
17     services.magnetico = {
18       enable = true;
19       crawler.port = 9000;
20       web.port = port;
21       web.credentials.user = "$2y$12$P88ZF6soFthiiAeXnz64aOWDsY3Dw7Yw8fZ6GtiqFNjknD70zDmNe";
22     };
23   };
25   testScript =
26     ''
27       start_all()
28       machine.wait_for_unit("magneticod")
29       machine.wait_for_unit("magneticow")
30       machine.succeed(
31           "${pkgs.curl}/bin/curl "
32           + "-u user:password http://localhost:${toString port}"
33       )
34       assert "Unauthorised." in machine.succeed(
35           "${pkgs.curl}/bin/curl "
36           + "-u user:wrongpwd http://localhost:${toString port}"
37       )
38       machine.shutdown()
39     '';