mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 03:30:45 +00:00
460e34b273
Using PostgreSQL 15 without the init script fails due to https://github.com/NixOS/nixpkgs/issues/216989.
85 lines
2.7 KiB
Nix
85 lines
2.7 KiB
Nix
import ./make-test-python.nix ({ pkgs, ... }: {
|
|
name = "invidious";
|
|
|
|
meta = with pkgs.lib.maintainers; {
|
|
maintainers = [ sbruder ];
|
|
};
|
|
|
|
nodes = {
|
|
postgres-tcp = { config, pkgs, ... }: {
|
|
services.postgresql = {
|
|
enable = true;
|
|
initialScript = pkgs.writeText "init-postgres-with-password" ''
|
|
CREATE USER kemal WITH PASSWORD 'correct horse battery staple';
|
|
CREATE DATABASE invidious WITH OWNER kemal;
|
|
'';
|
|
enableTCPIP = true;
|
|
authentication = ''
|
|
host invidious kemal samenet scram-sha-256
|
|
'';
|
|
};
|
|
networking.firewall.allowedTCPPorts = [ config.services.postgresql.port ];
|
|
};
|
|
machine = { config, lib, pkgs, ... }: {
|
|
services.invidious = {
|
|
enable = true;
|
|
};
|
|
services.postgresql.initialScript = pkgs.writeText "init-postgres-with-password" ''
|
|
CREATE USER kemal;
|
|
CREATE DATABASE invidious WITH OWNER kemal;
|
|
'';
|
|
|
|
specialisation = {
|
|
nginx.configuration = {
|
|
services.invidious = {
|
|
nginx.enable = true;
|
|
domain = "invidious.example.com";
|
|
};
|
|
services.nginx.virtualHosts."invidious.example.com" = {
|
|
forceSSL = false;
|
|
enableACME = false;
|
|
};
|
|
networking.hosts."127.0.0.1" = [ "invidious.example.com" ];
|
|
};
|
|
postgres-tcp.configuration = {
|
|
services.invidious = {
|
|
database = {
|
|
createLocally = false;
|
|
host = "postgres-tcp";
|
|
passwordFile = toString (pkgs.writeText "database-password" "correct horse battery staple");
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
testScript = { nodes, ... }: ''
|
|
def curl_assert_status_code(url, code, form=None):
|
|
assert int(machine.succeed(f"curl -s -o /dev/null -w %{{http_code}} {'-F ' + form + ' ' if form else '''}{url}")) == code
|
|
|
|
|
|
def activate_specialisation(name: str):
|
|
machine.succeed(f"${nodes.machine.config.system.build.toplevel}/specialisation/{name}/bin/switch-to-configuration test >&2")
|
|
|
|
|
|
url = "http://localhost:${toString nodes.machine.config.services.invidious.port}"
|
|
port = ${toString nodes.machine.config.services.invidious.port}
|
|
|
|
# start postgres vm now
|
|
postgres_tcp.start()
|
|
|
|
machine.wait_for_open_port(port)
|
|
curl_assert_status_code(f"{url}/search", 200)
|
|
|
|
activate_specialisation("nginx")
|
|
machine.wait_for_open_port(80)
|
|
curl_assert_status_code("http://invidious.example.com/search", 200)
|
|
|
|
postgres_tcp.wait_for_unit("postgresql.service")
|
|
activate_specialisation("postgres-tcp")
|
|
machine.wait_for_open_port(port)
|
|
curl_assert_status_code(f"{url}/search", 200)
|
|
'';
|
|
})
|