summary refs log tree commit diff
diff options
context:
space:
mode:
authorMaciej Krüger <mkg20001@gmail.com>2022-02-23 15:16:23 +0100
committerMaciej Krüger <mkg20001@gmail.com>2022-02-26 14:27:30 +0100
commitae2f179c9b27f6d4c40e46a07b1d748ba53f3b33 (patch)
tree180b5caf602d9e7d7f4cbf8ae391b52508c92745
parent3cbd5a6deb68511189d19bfbf51b925b34830035 (diff)
downloadnixpkgs-ae2f179c9b27f6d4c40e46a07b1d748ba53f3b33.tar
nixpkgs-ae2f179c9b27f6d4c40e46a07b1d748ba53f3b33.tar.gz
nixpkgs-ae2f179c9b27f6d4c40e46a07b1d748ba53f3b33.tar.bz2
nixpkgs-ae2f179c9b27f6d4c40e46a07b1d748ba53f3b33.tar.lz
nixpkgs-ae2f179c9b27f6d4c40e46a07b1d748ba53f3b33.tar.xz
nixpkgs-ae2f179c9b27f6d4c40e46a07b1d748ba53f3b33.tar.zst
nixpkgs-ae2f179c9b27f6d4c40e46a07b1d748ba53f3b33.zip
tests/pgadmin4-standalone: add
-rw-r--r--nixos/tests/all-tests.nix1
-rw-r--r--nixos/tests/pgadmin4-standalone.nix43
-rw-r--r--pkgs/tools/admin/pgadmin/default.nix2
3 files changed, 45 insertions, 1 deletions
diff --git a/nixos/tests/all-tests.nix b/nixos/tests/all-tests.nix
index 85f0a001e66..da94fc6d042 100644
--- a/nixos/tests/all-tests.nix
+++ b/nixos/tests/all-tests.nix
@@ -394,6 +394,7 @@ in
   peerflix = handleTest ./peerflix.nix {};
   peertube = handleTestOn ["x86_64-linux"] ./web-apps/peertube.nix {};
   pgadmin4 = handleTest ./pgadmin4.nix {};
+  pgadmin4-standalone = handleTest ./pgadmin4-standalone.nix {};
   pgjwt = handleTest ./pgjwt.nix {};
   pgmanage = handleTest ./pgmanage.nix {};
   php = handleTest ./php {};
diff --git a/nixos/tests/pgadmin4-standalone.nix b/nixos/tests/pgadmin4-standalone.nix
new file mode 100644
index 00000000000..442570c5306
--- /dev/null
+++ b/nixos/tests/pgadmin4-standalone.nix
@@ -0,0 +1,43 @@
+import ./make-test-python.nix ({ pkgs, lib, ... }:
+  # This is seperate from pgadmin4 since we don't want both running at once
+
+  {
+    name = "pgadmin4-standalone";
+    meta.maintainers = with lib.maintainers; [ mkg20001 ];
+
+    nodes.machine = { pkgs, ... }: {
+      environment.systemPackages = with pkgs; [
+        curl
+      ];
+
+      services.postgresql = {
+        enable = true;
+
+        authentication = ''
+          host    all             all             localhost               trust
+        '';
+
+        ensureUsers = [
+          {
+            name = "postgres";
+            ensurePermissions = {
+              "DATABASE \"postgres\"" = "ALL PRIVILEGES";
+            };
+          }
+        ];
+      };
+
+      services.pgadmin = {
+        enable = true;
+        initialEmail = "bruh@localhost.de";
+        initialPasswordFile = pkgs.writeText "pw" "bruh2012!";
+      };
+    };
+
+    testScript = ''
+      machine.wait_for_unit("postgresql")
+      machine.wait_for_unit("pgadmin")
+
+      machine.wait_until_succeeds("curl -s localhost:5050")
+    '';
+  })
diff --git a/pkgs/tools/admin/pgadmin/default.nix b/pkgs/tools/admin/pgadmin/default.nix
index 3000a703b22..86c68aa9783 100644
--- a/pkgs/tools/admin/pgadmin/default.nix
+++ b/pkgs/tools/admin/pgadmin/default.nix
@@ -151,7 +151,7 @@ python3.pkgs.buildPythonApplication rec {
   ];
 
   passthru = {
-    tests = { inherit (nixosTests) pgadmin4; };
+    tests = { inherit (nixosTests) pgadmin4 pgadmin4-standalone; };
   };
 
   meta = with lib; {