summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorstuebinm <stuebinm@disroot.org>2021-03-30 20:09:29 +0200
committerstuebinm <stuebinm@disroot.org>2021-03-30 20:09:29 +0200
commitfb389cb0dbe94b08733d4c875e6c38ae2b25748d (patch)
tree2e24b8918de4126a8c196b9d7f312b0913d5d0c2 /nixos
parent4ca2f27a60e28504be679204e672756fa9bd9d82 (diff)
downloadnixpkgs-fb389cb0dbe94b08733d4c875e6c38ae2b25748d.tar
nixpkgs-fb389cb0dbe94b08733d4c875e6c38ae2b25748d.tar.gz
nixpkgs-fb389cb0dbe94b08733d4c875e6c38ae2b25748d.tar.bz2
nixpkgs-fb389cb0dbe94b08733d4c875e6c38ae2b25748d.tar.lz
nixpkgs-fb389cb0dbe94b08733d4c875e6c38ae2b25748d.tar.xz
nixpkgs-fb389cb0dbe94b08733d4c875e6c38ae2b25748d.tar.zst
nixpkgs-fb389cb0dbe94b08733d4c875e6c38ae2b25748d.zip
nixos/nextcloud: add test for declaratively defined redis
This is based on the test using redis and postgresql, but it does not
require any imperative configuration after startup; everything is defined
via Nix instead.
Diffstat (limited to 'nixos')
-rw-r--r--nixos/tests/nextcloud/with-declarative-redis.nix103
1 files changed, 103 insertions, 0 deletions
diff --git a/nixos/tests/nextcloud/with-declarative-redis.nix b/nixos/tests/nextcloud/with-declarative-redis.nix
new file mode 100644
index 00000000000..49df1f6c87c
--- /dev/null
+++ b/nixos/tests/nextcloud/with-declarative-redis.nix
@@ -0,0 +1,103 @@
+import ../make-test-python.nix ({ pkgs, ...}: let
+  adminpass = "hunter2";
+  adminuser = "custom-admin-username";
+in {
+  name = "nextcloud-with-declarative-redis";
+  meta = with pkgs.lib.maintainers; {
+    maintainers = [ eqyiel ];
+  };
+
+  nodes = {
+    # The only thing the client needs to do is download a file.
+    client = { ... }: {};
+
+    nextcloud = { config, pkgs, ... }: {
+      networking.firewall.allowedTCPPorts = [ 80 ];
+
+      services.nextcloud = {
+        enable = true;
+        hostName = "nextcloud";
+        caching = {
+          apcu = false;
+          redis = true;
+          memcached = false;
+        };
+        config = {
+          dbtype = "pgsql";
+          dbname = "nextcloud";
+          dbuser = "nextcloud";
+          dbhost = "/run/postgresql";
+          inherit adminuser;
+          adminpassFile = toString (pkgs.writeText "admin-pass-file" ''
+            ${adminpass}
+          '');
+        };
+
+        extraOptions.redis = {
+          host = "/run/redis/redis.sock";
+          port = 0;
+          dbindex = 0;
+          password = "secret";
+          timeout = 1.5;
+        };
+        extraOptions.memcache = {
+          local = "\OC\Memcache\Redis";
+          locking = "\OC\Memcache\Redis";
+        };
+      };
+
+      services.redis = {
+        enable = true;
+      };
+
+      systemd.services.nextcloud-setup= {
+        requires = ["postgresql.service"];
+        after = [
+          "postgresql.service"
+        ];
+      };
+
+      services.postgresql = {
+        enable = true;
+        ensureDatabases = [ "nextcloud" ];
+        ensureUsers = [
+          { name = "nextcloud";
+            ensurePermissions."DATABASE nextcloud" = "ALL PRIVILEGES";
+          }
+        ];
+      };
+    };
+  };
+
+  testScript = let
+    withRcloneEnv = pkgs.writeScript "with-rclone-env" ''
+      #!${pkgs.runtimeShell}
+      export RCLONE_CONFIG_NEXTCLOUD_TYPE=webdav
+      export RCLONE_CONFIG_NEXTCLOUD_URL="http://nextcloud/remote.php/webdav/"
+      export RCLONE_CONFIG_NEXTCLOUD_VENDOR="nextcloud"
+      export RCLONE_CONFIG_NEXTCLOUD_USER="${adminuser}"
+      export RCLONE_CONFIG_NEXTCLOUD_PASS="$(${pkgs.rclone}/bin/rclone obscure ${adminpass})"
+      "''${@}"
+    '';
+    copySharedFile = pkgs.writeScript "copy-shared-file" ''
+      #!${pkgs.runtimeShell}
+      echo 'hi' | ${pkgs.rclone}/bin/rclone rcat nextcloud:test-shared-file
+    '';
+
+    diffSharedFile = pkgs.writeScript "diff-shared-file" ''
+      #!${pkgs.runtimeShell}
+      diff <(echo 'hi') <(${pkgs.rclone}/bin/rclone cat nextcloud:test-shared-file)
+    '';
+  in ''
+    start_all()
+    nextcloud.wait_for_unit("multi-user.target")
+    nextcloud.succeed("curl -sSf http://nextcloud/login")
+    nextcloud.succeed(
+        "${withRcloneEnv} ${copySharedFile}"
+    )
+    client.wait_for_unit("multi-user.target")
+    client.succeed(
+        "${withRcloneEnv} ${diffSharedFile}"
+    )
+  '';
+})