2016-04-20 10:21:40 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright 2015, 2016 OpenMarket Ltd
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
2018-07-09 02:09:20 -04:00
|
|
|
from mock import Mock
|
|
|
|
|
2016-04-20 10:21:40 -04:00
|
|
|
from twisted.internet import defer
|
|
|
|
|
2018-12-14 13:20:59 -05:00
|
|
|
from synapse.api.constants import UserTypes
|
|
|
|
from synapse.api.errors import ResourceLimitError, SynapseError
|
2016-04-20 10:21:40 -04:00
|
|
|
from synapse.handlers.register import RegistrationHandler
|
2018-10-04 12:00:27 -04:00
|
|
|
from synapse.types import RoomAlias, UserID, create_requester
|
2016-04-20 10:21:40 -04:00
|
|
|
|
2018-07-09 02:09:20 -04:00
|
|
|
from .. import unittest
|
2016-04-20 10:21:40 -04:00
|
|
|
|
|
|
|
|
|
|
|
class RegistrationHandlers(object):
|
|
|
|
def __init__(self, hs):
|
|
|
|
self.registration_handler = RegistrationHandler(hs)
|
|
|
|
|
|
|
|
|
2019-03-21 11:10:21 -04:00
|
|
|
class RegistrationTestCase(unittest.HomeserverTestCase):
|
2016-04-20 10:21:40 -04:00
|
|
|
""" Tests the RegistrationHandler. """
|
|
|
|
|
2019-03-21 11:10:21 -04:00
|
|
|
def make_homeserver(self, reactor, clock):
|
|
|
|
hs_config = self.default_config("test")
|
2019-03-19 08:05:05 -04:00
|
|
|
|
|
|
|
# some of the tests rely on us having a user consent version
|
|
|
|
hs_config.user_consent_version = "test_consent_version"
|
|
|
|
hs_config.max_mau_value = 50
|
|
|
|
|
2019-03-21 11:10:21 -04:00
|
|
|
hs = self.setup_test_homeserver(config=hs_config, expire_access_token=True)
|
|
|
|
return hs
|
|
|
|
|
|
|
|
def prepare(self, reactor, clock, hs):
|
|
|
|
self.mock_distributor = Mock()
|
|
|
|
self.mock_distributor.declare("registered_user")
|
|
|
|
self.mock_captcha_client = Mock()
|
2017-02-02 05:53:36 -05:00
|
|
|
self.macaroon_generator = Mock(
|
2018-08-10 09:54:09 -04:00
|
|
|
generate_access_token=Mock(return_value='secret')
|
|
|
|
)
|
2017-02-02 05:53:36 -05:00
|
|
|
self.hs.get_macaroon_generator = Mock(return_value=self.macaroon_generator)
|
2019-02-20 02:47:31 -05:00
|
|
|
self.handler = self.hs.get_registration_handler()
|
2018-08-02 11:57:35 -04:00
|
|
|
self.store = self.hs.get_datastore()
|
|
|
|
self.lots_of_users = 100
|
|
|
|
self.small_number_of_users = 1
|
2016-04-20 10:21:40 -04:00
|
|
|
|
2018-10-04 12:00:27 -04:00
|
|
|
self.requester = create_requester("@requester:test")
|
|
|
|
|
2016-04-20 10:21:40 -04:00
|
|
|
def test_user_is_created_and_logged_in_if_doesnt_exist(self):
|
2018-10-04 12:00:27 -04:00
|
|
|
frank = UserID.from_string("@frank:test")
|
|
|
|
user_id = frank.to_string()
|
|
|
|
requester = create_requester(user_id)
|
2019-03-21 11:10:21 -04:00
|
|
|
result_user_id, result_token = self.get_success(
|
|
|
|
self.handler.get_or_create_user(requester, frank.localpart, "Frankie")
|
2018-08-10 09:54:09 -04:00
|
|
|
)
|
2016-04-20 10:21:40 -04:00
|
|
|
self.assertEquals(result_user_id, user_id)
|
2018-12-14 13:20:59 -05:00
|
|
|
self.assertTrue(result_token is not None)
|
2016-04-20 10:21:40 -04:00
|
|
|
self.assertEquals(result_token, 'secret')
|
2016-05-23 05:14:11 -04:00
|
|
|
|
|
|
|
def test_if_user_exists(self):
|
|
|
|
store = self.hs.get_datastore()
|
|
|
|
frank = UserID.from_string("@frank:test")
|
2019-03-21 11:10:21 -04:00
|
|
|
self.get_success(
|
|
|
|
store.register(
|
|
|
|
user_id=frank.to_string(),
|
|
|
|
token="jkv;g498752-43gj['eamb!-5",
|
|
|
|
password_hash=None,
|
|
|
|
)
|
2018-08-10 09:54:09 -04:00
|
|
|
)
|
2018-10-04 12:00:27 -04:00
|
|
|
local_part = frank.localpart
|
|
|
|
user_id = frank.to_string()
|
|
|
|
requester = create_requester(user_id)
|
2019-03-21 11:10:21 -04:00
|
|
|
result_user_id, result_token = self.get_success(
|
|
|
|
self.handler.get_or_create_user(requester, local_part, None)
|
2018-08-10 09:54:09 -04:00
|
|
|
)
|
2016-05-23 05:14:11 -04:00
|
|
|
self.assertEquals(result_user_id, user_id)
|
2018-12-14 13:20:59 -05:00
|
|
|
self.assertTrue(result_token is not None)
|
2018-07-30 10:55:57 -04:00
|
|
|
|
2018-08-02 11:57:35 -04:00
|
|
|
def test_mau_limits_when_disabled(self):
|
2018-07-30 10:55:57 -04:00
|
|
|
self.hs.config.limit_usage_by_mau = False
|
|
|
|
# Ensure does not throw exception
|
2019-03-21 11:10:21 -04:00
|
|
|
self.get_success(
|
|
|
|
self.handler.get_or_create_user(self.requester, 'a', "display_name")
|
|
|
|
)
|
2018-07-30 10:55:57 -04:00
|
|
|
|
2018-08-02 11:57:35 -04:00
|
|
|
def test_get_or_create_user_mau_not_blocked(self):
|
2018-07-30 10:55:57 -04:00
|
|
|
self.hs.config.limit_usage_by_mau = True
|
2018-08-02 11:57:35 -04:00
|
|
|
self.store.count_monthly_users = Mock(
|
2018-08-14 10:28:15 -04:00
|
|
|
return_value=defer.succeed(self.hs.config.max_mau_value - 1)
|
2018-08-02 11:57:35 -04:00
|
|
|
)
|
2018-07-30 10:55:57 -04:00
|
|
|
# Ensure does not throw exception
|
2019-03-21 11:10:21 -04:00
|
|
|
self.get_success(self.handler.get_or_create_user(self.requester, 'c', "User"))
|
2018-07-30 10:55:57 -04:00
|
|
|
|
2018-08-02 11:57:35 -04:00
|
|
|
def test_get_or_create_user_mau_blocked(self):
|
|
|
|
self.hs.config.limit_usage_by_mau = True
|
|
|
|
self.store.get_monthly_active_count = Mock(
|
|
|
|
return_value=defer.succeed(self.lots_of_users)
|
|
|
|
)
|
2019-03-21 11:10:21 -04:00
|
|
|
self.get_failure(
|
|
|
|
self.handler.get_or_create_user(self.requester, 'b', "display_name"),
|
|
|
|
ResourceLimitError,
|
|
|
|
)
|
2018-07-30 10:55:57 -04:00
|
|
|
|
2018-08-14 10:28:15 -04:00
|
|
|
self.store.get_monthly_active_count = Mock(
|
|
|
|
return_value=defer.succeed(self.hs.config.max_mau_value)
|
|
|
|
)
|
2019-03-21 11:10:21 -04:00
|
|
|
self.get_failure(
|
|
|
|
self.handler.get_or_create_user(self.requester, 'b', "display_name"),
|
|
|
|
ResourceLimitError,
|
|
|
|
)
|
2018-08-14 10:28:15 -04:00
|
|
|
|
2018-08-02 11:57:35 -04:00
|
|
|
def test_register_mau_blocked(self):
|
|
|
|
self.hs.config.limit_usage_by_mau = True
|
|
|
|
self.store.get_monthly_active_count = Mock(
|
|
|
|
return_value=defer.succeed(self.lots_of_users)
|
|
|
|
)
|
2019-03-21 11:10:21 -04:00
|
|
|
self.get_failure(
|
|
|
|
self.handler.register(localpart="local_part"), ResourceLimitError
|
|
|
|
)
|
2018-08-14 10:04:48 -04:00
|
|
|
|
|
|
|
self.store.get_monthly_active_count = Mock(
|
|
|
|
return_value=defer.succeed(self.hs.config.max_mau_value)
|
|
|
|
)
|
2019-03-21 11:10:21 -04:00
|
|
|
self.get_failure(
|
|
|
|
self.handler.register(localpart="local_part"), ResourceLimitError
|
|
|
|
)
|
2018-08-01 05:21:56 -04:00
|
|
|
|
2018-10-04 12:00:27 -04:00
|
|
|
def test_auto_create_auto_join_rooms(self):
|
|
|
|
room_alias_str = "#room:test"
|
|
|
|
self.hs.config.auto_join_rooms = [room_alias_str]
|
2019-03-21 11:10:21 -04:00
|
|
|
res = self.get_success(self.handler.register(localpart='jeff'))
|
|
|
|
rooms = self.get_success(self.store.get_rooms_for_user(res[0]))
|
2018-10-04 12:00:27 -04:00
|
|
|
directory_handler = self.hs.get_handlers().directory_handler
|
|
|
|
room_alias = RoomAlias.from_string(room_alias_str)
|
2019-03-21 11:10:21 -04:00
|
|
|
room_id = self.get_success(directory_handler.get_association(room_alias))
|
2018-10-04 12:00:27 -04:00
|
|
|
|
|
|
|
self.assertTrue(room_id['room_id'] in rooms)
|
|
|
|
self.assertEqual(len(rooms), 1)
|
|
|
|
|
|
|
|
def test_auto_create_auto_join_rooms_with_no_rooms(self):
|
|
|
|
self.hs.config.auto_join_rooms = []
|
|
|
|
frank = UserID.from_string("@frank:test")
|
2019-03-21 11:10:21 -04:00
|
|
|
res = self.get_success(self.handler.register(frank.localpart))
|
2018-10-04 12:00:27 -04:00
|
|
|
self.assertEqual(res[0], frank.to_string())
|
2019-03-21 11:10:21 -04:00
|
|
|
rooms = self.get_success(self.store.get_rooms_for_user(res[0]))
|
2018-10-12 13:17:36 -04:00
|
|
|
self.assertEqual(len(rooms), 0)
|
|
|
|
|
|
|
|
def test_auto_create_auto_join_where_room_is_another_domain(self):
|
|
|
|
self.hs.config.auto_join_rooms = ["#room:another"]
|
|
|
|
frank = UserID.from_string("@frank:test")
|
2019-03-21 11:10:21 -04:00
|
|
|
res = self.get_success(self.handler.register(frank.localpart))
|
2018-10-12 13:17:36 -04:00
|
|
|
self.assertEqual(res[0], frank.to_string())
|
2019-03-21 11:10:21 -04:00
|
|
|
rooms = self.get_success(self.store.get_rooms_for_user(res[0]))
|
2018-10-12 13:17:36 -04:00
|
|
|
self.assertEqual(len(rooms), 0)
|
2018-10-04 12:00:27 -04:00
|
|
|
|
2018-10-12 13:17:36 -04:00
|
|
|
def test_auto_create_auto_join_where_auto_create_is_false(self):
|
|
|
|
self.hs.config.autocreate_auto_join_rooms = False
|
|
|
|
room_alias_str = "#room:test"
|
|
|
|
self.hs.config.auto_join_rooms = [room_alias_str]
|
2019-03-21 11:10:21 -04:00
|
|
|
res = self.get_success(self.handler.register(localpart='jeff'))
|
|
|
|
rooms = self.get_success(self.store.get_rooms_for_user(res[0]))
|
2018-10-04 12:00:27 -04:00
|
|
|
self.assertEqual(len(rooms), 0)
|
2018-11-28 06:24:57 -05:00
|
|
|
|
2018-12-14 13:20:59 -05:00
|
|
|
def test_auto_create_auto_join_rooms_when_support_user_exists(self):
|
|
|
|
room_alias_str = "#room:test"
|
|
|
|
self.hs.config.auto_join_rooms = [room_alias_str]
|
|
|
|
|
|
|
|
self.store.is_support_user = Mock(return_value=True)
|
2019-03-21 11:10:21 -04:00
|
|
|
res = self.get_success(self.handler.register(localpart='support'))
|
|
|
|
rooms = self.get_success(self.store.get_rooms_for_user(res[0]))
|
2018-12-14 13:20:59 -05:00
|
|
|
self.assertEqual(len(rooms), 0)
|
|
|
|
directory_handler = self.hs.get_handlers().directory_handler
|
|
|
|
room_alias = RoomAlias.from_string(room_alias_str)
|
2019-03-21 11:10:21 -04:00
|
|
|
self.get_failure(directory_handler.get_association(room_alias), SynapseError)
|
2018-12-14 13:20:59 -05:00
|
|
|
|
2018-11-28 06:24:57 -05:00
|
|
|
def test_auto_create_auto_join_where_no_consent(self):
|
2019-03-19 07:38:59 -04:00
|
|
|
"""Test to ensure that the first user is not auto-joined to a room if
|
|
|
|
they have not given general consent.
|
|
|
|
"""
|
|
|
|
|
|
|
|
# Given:-
|
|
|
|
# * a user must give consent,
|
|
|
|
# * they have not given that consent
|
|
|
|
# * The server is configured to auto-join to a room
|
|
|
|
# (and autocreate if necessary)
|
|
|
|
|
|
|
|
event_creation_handler = self.hs.get_event_creation_handler()
|
|
|
|
# (Messing with the internals of event_creation_handler is fragile
|
|
|
|
# but can't see a better way to do this. One option could be to subclass
|
|
|
|
# the test with custom config.)
|
2019-03-21 11:10:21 -04:00
|
|
|
event_creation_handler._block_events_without_consent_error = "Error"
|
2019-03-19 07:38:59 -04:00
|
|
|
event_creation_handler._consent_uri_builder = Mock()
|
2018-11-28 06:24:57 -05:00
|
|
|
room_alias_str = "#room:test"
|
|
|
|
self.hs.config.auto_join_rooms = [room_alias_str]
|
2019-03-19 07:38:59 -04:00
|
|
|
|
|
|
|
# When:-
|
|
|
|
# * the user is registered and post consent actions are called
|
2019-03-21 11:10:21 -04:00
|
|
|
res = self.get_success(self.handler.register(localpart='jeff'))
|
|
|
|
self.get_success(self.handler.post_consent_actions(res[0]))
|
2019-03-19 07:38:59 -04:00
|
|
|
|
|
|
|
# Then:-
|
|
|
|
# * Ensure that they have not been joined to the room
|
2019-03-21 11:10:21 -04:00
|
|
|
rooms = self.get_success(self.store.get_rooms_for_user(res[0]))
|
2018-11-28 06:24:57 -05:00
|
|
|
self.assertEqual(len(rooms), 0)
|
2018-12-14 13:20:59 -05:00
|
|
|
|
|
|
|
def test_register_support_user(self):
|
2019-03-21 11:10:21 -04:00
|
|
|
res = self.get_success(
|
|
|
|
self.handler.register(localpart='user', user_type=UserTypes.SUPPORT)
|
|
|
|
)
|
2018-12-14 13:20:59 -05:00
|
|
|
self.assertTrue(self.store.is_support_user(res[0]))
|
|
|
|
|
|
|
|
def test_register_not_support_user(self):
|
2019-03-21 11:10:21 -04:00
|
|
|
res = self.get_success(self.handler.register(localpart='user'))
|
2018-12-14 13:20:59 -05:00
|
|
|
self.assertFalse(self.store.is_support_user(res[0]))
|