mirror of
https://github.com/outbackdingo/patroni.git
synced 2026-08-25 14:53:37 +00:00
If enabled it will allow Patroni to cope with DCS outages. In case of a DCS outage the leader tries to call all remaining members in the cluster via API and if all of them respond with success the leader will not be demoted. The failsafe_mode could be enabled by running ```sh patronictl edit-config -s failsafe_mode=true ``` or by calling the `/config` REST API endpoint. Co-authored-by: Polina Bungina <[email protected]>
168 lines
6.3 KiB
Python
168 lines
6.3 KiB
Python
import json
|
|
import parse
|
|
import shlex
|
|
import subprocess
|
|
import sys
|
|
import time
|
|
import yaml
|
|
|
|
from behave import register_type, step, then
|
|
from dateutil import tz
|
|
from datetime import datetime, timedelta
|
|
|
|
tzutc = tz.tzutc()
|
|
|
|
|
|
@parse.with_pattern(r'https?://(?:\w|\.|:|/)+')
|
|
def parse_url(text):
|
|
return text
|
|
|
|
|
|
register_type(url=parse_url)
|
|
|
|
|
|
# there is no way we can find out if the node has already
|
|
# started as a leader without checking the DCS. We cannot
|
|
# just rely on the database availability, since there is
|
|
# a short gap between the time PostgreSQL becomes available
|
|
# and Patroni assuming the leader role.
|
|
@step('{name:w} is a leader after {time_limit:d} seconds')
|
|
@then('{name:w} is a leader after {time_limit:d} seconds')
|
|
def is_a_leader(context, name, time_limit):
|
|
time_limit *= context.timeout_multiplier
|
|
max_time = time.time() + int(time_limit)
|
|
while (context.dcs_ctl.query("leader") != name):
|
|
time.sleep(1)
|
|
assert time.time() < max_time, "{0} is not a leader in dcs after {1} seconds".format(name, time_limit)
|
|
|
|
|
|
@step('I sleep for {value:d} seconds')
|
|
def sleep_for_n_seconds(context, value):
|
|
time.sleep(int(value))
|
|
|
|
|
|
def _set_response(context, response):
|
|
context.status_code = response.status
|
|
data = response.data.decode('utf-8')
|
|
ct = response.getheader('content-type', '')
|
|
if ct.startswith('application/json') or\
|
|
ct.startswith('text/yaml') or\
|
|
ct.startswith('text/x-yaml') or\
|
|
ct.startswith('application/yaml') or\
|
|
ct.startswith('application/x-yaml'):
|
|
try:
|
|
context.response = yaml.safe_load(data)
|
|
except ValueError:
|
|
context.response = data
|
|
else:
|
|
context.response = data
|
|
|
|
|
|
@step('I issue a GET request to {url:url}')
|
|
def do_get(context, url):
|
|
do_request(context, 'GET', url, None)
|
|
|
|
|
|
@step('I issue an empty POST request to {url:url}')
|
|
def do_post_empty(context, url):
|
|
do_request(context, 'POST', url, None)
|
|
|
|
|
|
@step('I issue a {request_method:w} request to {url:url} with {data}')
|
|
def do_request(context, request_method, url, data):
|
|
if context.certfile:
|
|
url = url.replace('http://', 'https://')
|
|
data = data and json.loads(data)
|
|
try:
|
|
r = context.request_executor.request(request_method, url, data)
|
|
if request_method == 'PATCH' and r.status == 409:
|
|
r = context.request_executor.request(request_method, url, data)
|
|
except Exception:
|
|
context.status_code = context.response = None
|
|
else:
|
|
_set_response(context, r)
|
|
|
|
|
|
@step('I run {cmd}')
|
|
def do_run(context, cmd):
|
|
cmd = [sys.executable, '-m', 'coverage', 'run', '--source=patroni', '-p'] + shlex.split(cmd)
|
|
try:
|
|
response = subprocess.check_output(cmd, stderr=subprocess.STDOUT)
|
|
context.status_code = 0
|
|
except subprocess.CalledProcessError as e:
|
|
response = e.output
|
|
context.status_code = e.returncode
|
|
context.response = response.decode('utf-8').strip()
|
|
|
|
|
|
@then('I receive a response {component:w} {data}')
|
|
def check_response(context, component, data):
|
|
if component == 'code':
|
|
assert context.status_code == int(data),\
|
|
"status code {0} != {1}, response: {2}".format(context.status_code, data, context.response)
|
|
elif component == 'returncode':
|
|
assert context.status_code == int(data), "return code {0} != {1}, {2}".format(context.status_code,
|
|
data, context.response)
|
|
elif component == 'text':
|
|
assert context.response == data.strip('"'), "response {0} does not contain {1}".format(context.response, data)
|
|
elif component == 'output':
|
|
assert data.strip('"') in context.response, "response {0} does not contain {1}".format(context.response, data)
|
|
else:
|
|
assert component in context.response, "{0} is not part of the response".format(component)
|
|
if context.certfile:
|
|
data = data.replace('http://', 'https://')
|
|
assert str(context.response[component]) == str(data), "{0} does not contain {1}".format(component, data)
|
|
|
|
|
|
@step('I issue a scheduled switchover from {from_host:w} to {to_host:w} in {in_seconds:d} seconds')
|
|
def scheduled_switchover(context, from_host, to_host, in_seconds):
|
|
context.execute_steps(u"""
|
|
Given I run patronictl.py switchover batman --master {0} --candidate {1} --scheduled "{2}" --force
|
|
""".format(from_host, to_host, datetime.now(tzutc) + timedelta(seconds=int(in_seconds))))
|
|
|
|
|
|
@step('I issue a scheduled restart at {url:url} in {in_seconds:d} seconds with {data}')
|
|
def scheduled_restart(context, url, in_seconds, data):
|
|
data = data and json.loads(data) or {}
|
|
data.update(schedule='{0}'.format((datetime.now(tzutc) + timedelta(seconds=int(in_seconds))).isoformat()))
|
|
context.execute_steps(u"""Given I issue a POST request to {0}/restart with {1}""".format(url, json.dumps(data)))
|
|
|
|
|
|
@step('I add tag {tag:w} {value:w} to {pg_name:w} config')
|
|
def add_tag_to_config(context, tag, value, pg_name):
|
|
context.pctl.add_tag_to_config(pg_name, tag, value)
|
|
|
|
|
|
@then('Status code on GET {url:url} is {code:d} after {timeout:d} seconds')
|
|
def check_http_code(context, url, code, timeout):
|
|
if context.certfile:
|
|
url = url.replace('http://', 'https://')
|
|
timeout *= context.timeout_multiplier
|
|
for _ in range(int(timeout)):
|
|
r = context.request_executor.request('GET', url)
|
|
if int(code) == int(r.status):
|
|
break
|
|
time.sleep(1)
|
|
else:
|
|
assert False, "HTTP Status Code is not {0} after {1} seconds".format(code, timeout)
|
|
|
|
|
|
@then('Response on GET {url:url} contains {value} after {timeout:d} seconds')
|
|
def check_http_response(context, url, value, timeout, negate=False):
|
|
if context.certfile:
|
|
url = url.replace('http://', 'https://')
|
|
timeout *= context.timeout_multiplier
|
|
for _ in range(int(timeout)):
|
|
r = context.request_executor.request('GET', url)
|
|
if (value in r.data.decode('utf-8')) != negate:
|
|
break
|
|
time.sleep(1)
|
|
else:
|
|
assert False,\
|
|
"Value {0} is {1} present in response after {2} seconds".format(value, "not" if not negate else "", timeout)
|
|
|
|
|
|
@then('Response on GET {url} does not contain {value} after {timeout:d} seconds')
|
|
def check_not_in_http_response(context, url, value, timeout):
|
|
check_http_response(context, url, value, timeout, negate=True)
|