summaryrefslogtreecommitdiff
path: root/kazoo/tests/test_utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'kazoo/tests/test_utils.py')
-rw-r--r--kazoo/tests/test_utils.py38
1 files changed, 20 insertions, 18 deletions
diff --git a/kazoo/tests/test_utils.py b/kazoo/tests/test_utils.py
index 7e21a40..1a9f025 100644
--- a/kazoo/tests/test_utils.py
+++ b/kazoo/tests/test_utils.py
@@ -16,38 +16,40 @@ class TestCreateTCPConnection(unittest.TestCase):
from kazoo.handlers import utils
from kazoo.handlers.utils import create_tcp_connection, socket, time
- with patch.object(socket, 'create_connection') as create_connection:
- with patch.object(utils, '_set_default_tcpsock_options'):
+ with patch.object(socket, "create_connection") as create_connection:
+ with patch.object(utils, "_set_default_tcpsock_options"):
# Ensure a gap between calls to time.time() does not result in
# create_connection being called with a negative timeout
# argument.
- with patch.object(time, 'time', side_effect=range(10)):
- create_tcp_connection(socket, ('127.0.0.1', 2181),
- timeout=1.5)
+ with patch.object(time, "time", side_effect=range(10)):
+ create_tcp_connection(
+ socket, ("127.0.0.1", 2181), timeout=1.5
+ )
for call_args in create_connection.call_args_list:
timeout = call_args[0][1]
- assert timeout >= 0, 'socket timeout must be nonnegative'
+ assert timeout >= 0, "socket timeout must be nonnegative"
def test_timeout_arg_eventlet(self):
if not EVENTLET_HANDLER_AVAILABLE:
- pytest.skip('eventlet handler not available.')
+ pytest.skip("eventlet handler not available.")
from kazoo.handlers import utils
from kazoo.handlers.utils import create_tcp_connection, time
- with patch.object(socket, 'create_connection') as create_connection:
- with patch.object(utils, '_set_default_tcpsock_options'):
+ with patch.object(socket, "create_connection") as create_connection:
+ with patch.object(utils, "_set_default_tcpsock_options"):
# Ensure a gap between calls to time.time() does not result in
# create_connection being called with a negative timeout
# argument.
- with patch.object(time, 'time', side_effect=range(10)):
- create_tcp_connection(socket, ('127.0.0.1', 2181),
- timeout=1.5)
+ with patch.object(time, "time", side_effect=range(10)):
+ create_tcp_connection(
+ socket, ("127.0.0.1", 2181), timeout=1.5
+ )
for call_args in create_connection.call_args_list:
timeout = call_args[0][1]
- assert timeout >= 0, 'socket timeout must be nonnegative'
+ assert timeout >= 0, "socket timeout must be nonnegative"
def test_slow_connect(self):
# Currently, create_tcp_connection will raise a socket timeout if it
@@ -57,15 +59,15 @@ class TestCreateTCPConnection(unittest.TestCase):
from kazoo.handlers.utils import create_tcp_connection, socket, time
# Simulate a second passing between calls to check the current time.
- with patch.object(time, 'time', side_effect=range(10)):
+ with patch.object(time, "time", side_effect=range(10)):
with pytest.raises(socket.error):
- create_tcp_connection(socket, ('127.0.0.1', 2181), timeout=0.5)
+ create_tcp_connection(socket, ("127.0.0.1", 2181), timeout=0.5)
def test_negative_timeout(self):
from kazoo.handlers.utils import create_tcp_connection, socket
with pytest.raises(socket.error):
- create_tcp_connection(socket, ('127.0.0.1', 2181), timeout=-1)
+ create_tcp_connection(socket, ("127.0.0.1", 2181), timeout=-1)
def test_zero_timeout(self):
# Rather than pass '0' through as a timeout to
@@ -75,6 +77,6 @@ class TestCreateTCPConnection(unittest.TestCase):
from kazoo.handlers.utils import create_tcp_connection, socket, time
# Simulate no time passing between calls to check the current time.
- with patch.object(time, 'time', return_value=time.time()):
+ with patch.object(time, "time", return_value=time.time()):
with pytest.raises(socket.error):
- create_tcp_connection(socket, ('127.0.0.1', 2181), timeout=0)
+ create_tcp_connection(socket, ("127.0.0.1", 2181), timeout=0)