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
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
from synapse.api.events.room import (
|
2014-11-04 11:51:59 -05:00
|
|
|
MessageEvent,
|
2014-08-12 10:10:52 -04:00
|
|
|
)
|
2014-11-14 16:25:02 -05:00
|
|
|
|
|
|
|
from synapse.api.events import SynapseEvent
|
2014-08-12 10:10:52 -04:00
|
|
|
from synapse.handlers.federation import FederationHandler
|
|
|
|
from synapse.server import HomeServer
|
|
|
|
|
2014-11-14 11:45:39 -05:00
|
|
|
from mock import NonCallableMock, ANY, Mock
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2014-11-04 11:51:59 -05:00
|
|
|
from ..utils import MockKey
|
2014-08-28 10:32:30 -04:00
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
class FederationTestCase(unittest.TestCase):
|
|
|
|
|
|
|
|
def setUp(self):
|
2014-09-24 12:25:41 -04:00
|
|
|
|
|
|
|
self.mock_config = NonCallableMock()
|
|
|
|
self.mock_config.signing_key = [MockKey()]
|
|
|
|
|
2014-11-04 11:51:59 -05:00
|
|
|
self.state_handler = NonCallableMock(spec_set=[
|
2014-11-11 11:58:53 -05:00
|
|
|
"annotate_event_with_state",
|
2014-11-04 11:51:59 -05:00
|
|
|
])
|
|
|
|
|
|
|
|
self.auth = NonCallableMock(spec_set=[
|
|
|
|
"check",
|
2014-11-27 11:02:26 -05:00
|
|
|
"check_host_in_room",
|
2014-11-04 11:51:59 -05:00
|
|
|
])
|
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
self.hostname = "test"
|
|
|
|
hs = HomeServer(
|
|
|
|
self.hostname,
|
|
|
|
db_pool=None,
|
|
|
|
datastore=NonCallableMock(spec_set=[
|
|
|
|
"persist_event",
|
|
|
|
"store_room",
|
2014-08-20 09:59:43 -04:00
|
|
|
"get_room",
|
2014-12-09 18:53:07 -05:00
|
|
|
"get_destination_retry_timings",
|
|
|
|
"set_destination_retry_timings",
|
2014-08-12 10:10:52 -04:00
|
|
|
]),
|
2014-08-14 05:18:54 -04:00
|
|
|
resource_for_federation=NonCallableMock(),
|
2014-08-12 10:10:52 -04:00
|
|
|
http_client=NonCallableMock(spec_set=[]),
|
|
|
|
notifier=NonCallableMock(spec_set=["on_new_room_event"]),
|
|
|
|
handlers=NonCallableMock(spec_set=[
|
|
|
|
"room_member_handler",
|
|
|
|
"federation_handler",
|
|
|
|
]),
|
2014-09-24 12:25:41 -04:00
|
|
|
config=self.mock_config,
|
2014-11-04 11:51:59 -05:00
|
|
|
auth=self.auth,
|
|
|
|
state_handler=self.state_handler,
|
2014-11-14 11:45:39 -05:00
|
|
|
keyring=Mock(),
|
2014-08-12 10:10:52 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
self.datastore = hs.get_datastore()
|
|
|
|
self.handlers = hs.get_handlers()
|
|
|
|
self.notifier = hs.get_notifier()
|
|
|
|
self.hs = hs
|
|
|
|
|
|
|
|
self.handlers.federation_handler = FederationHandler(self.hs)
|
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def test_msg(self):
|
2014-11-14 16:25:02 -05:00
|
|
|
pdu = SynapseEvent(
|
2014-11-04 11:51:59 -05:00
|
|
|
type=MessageEvent.TYPE,
|
|
|
|
room_id="foo",
|
2014-08-12 10:10:52 -04:00
|
|
|
content={"msgtype": u"fooo"},
|
2014-10-17 12:12:25 -04:00
|
|
|
origin_server_ts=0,
|
2014-11-04 11:51:59 -05:00
|
|
|
event_id="$a:b",
|
2014-11-19 11:38:40 -05:00
|
|
|
user_id="@a:b",
|
2014-08-27 08:34:28 -04:00
|
|
|
origin="b",
|
2014-11-25 06:31:18 -05:00
|
|
|
auth_events=[],
|
2014-11-19 11:38:40 -05:00
|
|
|
hashes={"sha256":"AcLrgtUIqqwaGoHhrEvYG1YLDIsVPYJdSRGhkp3jJp8"},
|
2014-08-12 10:10:52 -04:00
|
|
|
)
|
|
|
|
|
2014-11-04 11:51:59 -05:00
|
|
|
self.datastore.persist_event.return_value = defer.succeed(None)
|
2014-08-20 09:59:43 -04:00
|
|
|
self.datastore.get_room.return_value = defer.succeed(True)
|
2014-11-27 11:02:26 -05:00
|
|
|
self.auth.check_host_in_room.return_value = defer.succeed(True)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2014-11-25 06:31:18 -05:00
|
|
|
def annotate(ev, old_state=None):
|
|
|
|
ev.old_state_events = []
|
|
|
|
return defer.succeed(False)
|
|
|
|
self.state_handler.annotate_event_with_state.side_effect = annotate
|
2014-11-04 11:51:59 -05:00
|
|
|
|
2014-11-27 11:02:26 -05:00
|
|
|
yield self.handlers.federation_handler.on_receive_pdu(
|
|
|
|
"fo", pdu, False
|
|
|
|
)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2014-09-15 11:40:44 -04:00
|
|
|
self.datastore.persist_event.assert_called_once_with(
|
2014-11-26 05:45:37 -05:00
|
|
|
ANY, is_new_state=False, backfilled=False, current_state=None
|
2014-09-15 11:40:44 -04:00
|
|
|
)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2014-11-11 11:58:53 -05:00
|
|
|
self.state_handler.annotate_event_with_state.assert_called_once_with(
|
2014-11-04 11:51:59 -05:00
|
|
|
ANY,
|
|
|
|
old_state=None,
|
2014-08-12 10:10:52 -04:00
|
|
|
)
|
|
|
|
|
2014-11-25 06:31:18 -05:00
|
|
|
self.auth.check.assert_called_once_with(ANY, auth_events={})
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2014-11-04 11:51:59 -05:00
|
|
|
self.notifier.on_new_room_event.assert_called_once_with(
|
|
|
|
ANY,
|
|
|
|
extra_users=[]
|
2014-08-28 10:32:30 -04:00
|
|
|
)
|