2016-04-06 09:12:51 -04:00
|
|
|
# Copyright 2016 OpenMarket Ltd
|
2018-09-03 12:21:48 -04:00
|
|
|
# Copyright 2018 New Vector Ltd
|
2016-04-06 09:12:51 -04:00
|
|
|
#
|
|
|
|
# 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.
|
2018-01-22 11:45:43 -05:00
|
|
|
|
2016-04-06 09:12:51 -04:00
|
|
|
from mock import Mock, NonCallableMock
|
2018-07-09 02:09:20 -04:00
|
|
|
|
2017-03-27 11:32:07 -04:00
|
|
|
from synapse.replication.tcp.client import (
|
2018-07-09 02:09:20 -04:00
|
|
|
ReplicationClientFactory,
|
|
|
|
ReplicationClientHandler,
|
2017-03-27 11:32:07 -04:00
|
|
|
)
|
2018-07-09 02:09:20 -04:00
|
|
|
from synapse.replication.tcp.resource import ReplicationStreamProtocolFactory
|
|
|
|
|
|
|
|
from tests import unittest
|
2018-09-18 13:17:15 -04:00
|
|
|
from tests.server import FakeTransport
|
2016-04-06 09:12:51 -04:00
|
|
|
|
|
|
|
|
2018-09-03 12:21:48 -04:00
|
|
|
class BaseSlavedStoreTestCase(unittest.HomeserverTestCase):
|
|
|
|
def make_homeserver(self, reactor, clock):
|
2018-08-10 09:54:09 -04:00
|
|
|
|
2018-09-03 12:21:48 -04:00
|
|
|
hs = self.setup_test_homeserver(
|
2016-04-06 09:12:51 -04:00
|
|
|
"blue",
|
2018-03-13 09:26:52 -04:00
|
|
|
federation_client=Mock(),
|
2018-08-10 09:54:09 -04:00
|
|
|
ratelimiter=NonCallableMock(spec_set=["send_message"]),
|
2016-04-06 09:12:51 -04:00
|
|
|
)
|
2018-09-03 12:21:48 -04:00
|
|
|
|
|
|
|
hs.get_ratelimiter().send_message.return_value = (True, 0)
|
|
|
|
|
|
|
|
return hs
|
|
|
|
|
|
|
|
def prepare(self, reactor, clock, hs):
|
2016-04-06 09:12:51 -04:00
|
|
|
|
|
|
|
self.master_store = self.hs.get_datastore()
|
2016-04-19 12:11:44 -04:00
|
|
|
self.slaved_store = self.STORE_TYPE(self.hs.get_db_conn(), self.hs)
|
2016-04-06 09:12:51 -04:00
|
|
|
self.event_id = 0
|
|
|
|
|
2017-03-27 11:32:07 -04:00
|
|
|
server_factory = ReplicationStreamProtocolFactory(self.hs)
|
|
|
|
self.streamer = server_factory.streamer
|
|
|
|
|
2018-09-03 12:21:48 -04:00
|
|
|
self.replication_handler = ReplicationClientHandler(self.slaved_store)
|
2017-03-27 11:32:07 -04:00
|
|
|
client_factory = ReplicationClientFactory(
|
|
|
|
self.hs, "client_name", self.replication_handler
|
|
|
|
)
|
2018-09-03 12:21:48 -04:00
|
|
|
|
|
|
|
server = server_factory.buildProtocol(None)
|
|
|
|
client = client_factory.buildProtocol(None)
|
|
|
|
|
2018-09-18 13:17:15 -04:00
|
|
|
client.makeConnection(FakeTransport(server, reactor))
|
|
|
|
server.makeConnection(FakeTransport(client, reactor))
|
2017-03-27 11:32:07 -04:00
|
|
|
|
2016-04-06 09:12:51 -04:00
|
|
|
def replicate(self):
|
2018-07-25 05:30:36 -04:00
|
|
|
"""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 12:21:48 -04:00
|
|
|
self.pump(0.1)
|
2016-04-06 09:12:51 -04:00
|
|
|
|
|
|
|
def check(self, method, args, expected_result=None):
|
2018-09-03 12:21:48 -04:00
|
|
|
master_result = self.get_success(getattr(self.master_store, method)(*args))
|
|
|
|
slaved_result = self.get_success(getattr(self.slaved_store, method)(*args))
|
2016-04-06 09:12:51 -04:00
|
|
|
if expected_result is not None:
|
|
|
|
self.assertEqual(master_result, expected_result)
|
|
|
|
self.assertEqual(slaved_result, expected_result)
|
2016-04-07 11:26:52 -04:00
|
|
|
self.assertEqual(master_result, slaved_result)
|