vuls: init at 0.27.0 (#348530)
[NixPkgs.git] / nixos / tests / nginx-mime.nix
blob157b9f13f14230a4829d161f98565de9d48e5d6e
1 import ./make-test-python.nix (
2   { lib, pkgs, ... }:
3   {
4     name = "nginx-mime";
5     meta.maintainers = with pkgs.lib.maintainers; [ izorkin ];
7     nodes = {
8       server =
9         { pkgs, ... }:
10         {
11           services.nginx = {
12             enable = true;
13             virtualHosts."localhost" = { };
14           };
15         };
16     };
18     testScript = ''
19       server.start()
20       server.wait_for_unit("nginx")
21       # Check optimal size of types_hash
22       server.fail("journalctl --unit nginx --grep 'could not build optimal types_hash'")
23       server.shutdown()
24     '';
25   }