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 (
|
2020-04-22 08:07:41 -04:00
|
|
|
DirectTcpReplicationClientFactory,
|
2020-04-06 04:58:42 -04:00
|
|
|
ReplicationDataHandler,
|
2017-03-27 11:32:07 -04:00
|
|
|
)
|
2020-04-06 04:58:42 -04:00
|
|
|
from synapse.replication.tcp.handler import ReplicationCommandHandler
|
2018-07-09 02:09:20 -04:00
|
|
|
from synapse.replication.tcp.resource import ReplicationStreamProtocolFactory
|
2019-12-18 05:45:12 -05:00
|
|
|
from synapse.storage.database import make_conn
|
2018-07-09 02:09:20 -04:00
|
|
|
|
|
|
|
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(),
|
2019-03-05 09:25:33 -05:00
|
|
|
ratelimiter=NonCallableMock(spec_set=["can_do_action"]),
|
2016-04-06 09:12:51 -04:00
|
|
|
)
|
2018-09-03 12:21:48 -04:00
|
|
|
|
2019-03-05 09:25:33 -05:00
|
|
|
hs.get_ratelimiter().can_do_action.return_value = (True, 0)
|
2018-09-03 12:21:48 -04:00
|
|
|
|
|
|
|
return hs
|
|
|
|
|
|
|
|
def prepare(self, reactor, clock, hs):
|
2016-04-06 09:12:51 -04:00
|
|
|
|
2019-12-18 05:45:12 -05:00
|
|
|
db_config = hs.config.database.get_single_database()
|
2016-04-06 09:12:51 -04:00
|
|
|
self.master_store = self.hs.get_datastore()
|
2019-10-23 07:02:36 -04:00
|
|
|
self.storage = hs.get_storage()
|
2019-12-18 05:45:12 -05:00
|
|
|
database = hs.get_datastores().databases[0]
|
2019-12-06 11:02:50 -05:00
|
|
|
self.slaved_store = self.STORE_TYPE(
|
2019-12-18 05:45:12 -05:00
|
|
|
database, make_conn(db_config, database.engine), self.hs
|
2019-12-06 11:02:50 -05:00
|
|
|
)
|
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)
|
2020-04-06 04:58:42 -04:00
|
|
|
self.streamer = hs.get_replication_streamer()
|
2017-03-27 11:32:07 -04:00
|
|
|
|
2020-04-06 04:58:42 -04:00
|
|
|
# We now do some gut wrenching so that we have a client that is based
|
|
|
|
# off of the slave store rather than the main store.
|
|
|
|
self.replication_handler = ReplicationCommandHandler(self.hs)
|
2020-04-29 11:23:08 -04:00
|
|
|
self.replication_handler._instance_name = "worker"
|
2020-04-06 04:58:42 -04:00
|
|
|
self.replication_handler._replication_data_handler = ReplicationDataHandler(
|
|
|
|
self.slaved_store
|
|
|
|
)
|
2019-11-27 16:54:07 -05:00
|
|
|
|
2020-04-22 08:07:41 -04:00
|
|
|
client_factory = DirectTcpReplicationClientFactory(
|
2017-03-27 11:32:07 -04:00
|
|
|
self.hs, "client_name", self.replication_handler
|
|
|
|
)
|
2020-04-06 04:58:42 -04:00
|
|
|
client_factory.handler = 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))
|
2019-04-02 07:42:39 -04:00
|
|
|
|
|
|
|
self.server_to_client_transport = FakeTransport(client, reactor)
|
|
|
|
server.makeConnection(self.server_to_client_transport)
|
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:
|
2019-04-02 07:42:39 -04:00
|
|
|
self.assertEqual(
|
|
|
|
master_result,
|
|
|
|
expected_result,
|
2019-05-10 01:12:11 -04:00
|
|
|
"Expected master result to be %r but was %r"
|
|
|
|
% (expected_result, master_result),
|
2019-04-02 07:42:39 -04:00
|
|
|
)
|
|
|
|
self.assertEqual(
|
|
|
|
slaved_result,
|
|
|
|
expected_result,
|
2019-05-10 01:12:11 -04:00
|
|
|
"Expected slave result to be %r but was %r"
|
|
|
|
% (expected_result, slaved_result),
|
2019-04-02 07:42:39 -04:00
|
|
|
)
|
|
|
|
self.assertEqual(
|
|
|
|
master_result,
|
|
|
|
slaved_result,
|
2019-05-10 01:12:11 -04:00
|
|
|
"Slave result %r does not match master result %r"
|
|
|
|
% (slaved_result, master_result),
|
2019-04-02 07:42:39 -04:00
|
|
|
)
|