2021-10-01 17:03:32 +02:00
|
|
|
args@{ pkgs, nextcloudVersion ? 22, ... }:
|
|
|
|
|
|
|
|
(import ../make-test-python.nix ({ pkgs, ...}: let
|
2018-06-29 19:17:54 +02:00
|
|
|
adminpass = "hunter2";
|
|
|
|
adminuser = "custom-admin-username";
|
|
|
|
in {
|
|
|
|
name = "nextcloud-with-postgresql-and-redis";
|
2021-01-10 20:08:30 +01:00
|
|
|
meta = with pkgs.lib.maintainers; {
|
2018-06-29 19:17:54 +02:00
|
|
|
maintainers = [ eqyiel ];
|
|
|
|
};
|
|
|
|
|
|
|
|
nodes = {
|
|
|
|
# The only thing the client needs to do is download a file.
|
|
|
|
client = { ... }: {};
|
|
|
|
|
2022-12-15 22:22:00 +01:00
|
|
|
nextcloud = { config, pkgs, lib, ... }: {
|
2018-06-29 19:17:54 +02:00
|
|
|
networking.firewall.allowedTCPPorts = [ 80 ];
|
|
|
|
|
|
|
|
services.nextcloud = {
|
|
|
|
enable = true;
|
|
|
|
hostName = "nextcloud";
|
2021-10-01 17:03:32 +02:00
|
|
|
package = pkgs.${"nextcloud" + (toString nextcloudVersion)};
|
2018-06-29 19:17:54 +02:00
|
|
|
caching = {
|
|
|
|
apcu = false;
|
|
|
|
redis = true;
|
|
|
|
memcached = false;
|
|
|
|
};
|
|
|
|
config = {
|
|
|
|
dbtype = "pgsql";
|
|
|
|
dbname = "nextcloud";
|
|
|
|
dbuser = "nextcloud";
|
2019-10-13 14:32:14 +02:00
|
|
|
dbhost = "/run/postgresql";
|
2018-06-29 19:17:54 +02:00
|
|
|
inherit adminuser;
|
|
|
|
adminpassFile = toString (pkgs.writeText "admin-pass-file" ''
|
|
|
|
${adminpass}
|
|
|
|
'');
|
2022-12-15 22:22:00 +01:00
|
|
|
trustedProxies = [ "::1" ];
|
|
|
|
};
|
|
|
|
notify_push = {
|
|
|
|
enable = true;
|
|
|
|
logLevel = "debug";
|
|
|
|
};
|
|
|
|
extraAppsEnable = true;
|
|
|
|
extraApps = {
|
|
|
|
inherit (pkgs."nextcloud${lib.versions.major config.services.nextcloud.package.version}Packages".apps) notify_push;
|
2018-06-29 19:17:54 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2022-09-10 15:29:09 +02:00
|
|
|
services.redis.servers."nextcloud".enable = true;
|
|
|
|
services.redis.servers."nextcloud".port = 6379;
|
2018-06-29 19:17:54 +02:00
|
|
|
|
2019-08-13 23:52:01 +02:00
|
|
|
systemd.services.nextcloud-setup= {
|
2018-06-29 19:17:54 +02:00
|
|
|
requires = ["postgresql.service"];
|
|
|
|
after = [
|
|
|
|
"postgresql.service"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
|
|
|
services.postgresql = {
|
|
|
|
enable = true;
|
2019-06-28 17:54:11 +02:00
|
|
|
ensureDatabases = [ "nextcloud" ];
|
|
|
|
ensureUsers = [
|
|
|
|
{ name = "nextcloud";
|
|
|
|
ensurePermissions."DATABASE nextcloud" = "ALL PRIVILEGES";
|
|
|
|
}
|
|
|
|
];
|
2018-06-29 19:17:54 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
testScript = let
|
|
|
|
configureRedis = pkgs.writeScript "configure-redis" ''
|
2020-04-07 08:25:48 +02:00
|
|
|
#!${pkgs.runtimeShell}
|
2019-10-13 14:32:14 +02:00
|
|
|
nextcloud-occ config:system:set redis 'host' --value 'localhost' --type string
|
|
|
|
nextcloud-occ config:system:set redis 'port' --value 6379 --type integer
|
2018-06-29 19:17:54 +02:00
|
|
|
nextcloud-occ config:system:set memcache.local --value '\OC\Memcache\Redis' --type string
|
|
|
|
nextcloud-occ config:system:set memcache.locking --value '\OC\Memcache\Redis' --type string
|
|
|
|
'';
|
|
|
|
withRcloneEnv = pkgs.writeScript "with-rclone-env" ''
|
2020-04-07 08:25:48 +02:00
|
|
|
#!${pkgs.runtimeShell}
|
2018-06-29 19:17:54 +02:00
|
|
|
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" ''
|
2020-04-07 08:25:48 +02:00
|
|
|
#!${pkgs.runtimeShell}
|
2018-06-29 19:17:54 +02:00
|
|
|
echo 'hi' | ${pkgs.rclone}/bin/rclone rcat nextcloud:test-shared-file
|
|
|
|
'';
|
|
|
|
|
|
|
|
diffSharedFile = pkgs.writeScript "diff-shared-file" ''
|
2020-04-07 08:25:48 +02:00
|
|
|
#!${pkgs.runtimeShell}
|
2018-06-29 19:17:54 +02:00
|
|
|
diff <(echo 'hi') <(${pkgs.rclone}/bin/rclone cat nextcloud:test-shared-file)
|
|
|
|
'';
|
|
|
|
in ''
|
2019-11-27 10:50:26 +01:00
|
|
|
start_all()
|
|
|
|
nextcloud.wait_for_unit("multi-user.target")
|
|
|
|
nextcloud.succeed("${configureRedis}")
|
|
|
|
nextcloud.succeed("curl -sSf http://nextcloud/login")
|
|
|
|
nextcloud.succeed(
|
|
|
|
"${withRcloneEnv} ${copySharedFile}"
|
|
|
|
)
|
|
|
|
client.wait_for_unit("multi-user.target")
|
2022-12-15 22:22:00 +01:00
|
|
|
client.execute("${pkgs.nextcloud-notify_push.passthru.test_client}/bin/test_client http://nextcloud ${adminuser} ${adminpass} >&2 &")
|
2019-11-27 10:50:26 +01:00
|
|
|
client.succeed(
|
|
|
|
"${withRcloneEnv} ${diffSharedFile}"
|
|
|
|
)
|
2022-12-15 22:22:00 +01:00
|
|
|
nextcloud.wait_until_succeeds("journalctl -u nextcloud-notify_push | grep -q \"Sending ping to ${adminuser}\"")
|
2018-06-29 19:17:54 +02:00
|
|
|
'';
|
2021-10-01 17:03:32 +02:00
|
|
|
})) args
|