librepcb: 1.1.0 -> 1.2.0
[NixPkgs.git] / nixos / tests / nextcloud / with-postgresql-and-redis.nix
blob24c17f70932d3683e6426f55acaba49e0054e7e6
1 { name, pkgs, testBase, system, ... }:
3 with import ../../lib/testing-python.nix { inherit system pkgs; };
4 runTest ({ config, ... }: {
5   inherit name;
6   meta = with pkgs.lib.maintainers; {
7     maintainers = [ eqyiel ma27 ];
8   };
10   imports = [ testBase ];
12   nodes = {
13     nextcloud = { config, pkgs, lib, ... }: {
14       services.nextcloud = {
15         caching = {
16           apcu = false;
17           redis = true;
18           memcached = false;
19         };
20         config.dbtype = "pgsql";
21         notify_push = {
22           enable = true;
23           logLevel = "debug";
24         };
25         extraAppsEnable = true;
26         extraApps = with config.services.nextcloud.package.packages.apps; {
27           inherit notify_push notes;
28         };
29         settings.trusted_proxies = [ "::1" ];
30       };
32       services.redis.servers."nextcloud".enable = true;
33       services.redis.servers."nextcloud".port = 6379;
34     };
35   };
37   test-helpers.init = let
38     configureRedis = pkgs.writeScript "configure-redis" ''
39       nextcloud-occ config:system:set redis 'host' --value 'localhost' --type string
40       nextcloud-occ config:system:set redis 'port' --value 6379 --type integer
41       nextcloud-occ config:system:set memcache.local --value '\OC\Memcache\Redis' --type string
42       nextcloud-occ config:system:set memcache.locking --value '\OC\Memcache\Redis' --type string
43     '';
44   in ''
45     nextcloud.succeed("${configureRedis}")
46   '';
48   test-helpers.extraTests = ''
49     with subtest("notify-push"):
50         client.execute("${pkgs.lib.getExe pkgs.nextcloud-notify_push.passthru.test_client} http://nextcloud ${config.adminuser} ${config.adminpass} >&2 &")
51         nextcloud.wait_until_succeeds("journalctl -u nextcloud-notify_push | grep -q \"Sending ping to ${config.adminuser}\"")
53     with subtest("Redis is used for caching"):
54         # redis cache should not be empty
55         nextcloud.fail('test "[]" = "$(redis-cli --json KEYS "*")"')
57     with subtest("No code is returned when requesting PHP files (regression test)"):
58         nextcloud.fail("curl -f http://nextcloud/nix-apps/notes/lib/AppInfo/Application.php")
59   '';