1 import ./make-test-python.nix ({ pkgs, lib, ... }:
10 createNode = index: { pkgs, ... }:
12 ip = builtins.elemAt nodesIps index; # since we already use IPs to identify servers
15 networking.interfaces.eth1.ipv4.addresses = pkgs.lib.mkOverride 0 [
16 { address = ip; prefixLength = 16; }
19 networking.firewall.allowedTCPPorts = [ 5432 8008 5010 ];
21 environment.systemPackages = [ pkgs.jq ];
27 postgresqlPackage = pkgs.postgresql_14.withPackages (p: [ p.pg_safeupdate ]);
30 name = "node${toString(index + 1)}";
32 otherNodesIps = builtins.filter (h: h != ip) nodesIps;
33 softwareWatchdog = true;
41 maximum_lag_on_failover = 1048576;
44 { encoding = "UTF8"; }
54 username = "replicator";
57 username = "postgres";
64 listen_addresses = "${ip}";
65 wal_level = "replica";
66 hot_standby_feedback = "on";
67 unix_socket_directories = "/tmp";
70 "host replication replicator 192.168.1.0/24 md5"
71 # Unsafe, do not use for anything other than tests
72 "host all all 0.0.0.0/0 trust"
77 host = "192.168.1.4:2379";
82 PATRONI_REPLICATION_PASSWORD = pkgs.writeText "replication-password" "postgres";
83 PATRONI_SUPERUSER_PASSWORD = pkgs.writeText "superuser-password" "postgres";
84 PATRONI_REWIND_PASSWORD = pkgs.writeText "rewind-password" "postgres";
88 # We always want to restart so the tests never hang
89 systemd.services.patroni.serviceConfig.StartLimitIntervalSec = 0;
100 etcd = { pkgs, ... }: {
102 networking.interfaces.eth1.ipv4.addresses = pkgs.lib.mkOverride 0 [
103 { address = "192.168.1.4"; prefixLength = 16; }
108 listenClientUrls = [ "http://192.168.1.4:2379" ];
111 networking.firewall.allowedTCPPorts = [ 2379 ];
114 client = { pkgs, ... }: {
115 environment.systemPackages = [ pkgs.postgresql_14 ];
117 networking.interfaces.eth1.ipv4.addresses = pkgs.lib.mkOverride 0 [
118 { address = "192.168.2.1"; prefixLength = 16; }
139 http-check expect status 200
140 default-server inter 3s fall 3 rise 2 on-marked-down shutdown-sessions
141 ${builtins.concatStringsSep "\n" (map (ip: "server postgresql_${ip}_5432 ${ip}:5432 maxconn 100 check port 8008") nodesIps)}
150 nodes = [node1, node2, node3]
152 def wait_for_all_nodes_ready(expected_replicas=2):
153 booted_nodes = filter(lambda node: node.booted, nodes)
154 for node in booted_nodes:
155 print(node.succeed("patronictl list cluster1"))
156 node.wait_until_succeeds(f"[ $(patronictl list -f json cluster1 | jq 'length') == {expected_replicas + 1} ]")
157 node.wait_until_succeeds("[ $(patronictl list -f json cluster1 | jq 'map(select(.Role | test(\"^Leader$\"))) | map(select(.State | test(\"^running$\"))) | length') == 1 ]")
158 node.wait_until_succeeds(f"[ $(patronictl list -f json cluster1 | jq 'map(select(.Role | test(\"^Replica$\"))) | map(select(.State | test(\"^running$\"))) | length') == {expected_replicas} ]")
159 print(node.succeed("patronictl list cluster1"))
160 client.wait_until_succeeds("psql -h 127.0.0.1 -U postgres --command='select 1;'")
162 def run_dummy_queries():
163 client.succeed("psql -h 127.0.0.1 -U postgres --pset='pager=off' --tuples-only --command='insert into dummy(val) values (101);'")
164 client.succeed("test $(psql -h 127.0.0.1 -U postgres --pset='pager=off' --tuples-only --command='select val from dummy where val = 101;') -eq 101")
165 client.succeed("psql -h 127.0.0.1 -U postgres --pset='pager=off' --tuples-only --command='delete from dummy where val = 101;'")
169 with subtest("should bootstrap a new patroni cluster"):
170 wait_for_all_nodes_ready()
172 with subtest("should be able to insert and select"):
173 client.succeed("psql -h 127.0.0.1 -U postgres --command='create table dummy as select * from generate_series(1, 100) as val;'")
174 client.succeed("test $(psql -h 127.0.0.1 -U postgres --pset='pager=off' --tuples-only --command='select count(distinct val) from dummy;') -eq 100")
176 with subtest("should restart after all nodes are crashed"):
181 wait_for_all_nodes_ready()
183 with subtest("should be able to run queries while any one node is crashed"):
184 masterNodeName = node1.succeed("patronictl list -f json cluster1 | jq '.[] | select(.Role | test(\"^Leader$\")) | .Member' -r").strip()
185 masterNodeIndex = int(masterNodeName[len(masterNodeName)-1]) - 1
187 # Move master node at the end of the list to avoid multiple failovers (makes the test faster and more consistent)
188 nodes.append(nodes.pop(masterNodeIndex))
192 wait_for_all_nodes_ready(1)
194 # Execute some queries while a node is down.
197 # Restart crashed node.
199 wait_for_all_nodes_ready()
201 # Execute some queries with the node back up.