diff options
author | Richard van der Hoff <github@rvanderhoff.org.uk> | 2018-01-22 20:43:56 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-22 20:43:56 +0000 |
commit | b2da272b770d9a217a356847a7305ea639b0063a (patch) | |
tree | 142f55b9b328916f1b662a90fdef3de20e3e0887 /tests | |
parent | Add federation_domain_whitelist option (#2820) (diff) | |
parent | Matthew's fixes to the unit tests (diff) | |
download | synapse-b2da272b770d9a217a356847a7305ea639b0063a.tar.xz |
Merge pull request #2821 from matrix-org/rav/matthew_test_fixes
Matthew's fixes to the unit tests
Diffstat (limited to 'tests')
-rw-r--r-- | tests/replication/slave/storage/_base.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/tests/replication/slave/storage/_base.py b/tests/replication/slave/storage/_base.py index 81063f19a1..74f104e3b8 100644 --- a/tests/replication/slave/storage/_base.py +++ b/tests/replication/slave/storage/_base.py @@ -15,6 +15,8 @@ from twisted.internet import defer, reactor from tests import unittest +import tempfile + from mock import Mock, NonCallableMock from tests.utils import setup_test_homeserver from synapse.replication.tcp.resource import ReplicationStreamProtocolFactory @@ -41,7 +43,9 @@ class BaseSlavedStoreTestCase(unittest.TestCase): self.event_id = 0 server_factory = ReplicationStreamProtocolFactory(self.hs) - listener = reactor.listenUNIX("\0xxx", server_factory) + # XXX: mktemp is unsafe and should never be used. but we're just a test. + path = tempfile.mktemp(prefix="base_slaved_store_test_case_socket") + listener = reactor.listenUNIX(path, server_factory) self.addCleanup(listener.stopListening) self.streamer = server_factory.streamer @@ -49,7 +53,7 @@ class BaseSlavedStoreTestCase(unittest.TestCase): client_factory = ReplicationClientFactory( self.hs, "client_name", self.replication_handler ) - client_connector = reactor.connectUNIX("\0xxx", client_factory) + client_connector = reactor.connectUNIX(path, client_factory) self.addCleanup(client_factory.stopTrying) self.addCleanup(client_connector.disconnect) |