vuls: init at 0.27.0 (#348530)
[NixPkgs.git] / nixos / tests / nexus.nix
blob87bb4d2eb58abd2cdaf2687e1b11f2a369f727f0
1 # verifies:
2 #   1. nexus service starts on server
3 #   2. nexus service can startup on server (creating database and all other initial stuff)
4 #   3. the web application is reachable via HTTP
6 import ./make-test-python.nix ({ pkgs, ...} : {
7   name = "nexus";
8   meta = with pkgs.lib.maintainers; {
9     maintainers = [ ironpinguin ];
10   };
12   nodes = {
14     server =
15       { ... }:
16       { virtualisation.memorySize = 2047; # qemu-system-i386 has a 2047M limit
17         virtualisation.diskSize = 8192;
19         services.nexus.enable = true;
20       };
22   };
24   testScript = ''
25     start_all()
27     server.wait_for_unit("nexus")
28     server.wait_for_open_port(8081)
30     server.succeed("curl -f 127.0.0.1:8081")
31   '';