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.
from mock import Mock
from synapse.config.room_directory import RoomDirectoryConfig
Paul "LeoNerd" Evans
committed
from synapse.handlers.directory import DirectoryHandler
from synapse.rest.client.v1 import directory, room
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)
Paul "LeoNerd" Evans
committed
@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
)
Paul "LeoNerd" Evans
committed
self.mock_federation.make_query.assert_called_with(
destination="remote",
query_type="directory",
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)
class TestCreateAliasACL(unittest.HomeserverTestCase):
user_id = "@test:test"
servlets = [directory.register_servlets, room.register_servlets]
# We cheekily override the config to add custom alias creation rules
config = {}
config["alias_creation_rules"] = [
{
"user_id": "*",
"alias": "#unofficial_*",
config["room_list_publication_rules"] = []
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
rd_config = RoomDirectoryConfig()
rd_config.read_config(config)
self.hs.config.is_alias_creation_allowed = rd_config.is_alias_creation_allowed
return hs
def test_denied(self):
room_id = self.helper.create_room_as(self.user_id)
request, channel = self.make_request(
"PUT",
b"directory/room/%23test%3Atest",
('{"room_id":"%s"}' % (room_id,)).encode('ascii'),
)
self.render(request)
self.assertEquals(403, channel.code, channel.result)
def test_allowed(self):
room_id = self.helper.create_room_as(self.user_id)
request, channel = self.make_request(
"PUT",
b"directory/room/%23unofficial_test%3Atest",
('{"room_id":"%s"}' % (room_id,)).encode('ascii'),
)
self.render(request)
self.assertEquals(200, channel.code, channel.result)
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
class TestRoomListSearchDisabled(unittest.HomeserverTestCase):
user_id = "@test:test"
servlets = [directory.register_servlets, room.register_servlets]
def prepare(self, reactor, clock, hs):
room_id = self.helper.create_room_as(self.user_id)
request, channel = self.make_request(
"PUT",
b"directory/list/room/%s" % (room_id.encode('ascii'),),
b'{}',
)
self.render(request)
self.assertEquals(200, channel.code, channel.result)
self.room_list_handler = hs.get_room_list_handler()
self.directory_handler = hs.get_handlers().directory_handler
return hs
def test_disabling_room_list(self):
self.room_list_handler.enable_room_list_search = True
self.directory_handler.enable_room_list_search = True
# Room list is enabled so we should get some results
request, channel = self.make_request(
"GET",
b"publicRooms",
)
self.render(request)
self.assertEquals(200, channel.code, channel.result)
self.assertTrue(len(channel.json_body["chunk"]) > 0)
self.room_list_handler.enable_room_list_search = False
self.directory_handler.enable_room_list_search = False
# Room list disabled so we should get no results
request, channel = self.make_request(
"GET",
b"publicRooms",
)
self.render(request)
self.assertEquals(200, channel.code, channel.result)
self.assertTrue(len(channel.json_body["chunk"]) == 0)
# Room list disabled so we shouldn't be allowed to publish rooms
room_id = self.helper.create_room_as(self.user_id)
request, channel = self.make_request(
"PUT",
b"directory/list/room/%s" % (room_id.encode('ascii'),),
b'{}',
)
self.render(request)
self.assertEquals(403, channel.code, channel.result)