about summary refs log tree commit diff
path: root/nixos/tests/nginx-mime.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/tests/nginx-mime.nix')
-rw-r--r--nixos/tests/nginx-mime.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/nixos/tests/nginx-mime.nix b/nixos/tests/nginx-mime.nix
new file mode 100644
index 000000000000..157b9f13f142
--- /dev/null
+++ b/nixos/tests/nginx-mime.nix
@@ -0,0 +1,26 @@
+import ./make-test-python.nix (
+  { lib, pkgs, ... }:
+  {
+    name = "nginx-mime";
+    meta.maintainers = with pkgs.lib.maintainers; [ izorkin ];
+
+    nodes = {
+      server =
+        { pkgs, ... }:
+        {
+          services.nginx = {
+            enable = true;
+            virtualHosts."localhost" = { };
+          };
+        };
+    };
+
+    testScript = ''
+      server.start()
+      server.wait_for_unit("nginx")
+      # Check optimal size of types_hash
+      server.fail("journalctl --unit nginx --grep 'could not build optimal types_hash'")
+      server.shutdown()
+    '';
+  }
+)