2014-09-03 12:29:13 -04:00
|
|
|
# Copyright 2014 OpenMarket Ltd
|
2014-08-12 22:32:18 -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.
|
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
# trial imports
|
|
|
|
from twisted.internet import defer
|
2014-09-12 13:24:53 -04:00
|
|
|
from tests import unittest
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
# python imports
|
2014-09-15 10:05:12 -04:00
|
|
|
from mock import Mock, ANY
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2014-09-24 12:25:41 -04:00
|
|
|
from ..utils import MockHttpResource, MockClock, MockKey
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
from synapse.server import HomeServer
|
|
|
|
from synapse.federation import initialize_http_replication
|
2014-12-11 12:11:06 -05:00
|
|
|
from synapse.events import FrozenEvent
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2014-12-09 18:53:07 -05:00
|
|
|
from synapse.storage.transactions import DestinationsTable
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2014-12-11 12:11:06 -05:00
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
def make_pdu(prev_pdus=[], **kwargs):
|
|
|
|
"""Provide some default fields for making a PduTuple."""
|
|
|
|
pdu_fields = {
|
|
|
|
"state_key": None,
|
2014-12-11 12:11:06 -05:00
|
|
|
"prev_events": prev_pdus,
|
2014-08-12 10:10:52 -04:00
|
|
|
}
|
|
|
|
pdu_fields.update(kwargs)
|
|
|
|
|
2014-12-11 12:11:06 -05:00
|
|
|
return FrozenEvent(pdu_fields)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
|
|
|
|
class FederationTestCase(unittest.TestCase):
|
|
|
|
def setUp(self):
|
2014-08-18 09:03:07 -04:00
|
|
|
self.mock_resource = MockHttpResource()
|
2014-08-12 10:10:52 -04:00
|
|
|
self.mock_http_client = Mock(spec=[
|
2014-08-13 11:55:53 -04:00
|
|
|
"get_json",
|
2014-08-12 10:10:52 -04:00
|
|
|
"put_json",
|
|
|
|
])
|
|
|
|
self.mock_persistence = Mock(spec=[
|
|
|
|
"prep_send_transaction",
|
|
|
|
"delivered_txn",
|
|
|
|
"get_received_txn_response",
|
|
|
|
"set_received_txn_response",
|
2014-12-09 18:53:07 -05:00
|
|
|
"get_destination_retry_timings",
|
2014-12-18 13:47:13 -05:00
|
|
|
"get_auth_chain",
|
2014-08-12 10:10:52 -04:00
|
|
|
])
|
|
|
|
self.mock_persistence.get_received_txn_response.return_value = (
|
2014-11-04 11:15:30 -05:00
|
|
|
defer.succeed(None)
|
2014-08-12 10:10:52 -04:00
|
|
|
)
|
2014-12-09 18:53:07 -05:00
|
|
|
self.mock_persistence.get_destination_retry_timings.return_value = (
|
|
|
|
defer.succeed(DestinationsTable.EntryType("", 0, 0))
|
|
|
|
)
|
2014-12-18 13:47:13 -05:00
|
|
|
self.mock_persistence.get_auth_chain.return_value = []
|
2014-09-24 12:25:41 -04:00
|
|
|
self.mock_config = Mock()
|
|
|
|
self.mock_config.signing_key = [MockKey()]
|
2014-08-12 10:10:52 -04:00
|
|
|
self.clock = MockClock()
|
2014-11-04 11:15:30 -05:00
|
|
|
hs = HomeServer(
|
|
|
|
"test",
|
|
|
|
resource_for_federation=self.mock_resource,
|
|
|
|
http_client=self.mock_http_client,
|
|
|
|
db_pool=None,
|
|
|
|
datastore=self.mock_persistence,
|
|
|
|
clock=self.clock,
|
|
|
|
config=self.mock_config,
|
|
|
|
keyring=Mock(),
|
2014-08-12 10:10:52 -04:00
|
|
|
)
|
|
|
|
self.federation = initialize_http_replication(hs)
|
|
|
|
self.distributor = hs.get_distributor()
|
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def test_get_state(self):
|
2014-11-04 11:15:30 -05:00
|
|
|
mock_handler = Mock(spec=[
|
|
|
|
"get_state_for_pdu",
|
|
|
|
])
|
|
|
|
|
|
|
|
self.federation.set_handler(mock_handler)
|
|
|
|
|
|
|
|
mock_handler.get_state_for_pdu.return_value = defer.succeed([])
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
# Empty context initially
|
2014-11-04 11:15:30 -05:00
|
|
|
(code, response) = yield self.mock_resource.trigger(
|
|
|
|
"GET",
|
|
|
|
"/_matrix/federation/v1/state/my-context/",
|
|
|
|
None
|
|
|
|
)
|
2014-08-12 10:10:52 -04:00
|
|
|
self.assertEquals(200, code)
|
|
|
|
self.assertFalse(response["pdus"])
|
|
|
|
|
|
|
|
# Now lets give the context some state
|
2014-11-04 11:15:30 -05:00
|
|
|
mock_handler.get_state_for_pdu.return_value = (
|
2014-08-12 10:10:52 -04:00
|
|
|
defer.succeed([
|
|
|
|
make_pdu(
|
2014-11-04 11:15:30 -05:00
|
|
|
event_id="the-pdu-id",
|
2014-08-12 10:10:52 -04:00
|
|
|
origin="red",
|
2014-11-19 11:38:40 -05:00
|
|
|
user_id="@a:red",
|
2014-11-04 11:15:30 -05:00
|
|
|
room_id="my-context",
|
|
|
|
type="m.topic",
|
|
|
|
origin_server_ts=123456789000,
|
2014-08-12 10:10:52 -04:00
|
|
|
depth=1,
|
2014-11-04 11:15:30 -05:00
|
|
|
content={"topic": "The topic"},
|
2014-08-12 10:10:52 -04:00
|
|
|
state_key="",
|
|
|
|
power_level=1000,
|
2014-11-04 11:15:30 -05:00
|
|
|
prev_state="last-pdu-id",
|
2014-08-12 10:10:52 -04:00
|
|
|
),
|
|
|
|
])
|
|
|
|
)
|
|
|
|
|
2014-11-04 11:15:30 -05:00
|
|
|
(code, response) = yield self.mock_resource.trigger(
|
|
|
|
"GET",
|
|
|
|
"/_matrix/federation/v1/state/my-context/",
|
|
|
|
None
|
|
|
|
)
|
2014-08-12 10:10:52 -04:00
|
|
|
self.assertEquals(200, code)
|
|
|
|
self.assertEquals(1, len(response["pdus"]))
|
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def test_get_pdu(self):
|
2014-11-04 11:15:30 -05:00
|
|
|
mock_handler = Mock(spec=[
|
|
|
|
"get_persisted_pdu",
|
|
|
|
])
|
|
|
|
|
|
|
|
self.federation.set_handler(mock_handler)
|
|
|
|
|
|
|
|
mock_handler.get_persisted_pdu.return_value = (
|
2014-08-12 10:10:52 -04:00
|
|
|
defer.succeed(None)
|
|
|
|
)
|
|
|
|
|
2014-11-04 11:15:30 -05:00
|
|
|
(code, response) = yield self.mock_resource.trigger(
|
|
|
|
"GET",
|
|
|
|
"/_matrix/federation/v1/event/abc123def456/",
|
|
|
|
None
|
|
|
|
)
|
2014-08-12 10:10:52 -04:00
|
|
|
self.assertEquals(404, code)
|
|
|
|
|
|
|
|
# Now insert such a PDU
|
2014-11-04 11:15:30 -05:00
|
|
|
mock_handler.get_persisted_pdu.return_value = (
|
2014-08-12 10:10:52 -04:00
|
|
|
defer.succeed(
|
|
|
|
make_pdu(
|
2014-11-04 11:15:30 -05:00
|
|
|
event_id="abc123def456",
|
2014-08-12 10:10:52 -04:00
|
|
|
origin="red",
|
2014-11-19 11:38:40 -05:00
|
|
|
user_id="@a:red",
|
2014-11-04 11:15:30 -05:00
|
|
|
room_id="my-context",
|
|
|
|
type="m.text",
|
|
|
|
origin_server_ts=123456789001,
|
2014-08-12 10:10:52 -04:00
|
|
|
depth=1,
|
2014-11-04 11:15:30 -05:00
|
|
|
content={"text": "Here is the message"},
|
2014-08-12 10:10:52 -04:00
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
2014-11-04 11:15:30 -05:00
|
|
|
(code, response) = yield self.mock_resource.trigger(
|
|
|
|
"GET",
|
|
|
|
"/_matrix/federation/v1/event/abc123def456/",
|
|
|
|
None
|
|
|
|
)
|
2014-08-12 10:10:52 -04:00
|
|
|
self.assertEquals(200, code)
|
|
|
|
self.assertEquals(1, len(response["pdus"]))
|
2014-11-04 11:15:30 -05:00
|
|
|
self.assertEquals("m.text", response["pdus"][0]["type"])
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def test_send_pdu(self):
|
|
|
|
self.mock_http_client.put_json.return_value = defer.succeed(
|
2014-11-04 11:15:30 -05:00
|
|
|
(200, "OK")
|
2014-08-12 10:10:52 -04:00
|
|
|
)
|
|
|
|
|
2014-12-11 12:11:06 -05:00
|
|
|
pdu = make_pdu(
|
2014-11-04 11:15:30 -05:00
|
|
|
event_id="abc123def456",
|
|
|
|
origin="red",
|
2014-11-19 11:38:40 -05:00
|
|
|
user_id="@a:red",
|
2014-11-04 11:15:30 -05:00
|
|
|
room_id="my-context",
|
|
|
|
type="m.text",
|
|
|
|
origin_server_ts=123456789001,
|
|
|
|
depth=1,
|
|
|
|
content={"text": "Here is the message"},
|
2014-08-12 10:10:52 -04:00
|
|
|
)
|
|
|
|
|
2014-12-11 12:11:06 -05:00
|
|
|
yield self.federation.send_pdu(pdu, ["remote"])
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
self.mock_http_client.put_json.assert_called_with(
|
2014-11-04 11:15:30 -05:00
|
|
|
"remote",
|
|
|
|
path="/_matrix/federation/v1/send/1000000/",
|
|
|
|
data={
|
|
|
|
"origin_server_ts": 1000000,
|
|
|
|
"origin": "test",
|
|
|
|
"pdus": [
|
2014-11-14 16:25:02 -05:00
|
|
|
pdu.get_pdu_json(),
|
2014-11-04 11:15:30 -05:00
|
|
|
],
|
|
|
|
'pdu_failures': [],
|
|
|
|
},
|
|
|
|
json_data_callback=ANY,
|
2014-08-12 10:10:52 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def test_send_edu(self):
|
|
|
|
self.mock_http_client.put_json.return_value = defer.succeed(
|
2014-11-04 11:15:30 -05:00
|
|
|
(200, "OK")
|
2014-08-12 10:10:52 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
yield self.federation.send_edu(
|
2014-11-04 11:15:30 -05:00
|
|
|
destination="remote",
|
|
|
|
edu_type="m.test",
|
|
|
|
content={"testing": "content here"},
|
2014-08-12 10:10:52 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
# MockClock ensures we can guess these timestamps
|
|
|
|
self.mock_http_client.put_json.assert_called_with(
|
2014-11-04 11:15:30 -05:00
|
|
|
"remote",
|
|
|
|
path="/_matrix/federation/v1/send/1000000/",
|
|
|
|
data={
|
|
|
|
"origin": "test",
|
|
|
|
"origin_server_ts": 1000000,
|
|
|
|
"pdus": [],
|
|
|
|
"edus": [
|
|
|
|
{
|
|
|
|
"edu_type": "m.test",
|
|
|
|
"content": {"testing": "content here"},
|
|
|
|
}
|
|
|
|
],
|
|
|
|
'pdu_failures': [],
|
|
|
|
},
|
|
|
|
json_data_callback=ANY,
|
2014-09-15 10:05:12 -04:00
|
|
|
)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def test_recv_edu(self):
|
|
|
|
recv_observer = Mock()
|
|
|
|
recv_observer.return_value = defer.succeed(())
|
|
|
|
|
|
|
|
self.federation.register_edu_handler("m.test", recv_observer)
|
|
|
|
|
2014-11-04 11:15:30 -05:00
|
|
|
yield self.mock_resource.trigger(
|
|
|
|
"PUT",
|
|
|
|
"/_matrix/federation/v1/send/1001000/",
|
|
|
|
"""{
|
|
|
|
"origin": "remote",
|
|
|
|
"origin_server_ts": 1001000,
|
|
|
|
"pdus": [],
|
|
|
|
"edus": [
|
|
|
|
{
|
|
|
|
"origin": "remote",
|
|
|
|
"destination": "test",
|
|
|
|
"edu_type": "m.test",
|
|
|
|
"content": {"testing": "reply here"}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}"""
|
|
|
|
)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
recv_observer.assert_called_with(
|
2014-11-04 11:15:30 -05:00
|
|
|
"remote", {"testing": "reply here"}
|
2014-08-12 10:10:52 -04:00
|
|
|
)
|
2014-08-13 11:55:53 -04:00
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def test_send_query(self):
|
|
|
|
self.mock_http_client.get_json.return_value = defer.succeed(
|
|
|
|
{"your": "response"}
|
|
|
|
)
|
|
|
|
|
|
|
|
response = yield self.federation.make_query(
|
|
|
|
destination="remote",
|
|
|
|
query_type="a-question",
|
2014-10-02 09:09:15 -04:00
|
|
|
args={"one": "1", "two": "2"},
|
2014-08-13 11:55:53 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
self.assertEquals({"your": "response"}, response)
|
|
|
|
|
|
|
|
self.mock_http_client.get_json.assert_called_with(
|
|
|
|
destination="remote",
|
2014-08-31 09:51:37 -04:00
|
|
|
path="/_matrix/federation/v1/query/a-question",
|
2014-10-02 09:09:15 -04:00
|
|
|
args={"one": "1", "two": "2"},
|
|
|
|
retry_on_dns_fail=True,
|
2014-08-13 11:55:53 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def test_recv_query(self):
|
|
|
|
recv_handler = Mock()
|
|
|
|
recv_handler.return_value = defer.succeed({"another": "response"})
|
|
|
|
|
|
|
|
self.federation.register_query_handler("a-question", recv_handler)
|
|
|
|
|
2014-11-04 11:15:30 -05:00
|
|
|
code, response = yield self.mock_resource.trigger(
|
|
|
|
"GET",
|
|
|
|
"/_matrix/federation/v1/query/a-question?three=3&four=4",
|
|
|
|
None
|
|
|
|
)
|
2014-08-13 11:55:53 -04:00
|
|
|
|
|
|
|
self.assertEquals(200, code)
|
|
|
|
self.assertEquals({"another": "response"}, response)
|
|
|
|
|
|
|
|
recv_handler.assert_called_with(
|
|
|
|
{"three": "3", "four": "4"}
|
|
|
|
)
|