mirror of https://github.com/peter4431/rq.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.6 KiB
Python
48 lines
1.6 KiB
Python
from redis import ConnectionPool, Redis, UnixDomainSocketConnection
|
|
|
|
from rq import Connection, Queue
|
|
from rq.connections import parse_connection
|
|
from tests import RQTestCase, find_empty_redis_database
|
|
from tests.fixtures import do_nothing
|
|
|
|
|
|
def new_connection():
|
|
return find_empty_redis_database()
|
|
|
|
|
|
class TestConnectionInheritance(RQTestCase):
|
|
def test_connection_detection(self):
|
|
"""Automatic detection of the connection."""
|
|
q = Queue()
|
|
self.assertEqual(q.connection, self.testconn)
|
|
|
|
def test_connection_stacking(self):
|
|
"""Connection stacking."""
|
|
conn1 = Redis(db=4)
|
|
conn2 = Redis(db=5)
|
|
|
|
with Connection(conn1):
|
|
q1 = Queue()
|
|
with Connection(conn2):
|
|
q2 = Queue()
|
|
self.assertNotEqual(q1.connection, q2.connection)
|
|
|
|
def test_connection_pass_thru(self):
|
|
"""Connection passed through from queues to jobs."""
|
|
q1 = Queue(connection=self.testconn)
|
|
with Connection(new_connection()):
|
|
q2 = Queue()
|
|
job1 = q1.enqueue(do_nothing)
|
|
job2 = q2.enqueue(do_nothing)
|
|
self.assertEqual(q1.connection, job1.connection)
|
|
self.assertEqual(q2.connection, job2.connection)
|
|
|
|
def test_parse_connection(self):
|
|
"""Test parsing `ssl` and UnixDomainSocketConnection"""
|
|
_, _, kwargs = parse_connection(Redis(ssl=True))
|
|
self.assertTrue(kwargs['ssl'])
|
|
path = '/tmp/redis.sock'
|
|
pool = ConnectionPool(connection_class=UnixDomainSocketConnection, path=path)
|
|
_, _, kwargs = parse_connection(Redis(connection_pool=pool))
|
|
self.assertTrue(kwargs['unix_socket_path'], path)
|