summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAndy McCurdy <andy@andymccurdy.com>2019-02-11 23:33:21 -0800
committerAndy McCurdy <andy@andymccurdy.com>2019-02-11 23:33:21 -0800
commit363c05de10dd5f93af69ed768fbface316a30be9 (patch)
tree920ceb94db4daeb621e4d41a9bdc54fc122a3a34 /tests
parent78c181b13d4f3b09e1257d633b65bd81df6be59c (diff)
downloadredis-py-363c05de10dd5f93af69ed768fbface316a30be9.tar.gz
test all selectors via pytest parameterizationhealty_connections
Diffstat (limited to 'tests')
-rw-r--r--tests/test_connection_pool.py48
-rw-r--r--tests/test_selector.py122
2 files changed, 122 insertions, 48 deletions
diff --git a/tests/test_connection_pool.py b/tests/test_connection_pool.py
index 0f5ad72..1f5797b 100644
--- a/tests/test_connection_pool.py
+++ b/tests/test_connection_pool.py
@@ -5,7 +5,6 @@ import time
import re
from threading import Thread
-from redis.client import parse_client_list
from redis.connection import ssl_available, to_bool
from .conftest import skip_if_server_version_lt
@@ -76,39 +75,6 @@ class TestConnectionPool(object):
expected = 'ConnectionPool<UnixDomainSocketConnection<path=/abc,db=1>>'
assert repr(pool) == expected
- def test_pool_provides_healthy_connections(self):
- pool = self.get_pool(connection_class=redis.Connection,
- max_connections=2)
- conn1 = pool.get_connection('_')
- conn2 = pool.get_connection('_')
-
- # set a unique name on the connection we'll be testing
- conn1._same_connection_value = 'killed-client'
- conn1.send_command('client', 'setname', 'redis-py-1')
- assert conn1.read_response() == b'OK'
- pool.release(conn1)
-
- # find the well named client in the client list
- conn2.send_command('client', 'list')
- client_list = parse_client_list(conn2.read_response())
- for client in client_list:
- if client['name'] == 'redis-py-1':
- break
- else:
- assert False, 'Client redis-py-1 not found in client list'
-
- # kill the well named client
- conn2.send_command('client', 'kill', client['addr'])
- assert conn2.read_response() == b'OK'
-
- # our connection should have been disconnected, but a quality
- # connection pool would know this and only provide a healthy
- # connection.
- conn = pool.get_connection('_')
- assert conn == conn1
- conn.send_command('ping')
- assert conn.read_response() == b'PONG'
-
class TestBlockingConnectionPool(object):
def get_pool(self, connection_kwargs=None, max_connections=10, timeout=20):
@@ -541,17 +507,3 @@ class TestConnection(object):
'UnixDomainSocketConnection',
'path=/path/to/socket,db=0',
)
-
- def test_can_read(self, r):
- connection = r.connection_pool.get_connection('ping')
- assert not connection.can_read()
- connection.send_command('ping')
- # wait for the server to respond
- wait_until = time.time() + 2
- while time.time() < wait_until:
- if connection.can_read():
- break
- time.sleep(0.01)
- assert connection.can_read()
- assert connection.read_response() == b'PONG'
- assert not connection.can_read()
diff --git a/tests/test_selector.py b/tests/test_selector.py
new file mode 100644
index 0000000..07bd6dc
--- /dev/null
+++ b/tests/test_selector.py
@@ -0,0 +1,122 @@
+import pytest
+import time
+from redis import selector
+
+_SELECTORS = (
+ 'SelectSelector',
+ 'PollSelector',
+)
+
+
+@pytest.mark.parametrize('selector_name', _SELECTORS)
+class TestSelector(object):
+
+ @pytest.fixture()
+ def selector_patch(self, selector_name, request):
+ "A fixture to patch the DefaultSelector with each selector"
+ if not hasattr(selector, selector_name):
+ pytest.skip('selector %s unavailable' % selector_name)
+ default_selector = selector._DEFAULT_SELECTOR
+
+ def revert_selector():
+ selector._DEFAULT_SELECTOR = default_selector
+ request.addfinalizer(revert_selector)
+
+ selector._DEFAULT_SELECTOR = getattr(selector, selector_name)
+
+ def kill_connection(self, connection, r):
+ "Helper that tells the redis server to kill `connection`"
+ # set a name for the connection so that we can identify and kill it
+ connection.send_command('client', 'setname', 'redis-py-1')
+ assert connection.read_response() == b'OK'
+
+ # find the client based on its name and kill it
+ for client in r.client_list():
+ if client['name'] == 'redis-py-1':
+ assert r.client_kill(client['addr'])
+ break
+ else:
+ assert False, 'Client redis-py-1 not found in client list'
+
+ def test_can_read(self, selector_patch, r):
+ c = r.connection_pool.get_connection('_')
+
+ # a fresh connection should not be readable
+ assert not c.can_read()
+
+ c.send_command('PING')
+ # a connection should be readable when a response is available
+ # note that we supply a timeout here to make sure the server has
+ # a chance to respond
+ assert c.can_read(1.0)
+
+ assert c.read_response() == b'PONG'
+
+ # once the response is read, the connection is no longer readable
+ assert not c.can_read()
+
+ def test_is_ready_for_command(self, selector_patch, r):
+ c = r.connection_pool.get_connection('_')
+
+ # a fresh connection should be ready for a new command
+ assert c.is_ready_for_command()
+
+ c.send_command('PING')
+ # once the server replies with a response, the selector should report
+ # that the connection is no longer ready since there is data that
+ # can be read. note that we need to wait for the server to respond
+ wait_until = time.time() + 2
+ while time.time() < wait_until:
+ if not c.is_ready_for_command():
+ break
+ time.sleep(0.01)
+
+ assert not c.is_ready_for_command()
+
+ assert c.read_response() == b'PONG'
+
+ # once the response is read, the connection should be ready again
+ assert c.is_ready_for_command()
+
+ def test_killed_connection_no_longer_ready(self, selector_patch, r):
+ "A connection that becomes disconnected is no longer ready"
+ c = r.connection_pool.get_connection('_')
+ # the connection should start as ready
+ assert c.is_ready_for_command()
+
+ self.kill_connection(c, r)
+
+ # the selector should immediately report that the socket is no
+ # longer ready
+ assert not c.is_ready_for_command()
+
+ def test_pool_restores_killed_connection(self, selector_patch, r2):
+ """
+ The ConnectionPool only returns healthy connecdtions, even if the
+ connection was killed while idle in the pool.
+ """
+ # r2 provides two separate clients/connection pools
+ r = r2[0]
+ c = r.connection_pool.get_connection('_')
+ c._test_client = True
+ # the connection should start as ready
+ assert c.is_ready_for_command()
+
+ # release the connection back to the pool
+ r.connection_pool.release(c)
+
+ # kill the connection that is now idle in the pool
+ # use the second redis client/pool instance run the kill command
+ # such that it doesn't manipulate the primary connection pool
+ self.kill_connection(c, r2[1])
+
+ assert not c.is_ready_for_command()
+
+ # retrieving the connection from the pool should provide us with
+ # the same connection we were previously using and it should now
+ # be ready for a command
+ c2 = r.connection_pool.get_connection('_')
+ assert c2 == c
+ assert c2._test_client is True
+
+ assert c.is_ready_for_command()