12
12
# See the License for the specific language governing permissions and
13
13
# limitations under the License.
14
14
15
- from synapse .replication .tcp .redis import RedisDirectTcpReplicationClientFactory
15
+ try :
16
+ import txredisapi
17
+ except ImportError :
18
+ txredisapi = None
16
19
17
20
from tests .replication ._base import BaseMultiWorkerStreamTestCase
18
21
from tests .unittest import HomeserverTestCase
38
41
39
42
40
43
class RedisTestCase (HomeserverTestCase ):
44
+ if txredisapi is None :
45
+ skip = "Redis extras not installed"
46
+
41
47
def test_subscribed_to_enough_redis_channels (self ) -> None :
48
+ from synapse .replication .tcp .redis import RedisDirectTcpReplicationClientFactory
49
+
42
50
# The default main process is subscribed to USER_IP and all RDATA channels.
43
51
self .assertCountEqual (
44
52
RedisDirectTcpReplicationClientFactory .channels_to_subscribe_to_for_config (
@@ -52,7 +60,12 @@ def test_subscribed_to_enough_redis_channels(self) -> None:
52
60
53
61
54
62
class RedisWorkerTestCase (BaseMultiWorkerStreamTestCase ):
63
+ if txredisapi is None :
64
+ skip = "Redis extras not installed"
65
+
55
66
def test_background_worker_subscribed_to_user_ip (self ) -> None :
67
+ from synapse .replication .tcp .redis import RedisDirectTcpReplicationClientFactory
68
+
56
69
# The default main process is subscribed to USER_IP and all RDATA channels.
57
70
worker1 = self .make_worker_hs (
58
71
"synapse.app.generic_worker" ,
@@ -69,6 +82,8 @@ def test_background_worker_subscribed_to_user_ip(self) -> None:
69
82
)
70
83
71
84
def test_non_background_worker_not_subscribed_to_user_ip (self ) -> None :
85
+ from synapse .replication .tcp .redis import RedisDirectTcpReplicationClientFactory
86
+
72
87
# The default main process is subscribed to USER_IP and all RDATA channels.
73
88
worker2 = self .make_worker_hs (
74
89
"synapse.app.generic_worker" ,
0 commit comments