mirror of
https://github.com/outbackdingo/patroni.git
synced 2026-01-27 18:20:05 +00:00
- added pyrightconfig.json with typeCheckingMode=strict - added type hints to all files except api.py - added type stubs for dns, etcd, consul, kazoo, pysyncobj and other modules - added type stubs for psycopg2 and urllib3 with some little fixes - fixes most of the issues reported by pyright - remaining issues will be addressed later, along with enabling CI linting task
116 lines
4.2 KiB
Python
116 lines
4.2 KiB
Python
import unittest
|
|
|
|
from mock import Mock, patch
|
|
|
|
from patroni.exceptions import PatroniException
|
|
from patroni.utils import Retry, RetryFailedError, enable_keepalive, polling_loop, validate_directory, unquote
|
|
|
|
|
|
class TestUtils(unittest.TestCase):
|
|
|
|
def test_polling_loop(self):
|
|
self.assertEqual(list(polling_loop(0.001, interval=0.001)), [0])
|
|
|
|
@patch('os.path.exists', Mock(return_value=True))
|
|
@patch('os.path.isdir', Mock(return_value=True))
|
|
@patch('tempfile.mkstemp', Mock(return_value=("", "")))
|
|
@patch('os.remove', Mock(side_effect=Exception))
|
|
def test_validate_directory_writable(self):
|
|
self.assertRaises(Exception, validate_directory, "/tmp")
|
|
|
|
@patch('os.path.exists', Mock(return_value=True))
|
|
@patch('os.path.isdir', Mock(return_value=True))
|
|
@patch('tempfile.mkstemp', Mock(side_effect=OSError))
|
|
def test_validate_directory_not_writable(self):
|
|
self.assertRaises(PatroniException, validate_directory, "/tmp")
|
|
|
|
@patch('os.path.exists', Mock(return_value=False))
|
|
@patch('os.makedirs', Mock(side_effect=OSError))
|
|
def test_validate_directory_couldnt_create(self):
|
|
self.assertRaises(PatroniException, validate_directory, "/tmp")
|
|
|
|
@patch('os.path.exists', Mock(return_value=True))
|
|
@patch('os.path.isdir', Mock(return_value=False))
|
|
def test_validate_directory_is_not_a_directory(self):
|
|
self.assertRaises(PatroniException, validate_directory, "/tmp")
|
|
|
|
def test_enable_keepalive(self):
|
|
with patch('socket.SIO_KEEPALIVE_VALS', 1, create=True):
|
|
self.assertIsNone(enable_keepalive(Mock(), 10, 5))
|
|
with patch('socket.SIO_KEEPALIVE_VALS', None, create=True):
|
|
for platform in ('linux2', 'darwin', 'other'):
|
|
with patch('sys.platform', platform):
|
|
self.assertIsNone(enable_keepalive(Mock(), 10, 5))
|
|
|
|
def test_unquote(self):
|
|
self.assertEqual(unquote('value'), 'value')
|
|
self.assertEqual(unquote('value with spaces'), "value with spaces")
|
|
self.assertEqual(unquote(
|
|
'"double quoted value"'),
|
|
'double quoted value')
|
|
self.assertEqual(unquote(
|
|
'\'single quoted value\''),
|
|
'single quoted value')
|
|
self.assertEqual(unquote(
|
|
'value "with" double quotes'),
|
|
'value "with" double quotes')
|
|
self.assertEqual(unquote(
|
|
'"value starting with" double quotes'),
|
|
'"value starting with" double quotes')
|
|
self.assertEqual(unquote(
|
|
'\'value starting with\' single quotes'),
|
|
'\'value starting with\' single quotes')
|
|
self.assertEqual(unquote(
|
|
'value with a \' single quote'),
|
|
'value with a \' single quote')
|
|
self.assertEqual(unquote(
|
|
'\'value with a \'"\'"\' single quote\''),
|
|
'value with a \' single quote')
|
|
|
|
|
|
@patch('time.sleep', Mock())
|
|
class TestRetrySleeper(unittest.TestCase):
|
|
|
|
@staticmethod
|
|
def _fail(times=1):
|
|
scope = dict(times=0)
|
|
|
|
def inner():
|
|
if scope['times'] >= times:
|
|
pass
|
|
else:
|
|
scope['times'] += 1
|
|
raise PatroniException('Failed!')
|
|
return inner
|
|
|
|
def test_reset(self):
|
|
retry = Retry(delay=0, max_tries=2)
|
|
retry(self._fail())
|
|
self.assertEqual(retry._attempts, 1)
|
|
retry.reset()
|
|
self.assertEqual(retry._attempts, 0)
|
|
|
|
def test_too_many_tries(self):
|
|
retry = Retry(delay=0)
|
|
self.assertRaises(RetryFailedError, retry, self._fail(times=999))
|
|
self.assertEqual(retry._attempts, 1)
|
|
|
|
def test_maximum_delay(self):
|
|
retry = Retry(delay=10, max_tries=100)
|
|
retry(self._fail(times=10))
|
|
self.assertTrue(retry._cur_delay < 4000, retry._cur_delay)
|
|
# gevent's sleep function is picky about the type
|
|
self.assertEqual(type(retry._cur_delay), float)
|
|
|
|
def test_deadline(self):
|
|
retry = Retry(deadline=0.0001)
|
|
self.assertRaises(RetryFailedError, retry, self._fail(times=100))
|
|
|
|
def test_copy(self):
|
|
def _sleep(t):
|
|
pass
|
|
|
|
retry = Retry(sleep_func=_sleep)
|
|
rcopy = retry.copy()
|
|
self.assertTrue(rcopy.sleep_func is _sleep)
|