0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-07-05 10:48:46 +02:00
synapse/tests/replication/slave/storage/_base.py

75 lines
2.6 KiB
Python
Raw Normal View History

# Copyright 2016 OpenMarket Ltd
2018-09-03 18:21:48 +02:00
# Copyright 2018 New Vector Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from mock import Mock, NonCallableMock
2018-07-09 08:09:20 +02:00
from synapse.replication.tcp.client import (
2018-07-09 08:09:20 +02:00
ReplicationClientFactory,
ReplicationClientHandler,
)
2018-07-09 08:09:20 +02:00
from synapse.replication.tcp.resource import ReplicationStreamProtocolFactory
from tests import unittest
from tests.server import FakeTransport
2018-09-03 18:21:48 +02:00
class BaseSlavedStoreTestCase(unittest.HomeserverTestCase):
def make_homeserver(self, reactor, clock):
2018-08-10 15:54:09 +02:00
2018-09-03 18:21:48 +02:00
hs = self.setup_test_homeserver(
"blue",
federation_client=Mock(),
ratelimiter=NonCallableMock(spec_set=["can_do_action"]),
)
2018-09-03 18:21:48 +02:00
hs.get_ratelimiter().can_do_action.return_value = (True, 0)
2018-09-03 18:21:48 +02:00
return hs
def prepare(self, reactor, clock, hs):
self.master_store = self.hs.get_datastore()
2016-04-19 18:11:44 +02:00
self.slaved_store = self.STORE_TYPE(self.hs.get_db_conn(), self.hs)
self.event_id = 0
server_factory = ReplicationStreamProtocolFactory(self.hs)
self.streamer = server_factory.streamer
2018-09-03 18:21:48 +02:00
self.replication_handler = ReplicationClientHandler(self.slaved_store)
client_factory = ReplicationClientFactory(
self.hs, "client_name", self.replication_handler
)
2018-09-03 18:21:48 +02:00
server = server_factory.buildProtocol(None)
client = client_factory.buildProtocol(None)
client.makeConnection(FakeTransport(server, reactor))
server.makeConnection(FakeTransport(client, reactor))
def replicate(self):
"""Tell the master side of replication that something has happened, and then
wait for the replication to occur.
"""
self.streamer.on_notifier_poke()
2018-09-03 18:21:48 +02:00
self.pump(0.1)
def check(self, method, args, expected_result=None):
2018-09-03 18:21:48 +02:00
master_result = self.get_success(getattr(self.master_store, method)(*args))
slaved_result = self.get_success(getattr(self.slaved_store, method)(*args))
if expected_result is not None:
self.assertEqual(master_result, expected_result)
self.assertEqual(slaved_result, expected_result)
2016-04-07 17:26:52 +02:00
self.assertEqual(master_result, slaved_result)