2018-11-11 08:41:11 +00:00
|
|
|
{ system ? builtins.currentSystem,
|
|
|
|
config ? {},
|
|
|
|
pkgs ? import ../.. { inherit system config; }
|
|
|
|
}:
|
|
|
|
|
2019-09-10 18:55:35 +01:00
|
|
|
with import ../lib/testing-python.nix { inherit system pkgs; };
|
2017-02-11 04:57:57 +00:00
|
|
|
with pkgs.lib;
|
2018-11-11 08:41:11 +00:00
|
|
|
|
2017-02-11 04:57:57 +00:00
|
|
|
let
|
2019-02-03 11:03:53 +00:00
|
|
|
postgresql-versions = import ../../pkgs/servers/sql/postgresql pkgs;
|
2017-02-11 04:57:57 +00:00
|
|
|
test-sql = pkgs.writeText "postgresql-test" ''
|
|
|
|
CREATE EXTENSION pgcrypto; -- just to check if lib loading works
|
|
|
|
CREATE TABLE sth (
|
|
|
|
id int
|
|
|
|
);
|
|
|
|
INSERT INTO sth (id) VALUES (1);
|
|
|
|
INSERT INTO sth (id) VALUES (1);
|
|
|
|
INSERT INTO sth (id) VALUES (1);
|
|
|
|
INSERT INTO sth (id) VALUES (1);
|
|
|
|
INSERT INTO sth (id) VALUES (1);
|
2017-07-15 14:58:17 +01:00
|
|
|
CREATE TABLE xmltest ( doc xml );
|
|
|
|
INSERT INTO xmltest (doc) VALUES ('<test>ok</test>'); -- check if libxml2 enabled
|
2017-02-11 04:57:57 +00:00
|
|
|
'';
|
2019-01-19 10:33:20 +00:00
|
|
|
make-postgresql-test = postgresql-name: postgresql-package: backup-all: makeTest {
|
2017-02-11 04:57:57 +00:00
|
|
|
name = postgresql-name;
|
|
|
|
meta = with pkgs.stdenv.lib.maintainers; {
|
|
|
|
maintainers = [ zagy ];
|
|
|
|
};
|
2016-01-20 02:42:59 +00:00
|
|
|
|
2018-07-20 21:56:59 +01:00
|
|
|
machine = {...}:
|
2016-01-20 02:42:59 +00:00
|
|
|
{
|
2020-01-09 22:21:08 +00:00
|
|
|
services.postgresql = {
|
|
|
|
enable = true;
|
|
|
|
package = postgresql-package;
|
|
|
|
};
|
2018-06-17 18:49:25 +01:00
|
|
|
|
2020-01-09 22:21:08 +00:00
|
|
|
services.postgresqlBackup = {
|
|
|
|
enable = true;
|
|
|
|
databases = optional (!backup-all) "postgres";
|
|
|
|
};
|
2016-01-20 02:42:59 +00:00
|
|
|
};
|
|
|
|
|
2019-01-19 10:33:20 +00:00
|
|
|
testScript = let
|
|
|
|
backupName = if backup-all then "all" else "postgres";
|
|
|
|
backupService = if backup-all then "postgresqlBackup" else "postgresqlBackup-postgres";
|
|
|
|
in ''
|
2019-09-10 18:55:35 +01:00
|
|
|
def check_count(statement, lines):
|
|
|
|
return 'test $(sudo -u postgres psql postgres -tAc "{}"|wc -l) -eq {}'.format(
|
|
|
|
statement, lines
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
machine.start()
|
|
|
|
machine.wait_for_unit("postgresql")
|
2017-07-19 22:13:02 +01:00
|
|
|
|
2020-01-09 22:21:08 +00:00
|
|
|
with subtest("Postgresql is available just after unit start"):
|
|
|
|
machine.succeed(
|
|
|
|
"cat ${test-sql} | sudo -u postgres psql"
|
|
|
|
)
|
|
|
|
|
|
|
|
with subtest("Postgresql survives restart (bug #1735)"):
|
|
|
|
machine.shutdown()
|
|
|
|
time.sleep(2)
|
|
|
|
machine.start()
|
|
|
|
machine.wait_for_unit("postgresql")
|
|
|
|
|
2019-09-10 18:55:35 +01:00
|
|
|
machine.fail(check_count("SELECT * FROM sth;", 3))
|
|
|
|
machine.succeed(check_count("SELECT * FROM sth;", 5))
|
|
|
|
machine.fail(check_count("SELECT * FROM sth;", 4))
|
|
|
|
machine.succeed(check_count("SELECT xpath('/test/text()', doc) FROM xmltest;", 1))
|
2018-06-17 18:49:25 +01:00
|
|
|
|
2020-01-09 22:21:08 +00:00
|
|
|
with subtest("Backup service works"):
|
|
|
|
machine.succeed(
|
|
|
|
"systemctl start ${backupService}.service",
|
|
|
|
"zcat /var/backup/postgresql/${backupName}.sql.gz | grep '<test>ok</test>'",
|
|
|
|
"stat -c '%a' /var/backup/postgresql/${backupName}.sql.gz | grep 600",
|
|
|
|
)
|
|
|
|
|
2020-01-09 22:21:51 +00:00
|
|
|
with subtest("Initdb works"):
|
|
|
|
machine.succeed("sudo -u postgres initdb -D /tmp/testpostgres2")
|
|
|
|
|
2019-09-10 18:55:35 +01:00
|
|
|
machine.shutdown()
|
2017-02-11 04:57:57 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
};
|
|
|
|
in
|
2019-02-03 11:03:53 +00:00
|
|
|
(mapAttrs' (name: package: { inherit name; value=make-postgresql-test name package false;}) postgresql-versions) // {
|
2019-02-04 02:56:43 +00:00
|
|
|
postgresql_11-backup-all = make-postgresql-test "postgresql_11-backup-all" postgresql-versions.postgresql_11 true;
|
2019-02-03 11:03:53 +00:00
|
|
|
}
|
|
|
|
|