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 (
|
|
|
|
InviteJoinEvent, MessageEvent, RoomMemberEvent
|
|
|
|
)
|
|
|
|
from synapse.api.constants import Membership
|
|
|
|
from synapse.handlers.federation import FederationHandler
|
|
|
|
from synapse.server import HomeServer
|
2014-08-27 08:34:28 -04:00
|
|
|
from synapse.federation.units import Pdu
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2014-08-27 08:34:28 -04:00
|
|
|
from mock import NonCallableMock, ANY
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2014-09-24 12:25:41 -04:00
|
|
|
from ..utils import get_mock_call_args, 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-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-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-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-08-27 08:34:28 -04:00
|
|
|
pdu = Pdu(
|
|
|
|
pdu_type=MessageEvent.TYPE,
|
|
|
|
context="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-08-27 08:34:28 -04:00
|
|
|
pdu_id="a",
|
|
|
|
origin="b",
|
2014-08-12 10:10:52 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
store_id = "ASD"
|
|
|
|
self.datastore.persist_event.return_value = defer.succeed(store_id)
|
2014-08-20 09:59:43 -04:00
|
|
|
self.datastore.get_room.return_value = defer.succeed(True)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2014-08-27 08:34:28 -04:00
|
|
|
yield self.handlers.federation_handler.on_receive_pdu(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(
|
|
|
|
ANY, False, is_new_state=False
|
|
|
|
)
|
2014-09-25 08:04:33 -04:00
|
|
|
self.notifier.on_new_room_event.assert_called_once_with(ANY, extra_users=[])
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def test_invite_join_target_this(self):
|
|
|
|
room_id = "foo"
|
|
|
|
user_id = "@bob:red"
|
|
|
|
|
2014-08-27 08:34:28 -04:00
|
|
|
pdu = Pdu(
|
|
|
|
pdu_type=InviteJoinEvent.TYPE,
|
2014-08-12 10:10:52 -04:00
|
|
|
user_id=user_id,
|
|
|
|
target_host=self.hostname,
|
2014-08-27 08:34:28 -04:00
|
|
|
context=room_id,
|
2014-08-12 10:10:52 -04:00
|
|
|
content={},
|
2014-10-17 12:12:25 -04:00
|
|
|
origin_server_ts=0,
|
2014-08-27 08:34:28 -04:00
|
|
|
pdu_id="a",
|
|
|
|
origin="b",
|
2014-08-12 10:10:52 -04:00
|
|
|
)
|
|
|
|
|
2014-08-27 08:34:28 -04:00
|
|
|
yield self.handlers.federation_handler.on_receive_pdu(pdu, False)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
mem_handler = self.handlers.room_member_handler
|
|
|
|
self.assertEquals(1, mem_handler.change_membership.call_count)
|
2014-08-28 10:32:30 -04:00
|
|
|
call_args = get_mock_call_args(
|
|
|
|
lambda event, do_auth: None,
|
|
|
|
mem_handler.change_membership
|
|
|
|
)
|
2014-09-03 14:13:29 -04:00
|
|
|
self.assertEquals(False, call_args["do_auth"])
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2014-08-28 10:32:30 -04:00
|
|
|
new_event = call_args["event"]
|
2014-08-12 10:10:52 -04:00
|
|
|
self.assertEquals(RoomMemberEvent.TYPE, new_event.type)
|
|
|
|
self.assertEquals(room_id, new_event.room_id)
|
|
|
|
self.assertEquals(user_id, new_event.state_key)
|
|
|
|
self.assertEquals(Membership.JOIN, new_event.membership)
|
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def test_invite_join_target_other(self):
|
|
|
|
room_id = "foo"
|
|
|
|
user_id = "@bob:red"
|
|
|
|
|
2014-08-27 08:34:28 -04:00
|
|
|
pdu = Pdu(
|
|
|
|
pdu_type=InviteJoinEvent.TYPE,
|
2014-08-12 10:10:52 -04:00
|
|
|
user_id=user_id,
|
2014-08-27 08:34:28 -04:00
|
|
|
state_key="@red:not%s" % self.hostname,
|
|
|
|
context=room_id,
|
2014-08-12 10:10:52 -04:00
|
|
|
content={},
|
2014-10-17 12:12:25 -04:00
|
|
|
origin_server_ts=0,
|
2014-08-27 08:34:28 -04:00
|
|
|
pdu_id="a",
|
|
|
|
origin="b",
|
2014-08-12 10:10:52 -04:00
|
|
|
)
|
|
|
|
|
2014-08-27 08:34:28 -04:00
|
|
|
yield self.handlers.federation_handler.on_receive_pdu(pdu, False)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
mem_handler = self.handlers.room_member_handler
|
|
|
|
self.assertEquals(0, mem_handler.change_membership.call_count)
|