summaryrefslogtreecommitdiff
path: root/tests/conftest.py
diff options
context:
space:
mode:
authorAndy McCurdy <andy@andymccurdy.com>2020-08-15 17:23:52 -0700
committerAndy McCurdy <andy@andymccurdy.com>2020-08-15 17:23:52 -0700
commit997e205beba545409aa697a13e164d687ce85509 (patch)
tree4cbf09169c0f7bb72bf828bea8432fa4e3c0b4d8 /tests/conftest.py
parente80aa3d951226e501c9e7c95a25731d1d663b4aa (diff)
downloadredis-py-acl-log.tar.gz
Make _get_client more configurable with kwargs that override url optionsacl-log
This allows tests to create clients with specific configurations based on the specified --redis-url.
Diffstat (limited to 'tests/conftest.py')
-rw-r--r--tests/conftest.py29
1 files changed, 21 insertions, 8 deletions
diff --git a/tests/conftest.py b/tests/conftest.py
index 26893db..cd4d489 100644
--- a/tests/conftest.py
+++ b/tests/conftest.py
@@ -2,6 +2,7 @@ import pytest
import random
import redis
from distutils.version import StrictVersion
+from redis.connection import parse_url
from unittest.mock import Mock
from urllib.parse import urlparse
@@ -60,19 +61,31 @@ def skip_unless_arch_bits(arch_bits):
reason="server is not {}-bit".format(arch_bits))
-def _get_client(cls, request, single_connection_client=True, **kwargs):
+def _get_client(cls, request, single_connection_client=True, flushdb=True,
+ **kwargs):
+ """
+ Helper for fixtures or tests that need a Redis client
+
+ Uses the "--redis-url" command line argument for connection info. Unlike
+ ConnectionPool.from_url, keyword arguments to this function override
+ values specified in the URL.
+ """
redis_url = request.config.getoption("--redis-url")
- client = cls.from_url(redis_url, **kwargs)
+ url_options = parse_url(redis_url)
+ url_options.update(kwargs)
+ pool = redis.ConnectionPool(**url_options)
+ client = cls(connection_pool=pool)
if single_connection_client:
client = client.client()
if request:
def teardown():
- try:
- client.flushdb()
- except redis.ConnectionError:
- # handle cases where a test disconnected a client
- # just manually retry the flushdb
- client.flushdb()
+ if flushdb:
+ try:
+ client.flushdb()
+ except redis.ConnectionError:
+ # handle cases where a test disconnected a client
+ # just manually retry the flushdb
+ client.flushdb()
client.close()
client.connection_pool.disconnect()
request.addfinalizer(teardown)