1
0
Fork 0
selfhostblocks/test/vm/nextcloud.nix

306 lines
8.4 KiB
Nix
Raw Normal View History

2023-12-30 18:51:55 +01:00
{ pkgs, lib, ... }:
let
2024-03-20 06:50:41 +01:00
pkgs' = pkgs;
2023-12-30 18:51:55 +01:00
adminUser = "root";
adminPass = "rootpw";
2024-06-07 06:08:30 +02:00
subdomain = "n";
domain = "example.com";
fqdn = "${subdomain}.${domain}";
2024-03-04 08:01:05 +01:00
commonTestScript = { nodes, ... }:
let
hasSSL = !(isNull nodes.server.shb.nextcloud.ssl);
2024-06-07 06:08:30 +02:00
proto_fqdn = if hasSSL then "https://${fqdn}" else "http://${fqdn}";
2024-03-04 08:01:05 +01:00
in
''
import json
import os
import pathlib
import time
2023-12-30 18:51:55 +01:00
start_all()
server.wait_for_unit("phpfpm-nextcloud.service")
server.wait_for_unit("nginx.service")
2024-03-04 08:01:05 +01:00
server.wait_for_open_unix_socket("${nodes.server.services.phpfpm.pools.nextcloud.socket}")
if ${if hasSSL then "True" else "False"}:
server.copy_from_vm("/etc/ssl/certs/ca-certificates.crt")
client.succeed("rm -r /etc/ssl/certs")
client.copy_from_host(str(pathlib.Path(os.environ.get("out", os.getcwd())) / "ca-certificates.crt"), "/etc/ssl/certs/ca-certificates.crt")
2023-12-30 18:51:55 +01:00
def find_in_logs(unit, text):
return server.systemctl("status {}".format(unit))[1].find(text) != -1
2024-03-04 08:01:05 +01:00
def curl(target, format, endpoint, succeed=True):
return json.loads(target.succeed(
"curl --fail-with-body --silent --show-error --output /dev/null --location"
2024-06-07 06:08:30 +02:00
+ " --connect-to ${fqdn}:443:server:443"
+ " --connect-to ${fqdn}:80:server:80"
2024-03-04 08:01:05 +01:00
+ f" --write-out '{format}'"
+ " " + endpoint
))
with subtest("access"):
2024-06-07 06:08:30 +02:00
response = curl(client, """{"code":%{response_code}}""", "${proto_fqdn}")
2024-03-04 08:01:05 +01:00
if response['code'] != 200:
raise Exception(f"Code is {response['code']}")
2023-12-30 18:51:55 +01:00
with subtest("cron job succeeds"):
# This calls blocks until the service is done.
server.systemctl("start nextcloud-cron.service")
# If the service failed, then we're not happy.
status = "active"
while status == "active":
status = server.get_unit_info("nextcloud-cron")["ActiveState"]
time.sleep(5)
if status != "inactive":
raise Exception("Cron job did not finish correctly")
2023-12-30 18:51:55 +01:00
if not find_in_logs("nextcloud-cron", "nextcloud-cron.service: Deactivated successfully."):
raise Exception("Nextcloud cron job did not finish successfully.")
with subtest("fails with incorrect authentication"):
client.fail(
2024-03-04 08:01:05 +01:00
"curl -f -s --location -X PROPFIND"
2023-12-30 18:51:55 +01:00
+ """ -H "Depth: 1" """
+ """ -u ${adminUser}:other """
2024-06-07 06:08:30 +02:00
+ " --connect-to ${fqdn}:443:server:443"
+ " --connect-to ${fqdn}:80:server:80"
+ " ${proto_fqdn}/remote.php/dav/files/${adminUser}/"
2024-03-04 08:01:05 +01:00
)
client.fail(
"curl -f -s --location -X PROPFIND"
+ """ -H "Depth: 1" """
+ """ -u root:rootpw """
2024-06-07 06:08:30 +02:00
+ " --connect-to ${fqdn}:443:server:443"
+ " --connect-to ${fqdn}:80:server:80"
+ " ${proto_fqdn}/remote.php/dav/files/other/"
2023-12-30 18:51:55 +01:00
)
with subtest("fails with incorrect path"):
client.fail(
2024-03-04 08:01:05 +01:00
"curl -f -s --location -X PROPFIND"
2023-12-30 18:51:55 +01:00
+ """ -H "Depth: 1" """
+ """ -u ${adminUser}:${adminPass} """
2024-06-07 06:08:30 +02:00
+ " --connect-to ${fqdn}:443:server:443"
+ " --connect-to ${fqdn}:80:server:80"
+ " ${proto_fqdn}/remote.php/dav/files/other/"
2023-12-30 18:51:55 +01:00
)
with subtest("can access webdav"):
client.succeed(
2024-03-04 08:01:05 +01:00
"curl -f -s --location -X PROPFIND"
2023-12-30 18:51:55 +01:00
+ """ -H "Depth: 1" """
+ """ -u ${adminUser}:${adminPass} """
2024-06-07 06:08:30 +02:00
+ " --connect-to ${fqdn}:443:server:443"
+ " --connect-to ${fqdn}:80:server:80"
+ " ${proto_fqdn}/remote.php/dav/files/${adminUser}/"
2023-12-30 18:51:55 +01:00
)
with subtest("can create and retrieve file"):
client.fail(
2024-03-04 08:01:05 +01:00
"curl -f -s --location -X GET"
2023-12-30 18:51:55 +01:00
+ """ -H "Depth: 1" """
+ """ -u ${adminUser}:${adminPass} """
2024-06-07 06:08:30 +02:00
+ " --connect-to ${fqdn}:443:server:443"
+ " --connect-to ${fqdn}:80:server:80"
2023-12-30 18:51:55 +01:00
+ """ -T file """
2024-06-07 06:08:30 +02:00
+ " ${proto_fqdn}/remote.php/dav/files/${adminUser}/file"
2023-12-30 18:51:55 +01:00
)
client.succeed("echo 'hello' > file")
client.succeed(
2024-03-04 08:01:05 +01:00
"curl -f -s --location -X PUT"
2023-12-30 18:51:55 +01:00
+ """ -H "Depth: 1" """
+ """ -u ${adminUser}:${adminPass} """
2024-06-07 06:08:30 +02:00
+ " --connect-to ${fqdn}:443:server:443"
+ " --connect-to ${fqdn}:80:server:80"
2023-12-30 18:51:55 +01:00
+ """ -T file """
2024-06-07 06:08:30 +02:00
+ " ${proto_fqdn}/remote.php/dav/files/${adminUser}/"
2023-12-30 18:51:55 +01:00
)
content = client.succeed(
2024-03-04 08:01:05 +01:00
"curl -f -s --location -X GET"
2023-12-30 18:51:55 +01:00
+ """ -H "Depth: 1" """
+ """ -u ${adminUser}:${adminPass} """
2024-06-07 06:08:30 +02:00
+ " --connect-to ${fqdn}:443:server:443"
+ " --connect-to ${fqdn}:80:server:80"
2023-12-30 18:51:55 +01:00
+ """ -T file """
2024-06-07 06:08:30 +02:00
+ " ${proto_fqdn}/remote.php/dav/files/${adminUser}/file"
2023-12-30 18:51:55 +01:00
)
if content != "hello\n":
raise Exception("Got incorrect content for file, expected 'hello\n' but got:\n{}".format(content))
'';
2024-03-04 08:01:05 +01:00
2024-06-07 06:08:30 +02:00
base = {
imports = [
(pkgs'.path + "/nixos/modules/profiles/headless.nix")
(pkgs'.path + "/nixos/modules/profiles/qemu-guest.nix")
{
options = {
shb.backup = lib.mkOption { type = lib.types.anything; };
};
}
../../modules/services/nextcloud-server.nix
];
# Nginx port.
networking.firewall.allowedTCPPorts = [ 80 443 ];
};
certs = { config, ... }: {
imports = [
../../modules/blocks/ssl.nix
];
shb.certs = {
cas.selfsigned.myca = {
name = "My CA";
};
certs.selfsigned = {
n = {
ca = config.shb.certs.cas.selfsigned.myca;
domain = "*.${domain}";
group = "nginx";
};
2024-03-04 08:01:05 +01:00
};
};
2024-06-07 06:08:30 +02:00
systemd.services.nginx.after = [ config.shb.certs.certs.selfsigned.n.systemdService ];
systemd.services.nginx.requires = [ config.shb.certs.certs.selfsigned.n.systemdService ];
};
2024-03-04 08:01:05 +01:00
2024-06-07 06:08:30 +02:00
basic = { config, ... }: {
shb.nextcloud = {
enable = true;
inherit domain subdomain;
dataDir = "/var/lib/nextcloud";
tracing = null;
defaultPhoneRegion = "US";
# This option is only needed because we do not access Nextcloud at the default port in the VM.
externalFqdn = "${fqdn}:8080";
adminUser = adminUser;
adminPassFile = pkgs.writeText "adminPassFile" adminPass;
debug = true;
};
2024-03-04 08:01:05 +01:00
};
2024-06-07 06:08:30 +02:00
https = { config, ...}: {
shb.nextcloud = {
ssl = config.shb.certs.certs.selfsigned.n;
2024-03-04 08:01:05 +01:00
2024-06-07 06:08:30 +02:00
externalFqdn = lib.mkForce null;
};
};
2024-03-04 08:01:05 +01:00
2024-06-07 06:08:30 +02:00
previewgenerator = { config, ...}: {
systemd.tmpfiles.rules = [
"d '/srv/nextcloud' 0750 nextcloud nextcloud - -"
];
2024-03-04 08:01:05 +01:00
2024-06-07 06:08:30 +02:00
shb.nextcloud = {
apps.previewgenerator.enable = true;
};
};
2024-03-04 08:01:05 +01:00
2024-06-07 06:08:30 +02:00
externalstorage = {
systemd.tmpfiles.rules = [
"d '/srv/nextcloud' 0750 nextcloud nextcloud - -"
];
2024-03-04 08:01:05 +01:00
2024-06-07 06:08:30 +02:00
shb.nextcloud = {
apps.externalStorage = {
enable = true;
userLocalMount.directory = "/srv/nextcloud/$user";
userLocalMount.mountName = "home";
2024-03-04 08:01:05 +01:00
};
};
2024-06-07 06:08:30 +02:00
};
in
{
basic = pkgs.testers.runNixOSTest {
name = "nextcloud-basic";
nodes.server = lib.mkMerge [
base
basic
{
options = {
shb.authelia = lib.mkOption { type = lib.types.anything; };
};
}
];
2024-03-04 08:01:05 +01:00
nodes.client = {};
testScript = commonTestScript;
2023-12-30 18:51:55 +01:00
};
2024-06-07 06:08:30 +02:00
https = pkgs.testers.runNixOSTest {
name = "nextcloud-https";
nodes.server = lib.mkMerge [
base
certs
basic
https
{
options = {
shb.authelia = lib.mkOption { type = lib.types.anything; };
};
}
];
2024-06-07 06:08:30 +02:00
nodes.client = {};
2024-06-07 06:08:30 +02:00
# TODO: Test login
testScript = commonTestScript;
};
2024-06-07 06:08:30 +02:00
previewGenerator = pkgs.testers.runNixOSTest {
name = "nextcloud-previewGenerator";
2024-06-07 06:08:30 +02:00
nodes.server = lib.mkMerge [
base
certs
basic
https
previewgenerator
{
options = {
shb.authelia = lib.mkOption { type = lib.types.anything; };
};
}
];
nodes.client = {};
2024-06-07 06:08:30 +02:00
testScript = commonTestScript;
};
externalStorage = pkgs.testers.runNixOSTest {
name = "nextcloud-externalStorage";
2024-06-07 06:08:30 +02:00
nodes.server = lib.mkMerge [
base
certs
basic
https
externalstorage
{
options = {
shb.authelia = lib.mkOption { type = lib.types.anything; };
};
2024-06-07 06:08:30 +02:00
}
];
nodes.client = {};
2024-06-07 06:08:30 +02:00
testScript = commonTestScript;
};
2023-12-30 18:51:55 +01:00
}