Newer
Older
Paul "LeoNerd" Evans
committed
# -*- coding: utf-8 -*-
Paul "LeoNerd" Evans
committed
#
# 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.
Paul "LeoNerd" Evans
committed
from tests import unittest
Paul "LeoNerd" Evans
committed
from twisted.internet import defer
from mock import Mock
from synapse.handlers.directory import DirectoryHandler
from synapse.types import RoomAlias
Paul "LeoNerd" Evans
committed
from tests.utils import setup_test_homeserver
Paul "LeoNerd" Evans
committed
Paul "LeoNerd" Evans
committed
class DirectoryHandlers(object):
def __init__(self, hs):
self.directory_handler = DirectoryHandler(hs)
class DirectoryTestCase(unittest.TestCase):
""" Tests the directory service. """
Paul "LeoNerd" Evans
committed
@defer.inlineCallbacks
Paul "LeoNerd" Evans
committed
def setUp(self):
Paul "LeoNerd" Evans
committed
self.query_handlers = {}
Paul "LeoNerd" Evans
committed
def register_query_handler(query_type, handler):
self.query_handlers[query_type] = handler
self.mock_registry.register_query_handler = register_query_handler
Paul "LeoNerd" Evans
committed
hs = yield setup_test_homeserver(
Paul "LeoNerd" Evans
committed
http_client=None,
resource_for_federation=Mock(),
federation_client=self.mock_federation,
Paul "LeoNerd" Evans
committed
)
hs.handlers = DirectoryHandlers(hs)
Paul "LeoNerd" Evans
committed
self.handler = hs.get_handlers().directory_handler
Paul "LeoNerd" Evans
committed
Paul "LeoNerd" Evans
committed
self.store = hs.get_datastore()
Erik Johnston
committed
self.my_room = RoomAlias.from_string("#my-room:test")
self.your_room = RoomAlias.from_string("#your-room:test")
self.remote_room = RoomAlias.from_string("#another:remote")
Paul "LeoNerd" Evans
committed
@defer.inlineCallbacks
def test_get_local_association(self):
Paul "LeoNerd" Evans
committed
yield self.store.create_room_alias_association(
self.my_room, "!8765qwer:test", ["test"]
Paul "LeoNerd" Evans
committed
)
result = yield self.handler.get_association(self.my_room)
self.assertEquals({
"room_id": "!8765qwer:test",
"servers": ["test"],
}, result)
@defer.inlineCallbacks
def test_get_remote_association(self):
self.mock_federation.make_query.return_value = defer.succeed(
{"room_id": "!8765qwer:test", "servers": ["test", "remote"]}
)
result = yield self.handler.get_association(self.remote_room)
self.assertEquals({
"room_id": "!8765qwer:test",
"servers": ["test", "remote"],
}, result)
self.mock_federation.make_query.assert_called_with(
destination="remote",
query_type="directory",
Kegan Dougal
committed
args={
"room_alias": "#another:remote",
Mark Haines
committed
},
retry_on_dns_fail=False,
Paul "LeoNerd" Evans
committed
)
@defer.inlineCallbacks
def test_incoming_fed_query(self):
Paul "LeoNerd" Evans
committed
yield self.store.create_room_alias_association(
self.your_room, "!8765asdf:test", ["test"]
Paul "LeoNerd" Evans
committed
)
response = yield self.query_handlers["directory"](
{"room_alias": "#your-room:test"}
)
self.assertEquals({
"room_id": "!8765asdf:test",
"servers": ["test"],
}, response)