commonalize audiobookshelf tests
This commit is contained in:
parent
121371716b
commit
30be3d1262
1 changed files with 133 additions and 145 deletions
|
@ -2,11 +2,15 @@
|
||||||
let
|
let
|
||||||
pkgs' = pkgs;
|
pkgs' = pkgs;
|
||||||
|
|
||||||
|
subdomain = "a";
|
||||||
|
domain = "example.com";
|
||||||
|
fqdn = "${subdomain}.${domain}";
|
||||||
|
|
||||||
# TODO: Test login
|
# TODO: Test login
|
||||||
commonTestScript = { nodes, ... }:
|
commonTestScript = { nodes, ... }:
|
||||||
let
|
let
|
||||||
hasSSL = !(isNull nodes.server.shb.audiobookshelf.ssl);
|
hasSSL = !(isNull nodes.server.shb.audiobookshelf.ssl);
|
||||||
fqdn = if hasSSL then "https://a.example.com" else "http://a.example.com";
|
proto_fqdn = if hasSSL then "https://${fqdn}" else "http://${fqdn}";
|
||||||
in
|
in
|
||||||
''
|
''
|
||||||
import json
|
import json
|
||||||
|
@ -26,95 +30,149 @@ let
|
||||||
def curl(target, format, endpoint, succeed=True):
|
def curl(target, format, endpoint, succeed=True):
|
||||||
return json.loads(target.succeed(
|
return json.loads(target.succeed(
|
||||||
"curl --fail-with-body --silent --show-error --output /dev/null --location"
|
"curl --fail-with-body --silent --show-error --output /dev/null --location"
|
||||||
+ " --connect-to a.example.com:443:server:443"
|
+ " --connect-to ${fqdn}:443:server:443"
|
||||||
+ " --connect-to a.example.com:80:server:80"
|
+ " --connect-to ${fqdn}:80:server:80"
|
||||||
+ f" --write-out '{format}'"
|
+ f" --write-out '{format}'"
|
||||||
+ " " + endpoint
|
+ " " + endpoint
|
||||||
))
|
))
|
||||||
|
|
||||||
with subtest("access"):
|
with subtest("access"):
|
||||||
response = curl(client, """{"code":%{response_code}}""", "${fqdn}")
|
response = curl(client, """{"code":%{response_code}}""", "${proto_fqdn}")
|
||||||
|
|
||||||
if response['code'] != 200:
|
if response['code'] != 200:
|
||||||
raise Exception(f"Code is {response['code']}")
|
raise Exception(f"Code is {response['code']}")
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
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/audiobookshelf.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";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
systemd.services.nginx.after = [ config.shb.certs.certs.selfsigned.n.systemdService ];
|
||||||
|
systemd.services.nginx.requires = [ config.shb.certs.certs.selfsigned.n.systemdService ];
|
||||||
|
};
|
||||||
|
|
||||||
|
basic = {
|
||||||
|
shb.audiobookshelf = {
|
||||||
|
enable = true;
|
||||||
|
inherit subdomain domain;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
https = { config, ... }: {
|
||||||
|
shb.audiobookshelf = {
|
||||||
|
ssl = config.shb.certs.certs.selfsigned.n;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
sso = { config, ... }: {
|
||||||
|
imports = [
|
||||||
|
../../modules/blocks/authelia.nix
|
||||||
|
../../modules/blocks/ldap.nix
|
||||||
|
../../modules/blocks/postgresql.nix
|
||||||
|
];
|
||||||
|
|
||||||
|
shb.ldap = {
|
||||||
|
enable = true;
|
||||||
|
inherit domain;
|
||||||
|
subdomain = "ldap";
|
||||||
|
ldapPort = 3890;
|
||||||
|
webUIListenPort = 17170;
|
||||||
|
dcdomain = "dc=example,dc=com";
|
||||||
|
ldapUserPasswordFile = pkgs.writeText "ldapUserPassword" "ldapUserPassword";
|
||||||
|
jwtSecretFile = pkgs.writeText "jwtSecret" "jwtSecret";
|
||||||
|
};
|
||||||
|
|
||||||
|
shb.authelia = {
|
||||||
|
enable = true;
|
||||||
|
inherit domain;
|
||||||
|
subdomain = "auth";
|
||||||
|
ssl = config.shb.certs.certs.selfsigned.n;
|
||||||
|
|
||||||
|
ldapEndpoint = "ldap://127.0.0.1:${builtins.toString config.shb.ldap.ldapPort}";
|
||||||
|
dcdomain = config.shb.ldap.dcdomain;
|
||||||
|
|
||||||
|
secrets = {
|
||||||
|
jwtSecretFile = pkgs.writeText "jwtSecret" "jwtSecret";
|
||||||
|
ldapAdminPasswordFile = pkgs.writeText "ldapUserPassword" "ldapUserPassword";
|
||||||
|
sessionSecretFile = pkgs.writeText "sessionSecret" "sessionSecret";
|
||||||
|
storageEncryptionKeyFile = pkgs.writeText "storageEncryptionKey" "storageEncryptionKey";
|
||||||
|
identityProvidersOIDCHMACSecretFile = pkgs.writeText "identityProvidersOIDCHMACSecret" "identityProvidersOIDCHMACSecret";
|
||||||
|
identityProvidersOIDCIssuerPrivateKeyFile = (pkgs.runCommand "gen-private-key" {} ''
|
||||||
|
mkdir $out
|
||||||
|
${pkgs.openssl}/bin/openssl genrsa -out $out/private.pem 4096
|
||||||
|
'') + "/private.pem";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
shb.audiobookshelf = {
|
||||||
|
authEndpoint = "https://${config.shb.authelia.subdomain}.${config.shb.authelia.domain}";
|
||||||
|
ssoSecretFile = pkgs.writeText "ssoSecretFile" "ssoSecretFile";
|
||||||
|
};
|
||||||
|
};
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
basic = pkgs.testers.runNixOSTest {
|
basic = pkgs.testers.runNixOSTest {
|
||||||
name = "audiobookshelf-basic";
|
name = "audiobookshelf-basic";
|
||||||
|
|
||||||
nodes.server = { config, pkgs, ... }: {
|
nodes.server = lib.mkMerge [
|
||||||
imports = [
|
base
|
||||||
(pkgs'.path + "/nixos/modules/profiles/headless.nix")
|
basic
|
||||||
(pkgs'.path + "/nixos/modules/profiles/qemu-guest.nix")
|
{
|
||||||
{
|
options = {
|
||||||
options = {
|
shb.authelia = lib.mkOption { type = lib.types.anything; };
|
||||||
shb.backup = lib.mkOption { type = lib.types.anything; };
|
};
|
||||||
shb.authelia = lib.mkOption { type = lib.types.anything; };
|
}
|
||||||
};
|
];
|
||||||
}
|
|
||||||
../../modules/services/audiobookshelf.nix
|
|
||||||
];
|
|
||||||
|
|
||||||
shb.audiobookshelf = {
|
|
||||||
enable = true;
|
|
||||||
domain = "example.com";
|
|
||||||
subdomain = "a";
|
|
||||||
};
|
|
||||||
# Nginx port.
|
|
||||||
networking.firewall.allowedTCPPorts = [ 80 ];
|
|
||||||
};
|
|
||||||
|
|
||||||
nodes.client = {};
|
nodes.client = {};
|
||||||
|
|
||||||
testScript = commonTestScript;
|
testScript = commonTestScript;
|
||||||
};
|
};
|
||||||
|
|
||||||
cert = pkgs.testers.runNixOSTest {
|
https = pkgs.testers.runNixOSTest {
|
||||||
name = "audiobookshelf-cert";
|
name = "audiobookshelf-https";
|
||||||
|
|
||||||
nodes.server = { config, pkgs, ... }: {
|
nodes.server = lib.mkMerge [
|
||||||
imports = [
|
base
|
||||||
(pkgs'.path + "/nixos/modules/profiles/headless.nix")
|
certs
|
||||||
(pkgs'.path + "/nixos/modules/profiles/qemu-guest.nix")
|
basic
|
||||||
{
|
https
|
||||||
options = {
|
{
|
||||||
shb.backup = lib.mkOption { type = lib.types.anything; };
|
options = {
|
||||||
shb.authelia = lib.mkOption { type = lib.types.anything; };
|
shb.authelia = lib.mkOption { type = lib.types.anything; };
|
||||||
};
|
|
||||||
}
|
|
||||||
../../modules/blocks/nginx.nix
|
|
||||||
../../modules/blocks/ssl.nix
|
|
||||||
../../modules/services/audiobookshelf.nix
|
|
||||||
];
|
|
||||||
|
|
||||||
shb.certs = {
|
|
||||||
cas.selfsigned.myca = {
|
|
||||||
name = "My CA";
|
|
||||||
};
|
};
|
||||||
certs.selfsigned = {
|
}
|
||||||
n = {
|
];
|
||||||
ca = config.shb.certs.cas.selfsigned.myca;
|
|
||||||
domain = "*.example.com";
|
|
||||||
group = "nginx";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
systemd.services.nginx.after = [ config.shb.certs.certs.selfsigned.n.systemdService ];
|
|
||||||
systemd.services.nginx.requires = [ config.shb.certs.certs.selfsigned.n.systemdService ];
|
|
||||||
|
|
||||||
shb.audiobookshelf = {
|
|
||||||
enable = true;
|
|
||||||
domain = "example.com";
|
|
||||||
subdomain = "a";
|
|
||||||
ssl = config.shb.certs.certs.selfsigned.n;
|
|
||||||
};
|
|
||||||
# Nginx port.
|
|
||||||
networking.firewall.allowedTCPPorts = [ 80 443 ];
|
|
||||||
|
|
||||||
shb.nginx.accessLog = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
nodes.client = {};
|
nodes.client = {};
|
||||||
|
|
||||||
|
@ -124,83 +182,13 @@ in
|
||||||
sso = pkgs.testers.runNixOSTest {
|
sso = pkgs.testers.runNixOSTest {
|
||||||
name = "audiobookshelf-sso";
|
name = "audiobookshelf-sso";
|
||||||
|
|
||||||
nodes.server = { config, pkgs, ... }: {
|
nodes.server = lib.mkMerge [
|
||||||
imports = [
|
base
|
||||||
(pkgs'.path + "/nixos/modules/profiles/headless.nix")
|
certs
|
||||||
(pkgs'.path + "/nixos/modules/profiles/qemu-guest.nix")
|
basic
|
||||||
{
|
https
|
||||||
options = {
|
sso
|
||||||
shb.backup = lib.mkOption { type = lib.types.anything; };
|
];
|
||||||
};
|
|
||||||
}
|
|
||||||
../../modules/blocks/authelia.nix
|
|
||||||
../../modules/blocks/ldap.nix
|
|
||||||
../../modules/blocks/postgresql.nix
|
|
||||||
../../modules/blocks/ssl.nix
|
|
||||||
../../modules/services/audiobookshelf.nix
|
|
||||||
];
|
|
||||||
|
|
||||||
shb.ldap = {
|
|
||||||
enable = true;
|
|
||||||
domain = "example.com";
|
|
||||||
subdomain = "ldap";
|
|
||||||
ldapPort = 3890;
|
|
||||||
webUIListenPort = 17170;
|
|
||||||
dcdomain = "dc=example,dc=com";
|
|
||||||
ldapUserPasswordFile = pkgs.writeText "ldapUserPassword" "ldapUserPassword";
|
|
||||||
jwtSecretFile = pkgs.writeText "jwtSecret" "jwtSecret";
|
|
||||||
};
|
|
||||||
|
|
||||||
shb.certs = {
|
|
||||||
cas.selfsigned.myca = {
|
|
||||||
name = "My CA";
|
|
||||||
};
|
|
||||||
certs.selfsigned = {
|
|
||||||
n = {
|
|
||||||
ca = config.shb.certs.cas.selfsigned.myca;
|
|
||||||
domain = "*.example.com";
|
|
||||||
group = "nginx";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
systemd.services.nginx.after = [ config.shb.certs.certs.selfsigned.n.systemdService ];
|
|
||||||
systemd.services.nginx.requires = [ config.shb.certs.certs.selfsigned.n.systemdService ];
|
|
||||||
|
|
||||||
shb.authelia = {
|
|
||||||
enable = true;
|
|
||||||
domain = "example.com";
|
|
||||||
subdomain = "auth";
|
|
||||||
ssl = config.shb.certs.certs.selfsigned.n;
|
|
||||||
|
|
||||||
ldapEndpoint = "ldap://127.0.0.1:${builtins.toString config.shb.ldap.ldapPort}";
|
|
||||||
dcdomain = config.shb.ldap.dcdomain;
|
|
||||||
|
|
||||||
secrets = {
|
|
||||||
jwtSecretFile = pkgs.writeText "jwtSecret" "jwtSecret";
|
|
||||||
ldapAdminPasswordFile = pkgs.writeText "ldapUserPassword" "ldapUserPassword";
|
|
||||||
sessionSecretFile = pkgs.writeText "sessionSecret" "sessionSecret";
|
|
||||||
storageEncryptionKeyFile = pkgs.writeText "storageEncryptionKey" "storageEncryptionKey";
|
|
||||||
identityProvidersOIDCHMACSecretFile = pkgs.writeText "identityProvidersOIDCHMACSecret" "identityProvidersOIDCHMACSecret";
|
|
||||||
identityProvidersOIDCIssuerPrivateKeyFile = (pkgs.runCommand "gen-private-key" {} ''
|
|
||||||
mkdir $out
|
|
||||||
${pkgs.openssl}/bin/openssl genrsa -out $out/private.pem 4096
|
|
||||||
'') + "/private.pem";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
shb.audiobookshelf = {
|
|
||||||
enable = true;
|
|
||||||
domain = "example.com";
|
|
||||||
subdomain = "a";
|
|
||||||
ssl = config.shb.certs.certs.selfsigned.n;
|
|
||||||
|
|
||||||
authEndpoint = "https://${config.shb.authelia.subdomain}.${config.shb.authelia.domain}";
|
|
||||||
ssoSecretFile = pkgs.writeText "ssoSecretFile" "ssoSecretFile";
|
|
||||||
};
|
|
||||||
# Nginx port.
|
|
||||||
networking.firewall.allowedTCPPorts = [ 80 443 ];
|
|
||||||
};
|
|
||||||
|
|
||||||
nodes.client = {};
|
nodes.client = {};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue