2014-09-12 13:24:53 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
2016-01-06 23:26:29 -05:00
|
|
|
# Copyright 2014-2016 OpenMarket Ltd
|
2018-08-14 06:53:43 -04:00
|
|
|
# Copyright 2018 New Vector
|
2019-11-27 16:54:07 -05:00
|
|
|
# Copyright 2019 Matrix.org Federation C.I.C
|
2014-09-12 13:24:53 -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.
|
2019-11-27 16:54:07 -05:00
|
|
|
|
2018-11-26 21:00:33 -05:00
|
|
|
import gc
|
2018-10-01 10:11:58 -04:00
|
|
|
import hashlib
|
|
|
|
import hmac
|
2019-12-05 12:58:25 -05:00
|
|
|
import inspect
|
2018-06-04 02:06:06 -04:00
|
|
|
import logging
|
2019-06-29 03:06:55 -04:00
|
|
|
import time
|
2020-02-18 11:23:25 -05:00
|
|
|
from typing import Optional, Tuple, Type, TypeVar, Union
|
2018-06-04 02:06:06 -04:00
|
|
|
|
2018-08-14 06:53:43 -04:00
|
|
|
from mock import Mock
|
|
|
|
|
2018-08-17 11:08:45 -04:00
|
|
|
from canonicaljson import json
|
|
|
|
|
2019-12-05 12:58:25 -05:00
|
|
|
from twisted.internet.defer import Deferred, ensureDeferred, succeed
|
2019-06-29 03:06:55 -04:00
|
|
|
from twisted.python.threadpool import ThreadPool
|
2014-09-12 13:24:53 -04:00
|
|
|
from twisted.trial import unittest
|
|
|
|
|
2019-11-27 16:54:07 -05:00
|
|
|
from synapse.api.constants import EventTypes, Membership
|
2019-05-13 16:01:14 -04:00
|
|
|
from synapse.config.homeserver import HomeServerConfig
|
2019-11-27 16:54:07 -05:00
|
|
|
from synapse.config.ratelimiting import FederationRateLimitConfig
|
|
|
|
from synapse.federation.transport import server as federation_server
|
2018-08-14 06:53:43 -04:00
|
|
|
from synapse.http.server import JsonResource
|
2020-01-06 07:28:58 -05:00
|
|
|
from synapse.http.site import SynapseRequest, SynapseSite
|
2020-03-24 10:45:33 -04:00
|
|
|
from synapse.logging.context import (
|
|
|
|
SENTINEL_CONTEXT,
|
2020-03-31 12:27:56 -04:00
|
|
|
LoggingContext,
|
2020-03-24 10:45:33 -04:00
|
|
|
current_context,
|
|
|
|
set_current_context,
|
|
|
|
)
|
2018-08-14 06:53:43 -04:00
|
|
|
from synapse.server import HomeServer
|
2019-06-13 08:40:52 -04:00
|
|
|
from synapse.types import Requester, UserID, create_requester
|
2019-11-27 16:54:07 -05:00
|
|
|
from synapse.util.ratelimitutils import FederationRateLimiter
|
2018-06-04 02:06:06 -04:00
|
|
|
|
2020-02-18 11:23:25 -05:00
|
|
|
from tests.server import (
|
|
|
|
FakeChannel,
|
|
|
|
get_clock,
|
|
|
|
make_request,
|
|
|
|
render,
|
|
|
|
setup_test_homeserver,
|
|
|
|
)
|
2020-04-29 07:30:36 -04:00
|
|
|
from tests.test_utils import event_injection
|
2019-01-29 07:07:00 -05:00
|
|
|
from tests.test_utils.logging_setup import setup_logging
|
2018-12-04 05:30:32 -05:00
|
|
|
from tests.utils import default_config, setupdb
|
|
|
|
|
|
|
|
setupdb()
|
2019-01-29 07:07:00 -05:00
|
|
|
setup_logging()
|
2014-09-12 13:24:53 -04:00
|
|
|
|
|
|
|
|
2014-09-12 14:07:29 -04:00
|
|
|
def around(target):
|
|
|
|
"""A CLOS-style 'around' modifier, which wraps the original method of the
|
|
|
|
given instance with another piece of code.
|
|
|
|
|
|
|
|
@around(self)
|
|
|
|
def method_name(orig, *args, **kwargs):
|
|
|
|
return orig(*args, **kwargs)
|
|
|
|
"""
|
2018-08-10 09:54:09 -04:00
|
|
|
|
2014-09-12 14:07:29 -04:00
|
|
|
def _around(code):
|
|
|
|
name = code.__name__
|
|
|
|
orig = getattr(target, name)
|
2016-02-19 10:34:38 -05:00
|
|
|
|
2014-09-12 14:07:29 -04:00
|
|
|
def new(*args, **kwargs):
|
|
|
|
return code(orig, *args, **kwargs)
|
2016-02-19 10:34:38 -05:00
|
|
|
|
2014-09-12 14:07:29 -04:00
|
|
|
setattr(target, name, new)
|
2016-02-19 10:34:38 -05:00
|
|
|
|
2014-09-12 14:07:29 -04:00
|
|
|
return _around
|
|
|
|
|
|
|
|
|
2020-02-18 11:23:25 -05:00
|
|
|
T = TypeVar("T")
|
|
|
|
|
|
|
|
|
2014-09-12 13:24:53 -04:00
|
|
|
class TestCase(unittest.TestCase):
|
2014-09-12 13:45:48 -04:00
|
|
|
"""A subclass of twisted.trial's TestCase which looks for 'loglevel'
|
|
|
|
attributes on both itself and its individual test methods, to override the
|
|
|
|
root logger's logging level while that test (case|method) runs."""
|
|
|
|
|
2014-09-12 13:43:49 -04:00
|
|
|
def __init__(self, methodName, *args, **kwargs):
|
|
|
|
super(TestCase, self).__init__(methodName, *args, **kwargs)
|
2014-09-12 13:29:07 -04:00
|
|
|
|
2014-09-12 13:43:49 -04:00
|
|
|
method = getattr(self, methodName)
|
|
|
|
|
2019-01-29 07:07:00 -05:00
|
|
|
level = getattr(method, "loglevel", getattr(self, "loglevel", None))
|
2014-09-12 13:29:07 -04:00
|
|
|
|
2014-09-12 14:07:29 -04:00
|
|
|
@around(self)
|
|
|
|
def setUp(orig):
|
2018-11-26 21:47:18 -05:00
|
|
|
# if we're not starting in the sentinel logcontext, then to be honest
|
|
|
|
# all future bets are off.
|
2020-03-24 10:45:33 -04:00
|
|
|
if current_context():
|
2018-11-26 21:47:18 -05:00
|
|
|
self.fail(
|
2019-05-10 01:12:11 -04:00
|
|
|
"Test starting with non-sentinel logging context %s"
|
2020-03-24 10:45:33 -04:00
|
|
|
% (current_context(),)
|
2018-11-26 21:47:18 -05:00
|
|
|
)
|
2014-09-12 13:29:07 -04:00
|
|
|
|
2018-11-26 21:47:18 -05:00
|
|
|
old_level = logging.getLogger().level
|
2019-01-29 07:07:00 -05:00
|
|
|
if level is not None and old_level != level:
|
2018-08-10 09:54:09 -04:00
|
|
|
|
2014-09-12 14:07:29 -04:00
|
|
|
@around(self)
|
|
|
|
def tearDown(orig):
|
|
|
|
ret = orig()
|
2014-09-12 13:29:07 -04:00
|
|
|
logging.getLogger().setLevel(old_level)
|
|
|
|
return ret
|
|
|
|
|
2019-01-29 07:07:00 -05:00
|
|
|
logging.getLogger().setLevel(level)
|
|
|
|
|
2014-09-12 14:07:29 -04:00
|
|
|
return orig()
|
2014-09-12 13:38:11 -04:00
|
|
|
|
2018-11-26 21:00:33 -05:00
|
|
|
@around(self)
|
|
|
|
def tearDown(orig):
|
|
|
|
ret = orig()
|
|
|
|
# force a GC to workaround problems with deferreds leaking logcontexts when
|
|
|
|
# they are GCed (see the logcontext docs)
|
|
|
|
gc.collect()
|
2020-03-24 10:45:33 -04:00
|
|
|
set_current_context(SENTINEL_CONTEXT)
|
2018-11-26 21:00:33 -05:00
|
|
|
|
|
|
|
return ret
|
|
|
|
|
2014-09-17 10:56:40 -04:00
|
|
|
def assertObjectHasAttributes(self, attrs, obj):
|
|
|
|
"""Asserts that the given object has each of the attributes given, and
|
|
|
|
that the value of each matches according to assertEquals."""
|
|
|
|
for (key, value) in attrs.items():
|
|
|
|
if not hasattr(obj, key):
|
|
|
|
raise AssertionError("Expected obj to have a '.%s'" % key)
|
|
|
|
try:
|
|
|
|
self.assertEquals(attrs[key], getattr(obj, key))
|
|
|
|
except AssertionError as e:
|
2018-10-01 10:11:58 -04:00
|
|
|
raise (type(e))(e.message + " for '.%s'" % key)
|
2014-09-17 10:56:40 -04:00
|
|
|
|
2018-07-17 06:43:18 -04:00
|
|
|
def assert_dict(self, required, actual):
|
|
|
|
"""Does a partial assert of a dict.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
required (dict): The keys and value which MUST be in 'actual'.
|
|
|
|
actual (dict): The test result. Extra keys will not be checked.
|
|
|
|
"""
|
|
|
|
for key in required:
|
2018-08-10 09:54:09 -04:00
|
|
|
self.assertEquals(
|
|
|
|
required[key], actual[key], msg="%s mismatch. %s" % (key, actual)
|
|
|
|
)
|
2018-07-17 06:43:18 -04:00
|
|
|
|
2014-09-12 13:38:11 -04:00
|
|
|
|
|
|
|
def DEBUG(target):
|
2014-09-12 13:45:48 -04:00
|
|
|
"""A decorator to set the .loglevel attribute to logging.DEBUG.
|
|
|
|
Can apply to either a TestCase or an individual test method."""
|
2014-09-12 13:38:11 -04:00
|
|
|
target.loglevel = logging.DEBUG
|
|
|
|
return target
|
2018-08-14 06:53:43 -04:00
|
|
|
|
|
|
|
|
2018-10-30 08:55:43 -04:00
|
|
|
def INFO(target):
|
|
|
|
"""A decorator to set the .loglevel attribute to logging.INFO.
|
|
|
|
Can apply to either a TestCase or an individual test method."""
|
|
|
|
target.loglevel = logging.INFO
|
|
|
|
return target
|
|
|
|
|
|
|
|
|
2018-08-14 06:53:43 -04:00
|
|
|
class HomeserverTestCase(TestCase):
|
|
|
|
"""
|
|
|
|
A base TestCase that reduces boilerplate for HomeServer-using test cases.
|
|
|
|
|
2019-07-12 05:16:23 -04:00
|
|
|
Defines a setUp method which creates a mock reactor, and instantiates a homeserver
|
|
|
|
running on that reactor.
|
|
|
|
|
|
|
|
There are various hooks for modifying the way that the homeserver is instantiated:
|
|
|
|
|
|
|
|
* override make_homeserver, for example by making it pass different parameters into
|
|
|
|
setup_test_homeserver.
|
|
|
|
|
|
|
|
* override default_config, to return a modified configuration dictionary for use
|
|
|
|
by setup_test_homeserver.
|
|
|
|
|
|
|
|
* On a per-test basis, you can use the @override_config decorator to give a
|
|
|
|
dictionary containing additional configuration settings to be added to the basic
|
|
|
|
config dict.
|
|
|
|
|
2018-08-14 06:53:43 -04:00
|
|
|
Attributes:
|
|
|
|
servlets (list[function]): List of servlet registration function.
|
|
|
|
user_id (str): The user ID to assume if auth is hijacked.
|
|
|
|
hijack_auth (bool): Whether to hijack auth to return the user specified
|
|
|
|
in user_id.
|
|
|
|
"""
|
2018-08-30 10:19:58 -04:00
|
|
|
|
2018-08-14 06:53:43 -04:00
|
|
|
servlets = []
|
|
|
|
hijack_auth = True
|
2019-06-29 03:06:55 -04:00
|
|
|
needs_threadpool = False
|
2018-08-14 06:53:43 -04:00
|
|
|
|
2019-07-12 05:16:23 -04:00
|
|
|
def __init__(self, methodName, *args, **kwargs):
|
|
|
|
super().__init__(methodName, *args, **kwargs)
|
|
|
|
|
|
|
|
# see if we have any additional config for this test
|
|
|
|
method = getattr(self, methodName)
|
|
|
|
self._extra_config = getattr(method, "_extra_config", None)
|
|
|
|
|
2018-08-14 06:53:43 -04:00
|
|
|
def setUp(self):
|
|
|
|
"""
|
|
|
|
Set up the TestCase by calling the homeserver constructor, optionally
|
|
|
|
hijacking the authentication system to return a fixed user, and then
|
|
|
|
calling the prepare function.
|
|
|
|
"""
|
|
|
|
self.reactor, self.clock = get_clock()
|
|
|
|
self._hs_args = {"clock": self.clock, "reactor": self.reactor}
|
|
|
|
self.hs = self.make_homeserver(self.reactor, self.clock)
|
|
|
|
|
|
|
|
if self.hs is None:
|
|
|
|
raise Exception("No homeserver returned from make_homeserver.")
|
|
|
|
|
|
|
|
if not isinstance(self.hs, HomeServer):
|
|
|
|
raise Exception("A homeserver wasn't returned, but %r" % (self.hs,))
|
|
|
|
|
|
|
|
# Register the resources
|
2019-05-07 04:29:30 -04:00
|
|
|
self.resource = self.create_test_json_resource()
|
2018-08-14 06:53:43 -04:00
|
|
|
|
2020-01-06 07:28:58 -05:00
|
|
|
# create a site to wrap the resource.
|
|
|
|
self.site = SynapseSite(
|
|
|
|
logger_name="synapse.access.http.fake",
|
|
|
|
site_tag="test",
|
2020-06-16 07:44:07 -04:00
|
|
|
config=self.hs.config.server.listeners[0],
|
2020-01-06 07:28:58 -05:00
|
|
|
resource=self.resource,
|
|
|
|
server_version_string="1",
|
|
|
|
)
|
|
|
|
|
2018-11-06 11:00:00 -05:00
|
|
|
from tests.rest.client.v1.utils import RestHelper
|
2018-08-14 06:53:43 -04:00
|
|
|
|
2018-11-06 11:00:00 -05:00
|
|
|
self.helper = RestHelper(self.hs, self.resource, getattr(self, "user_id", None))
|
2018-08-14 06:53:43 -04:00
|
|
|
|
2018-11-06 11:00:00 -05:00
|
|
|
if hasattr(self, "user_id"):
|
2018-08-14 06:53:43 -04:00
|
|
|
if self.hijack_auth:
|
|
|
|
|
2020-08-06 08:30:06 -04:00
|
|
|
async def get_user_by_access_token(token=None, allow_guest=False):
|
|
|
|
return {
|
|
|
|
"user": UserID.from_string(self.helper.auth_user_id),
|
|
|
|
"token_id": 1,
|
|
|
|
"is_guest": False,
|
|
|
|
}
|
|
|
|
|
|
|
|
async def get_user_by_req(request, allow_guest=False, rights="access"):
|
|
|
|
return create_requester(
|
2020-08-14 12:37:59 -04:00
|
|
|
UserID.from_string(self.helper.auth_user_id),
|
|
|
|
1,
|
|
|
|
False,
|
|
|
|
False,
|
|
|
|
None,
|
2018-08-14 06:53:43 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
self.hs.get_auth().get_user_by_req = get_user_by_req
|
|
|
|
self.hs.get_auth().get_user_by_access_token = get_user_by_access_token
|
|
|
|
self.hs.get_auth().get_access_token_from_request = Mock(
|
|
|
|
return_value="1234"
|
|
|
|
)
|
|
|
|
|
2019-06-29 03:06:55 -04:00
|
|
|
if self.needs_threadpool:
|
|
|
|
self.reactor.threadpool = ThreadPool()
|
|
|
|
self.addCleanup(self.reactor.threadpool.stop)
|
|
|
|
self.reactor.threadpool.start()
|
|
|
|
|
2018-08-14 06:53:43 -04:00
|
|
|
if hasattr(self, "prepare"):
|
|
|
|
self.prepare(self.reactor, self.clock, self.hs)
|
|
|
|
|
2019-06-29 03:06:55 -04:00
|
|
|
def wait_on_thread(self, deferred, timeout=10):
|
|
|
|
"""
|
|
|
|
Wait until a Deferred is done, where it's waiting on a real thread.
|
|
|
|
"""
|
|
|
|
start_time = time.time()
|
|
|
|
|
|
|
|
while not deferred.called:
|
|
|
|
if start_time + timeout < time.time():
|
|
|
|
raise ValueError("Timed out waiting for threadpool")
|
|
|
|
self.reactor.advance(0.01)
|
|
|
|
time.sleep(0.01)
|
|
|
|
|
2018-08-14 06:53:43 -04:00
|
|
|
def make_homeserver(self, reactor, clock):
|
|
|
|
"""
|
|
|
|
Make and return a homeserver.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
reactor: A Twisted Reactor, or something that pretends to be one.
|
|
|
|
clock (synapse.util.Clock): The Clock, associated with the reactor.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
A homeserver (synapse.server.HomeServer) suitable for testing.
|
|
|
|
|
|
|
|
Function to be overridden in subclasses.
|
|
|
|
"""
|
2018-09-20 02:28:18 -04:00
|
|
|
hs = self.setup_test_homeserver()
|
|
|
|
return hs
|
2018-08-14 06:53:43 -04:00
|
|
|
|
2019-05-07 04:29:30 -04:00
|
|
|
def create_test_json_resource(self):
|
|
|
|
"""
|
|
|
|
Create a test JsonResource, with the relevant servlets registerd to it
|
|
|
|
|
|
|
|
The default implementation calls each function in `servlets` to do the
|
|
|
|
registration.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
JsonResource:
|
|
|
|
"""
|
|
|
|
resource = JsonResource(self.hs)
|
|
|
|
|
|
|
|
for servlet in self.servlets:
|
|
|
|
servlet(self.hs, resource)
|
|
|
|
|
|
|
|
return resource
|
|
|
|
|
2020-03-24 14:33:49 -04:00
|
|
|
def default_config(self):
|
2018-10-01 10:11:58 -04:00
|
|
|
"""
|
2019-05-13 16:01:14 -04:00
|
|
|
Get a default HomeServer config dict.
|
2018-10-01 10:11:58 -04:00
|
|
|
"""
|
2020-03-24 14:33:49 -04:00
|
|
|
config = default_config("test")
|
2019-07-12 05:16:23 -04:00
|
|
|
|
|
|
|
# apply any additional config which was specified via the override_config
|
|
|
|
# decorator.
|
|
|
|
if self._extra_config is not None:
|
|
|
|
config.update(self._extra_config)
|
|
|
|
|
|
|
|
return config
|
2018-10-01 10:11:58 -04:00
|
|
|
|
2018-08-14 06:53:43 -04:00
|
|
|
def prepare(self, reactor, clock, homeserver):
|
|
|
|
"""
|
|
|
|
Prepare for the test. This involves things like mocking out parts of
|
|
|
|
the homeserver, or building test data common across the whole test
|
|
|
|
suite.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
reactor: A Twisted Reactor, or something that pretends to be one.
|
|
|
|
clock (synapse.util.Clock): The Clock, associated with the reactor.
|
|
|
|
homeserver (synapse.server.HomeServer): The HomeServer to test
|
|
|
|
against.
|
|
|
|
|
|
|
|
Function to optionally be overridden in subclasses.
|
|
|
|
"""
|
|
|
|
|
2018-09-20 06:14:34 -04:00
|
|
|
def make_request(
|
2018-11-05 13:53:44 -05:00
|
|
|
self,
|
2020-02-18 11:23:25 -05:00
|
|
|
method: Union[bytes, str],
|
|
|
|
path: Union[bytes, str],
|
|
|
|
content: Union[bytes, dict] = b"",
|
|
|
|
access_token: Optional[str] = None,
|
|
|
|
request: Type[T] = SynapseRequest,
|
|
|
|
shorthand: bool = True,
|
|
|
|
federation_auth_origin: str = None,
|
|
|
|
) -> Tuple[T, FakeChannel]:
|
2018-08-14 06:53:43 -04:00
|
|
|
"""
|
|
|
|
Create a SynapseRequest at the path using the method and containing the
|
|
|
|
given content.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
method (bytes/unicode): The HTTP request method ("verb").
|
|
|
|
path (bytes/unicode): The HTTP path, suitably URL encoded (e.g.
|
|
|
|
escaped UTF-8 & spaces and such).
|
2018-08-17 11:08:45 -04:00
|
|
|
content (bytes or dict): The body of the request. JSON-encoded, if
|
|
|
|
a dict.
|
2018-11-05 13:53:44 -05:00
|
|
|
shorthand: Whether to try and be helpful and prefix the given URL
|
|
|
|
with the usual REST API path, if it doesn't contain it.
|
2019-03-04 05:05:39 -05:00
|
|
|
federation_auth_origin (bytes|None): if set to not-None, we will add a fake
|
|
|
|
Authorization header pretenting to be the given server name.
|
2018-08-14 06:53:43 -04:00
|
|
|
|
|
|
|
Returns:
|
2019-03-04 05:05:39 -05:00
|
|
|
Tuple[synapse.http.site.SynapseRequest, channel]
|
2018-08-14 06:53:43 -04:00
|
|
|
"""
|
2018-08-17 11:08:45 -04:00
|
|
|
if isinstance(content, dict):
|
2019-06-20 05:32:02 -04:00
|
|
|
content = json.dumps(content).encode("utf8")
|
2018-08-17 11:08:45 -04:00
|
|
|
|
2018-11-06 11:00:00 -05:00
|
|
|
return make_request(
|
2019-05-10 01:12:11 -04:00
|
|
|
self.reactor,
|
|
|
|
method,
|
|
|
|
path,
|
|
|
|
content,
|
|
|
|
access_token,
|
|
|
|
request,
|
|
|
|
shorthand,
|
2019-03-04 05:05:39 -05:00
|
|
|
federation_auth_origin,
|
2018-11-06 11:00:00 -05:00
|
|
|
)
|
2018-08-14 06:53:43 -04:00
|
|
|
|
|
|
|
def render(self, request):
|
|
|
|
"""
|
|
|
|
Render a request against the resources registered by the test class's
|
|
|
|
servlets.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
request (synapse.http.site.SynapseRequest): The request to render.
|
|
|
|
"""
|
|
|
|
render(request, self.resource, self.reactor)
|
|
|
|
|
|
|
|
def setup_test_homeserver(self, *args, **kwargs):
|
|
|
|
"""
|
|
|
|
Set up the test homeserver, meant to be called by the overridable
|
|
|
|
make_homeserver. It automatically passes through the test class's
|
|
|
|
clock & reactor.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
See tests.utils.setup_test_homeserver.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
synapse.server.HomeServer
|
|
|
|
"""
|
|
|
|
kwargs = dict(kwargs)
|
|
|
|
kwargs.update(self._hs_args)
|
2019-03-21 11:10:21 -04:00
|
|
|
if "config" not in kwargs:
|
|
|
|
config = self.default_config()
|
2019-05-13 16:01:14 -04:00
|
|
|
else:
|
|
|
|
config = kwargs["config"]
|
|
|
|
|
|
|
|
# Parse the config from a config dict into a HomeServerConfig
|
|
|
|
config_obj = HomeServerConfig()
|
2019-06-24 06:34:45 -04:00
|
|
|
config_obj.parse_config_dict(config, "", "")
|
2019-05-13 16:01:14 -04:00
|
|
|
kwargs["config"] = config_obj
|
|
|
|
|
2020-03-31 12:27:56 -04:00
|
|
|
async def run_bg_updates():
|
|
|
|
with LoggingContext("run_bg_updates", request="run_bg_updates-1"):
|
2020-08-05 16:38:57 -04:00
|
|
|
while not await stor.db_pool.updates.has_completed_background_updates():
|
|
|
|
await stor.db_pool.updates.do_next_background_update(1)
|
2020-03-31 12:27:56 -04:00
|
|
|
|
2019-01-24 05:31:54 -05:00
|
|
|
hs = setup_test_homeserver(self.addCleanup, *args, **kwargs)
|
|
|
|
stor = hs.get_datastore()
|
|
|
|
|
2019-12-04 10:09:36 -05:00
|
|
|
# Run the database background updates, when running against "master".
|
|
|
|
if hs.__class__.__name__ == "TestHomeServer":
|
2020-03-31 12:27:56 -04:00
|
|
|
self.get_success(run_bg_updates())
|
2019-01-24 05:31:54 -05:00
|
|
|
|
|
|
|
return hs
|
2018-08-30 10:19:58 -04:00
|
|
|
|
2018-09-03 12:21:48 -04:00
|
|
|
def pump(self, by=0.0):
|
2018-08-30 10:19:58 -04:00
|
|
|
"""
|
|
|
|
Pump the reactor enough that Deferreds will fire.
|
|
|
|
"""
|
2018-09-03 12:21:48 -04:00
|
|
|
self.reactor.pump([by] * 100)
|
2018-08-30 10:19:58 -04:00
|
|
|
|
2019-03-18 13:50:24 -04:00
|
|
|
def get_success(self, d, by=0.0):
|
2019-12-05 12:58:25 -05:00
|
|
|
if inspect.isawaitable(d):
|
|
|
|
d = ensureDeferred(d)
|
2018-09-03 12:21:48 -04:00
|
|
|
if not isinstance(d, Deferred):
|
|
|
|
return d
|
2019-03-18 13:50:24 -04:00
|
|
|
self.pump(by=by)
|
2018-08-30 10:19:58 -04:00
|
|
|
return self.successResultOf(d)
|
2018-10-01 10:11:58 -04:00
|
|
|
|
2019-03-21 11:10:21 -04:00
|
|
|
def get_failure(self, d, exc):
|
|
|
|
"""
|
|
|
|
Run a Deferred and get a Failure from it. The failure must be of the type `exc`.
|
|
|
|
"""
|
2019-12-05 12:58:25 -05:00
|
|
|
if inspect.isawaitable(d):
|
|
|
|
d = ensureDeferred(d)
|
2019-03-21 11:10:21 -04:00
|
|
|
if not isinstance(d, Deferred):
|
|
|
|
return d
|
|
|
|
self.pump()
|
|
|
|
return self.failureResultOf(d, exc)
|
|
|
|
|
2018-10-01 10:11:58 -04:00
|
|
|
def register_user(self, username, password, admin=False):
|
|
|
|
"""
|
|
|
|
Register a user. Requires the Admin API be registered.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
username (bytes/unicode): The user part of the new user.
|
|
|
|
password (bytes/unicode): The password of the new user.
|
|
|
|
admin (bool): Whether the user should be created as an admin
|
|
|
|
or not.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
The MXID of the new user (unicode).
|
|
|
|
"""
|
2019-06-20 05:32:02 -04:00
|
|
|
self.hs.config.registration_shared_secret = "shared"
|
2018-10-01 10:11:58 -04:00
|
|
|
|
|
|
|
# Create the user
|
|
|
|
request, channel = self.make_request("GET", "/_matrix/client/r0/admin/register")
|
|
|
|
self.render(request)
|
2020-01-20 12:38:09 -05:00
|
|
|
self.assertEqual(channel.code, 200, msg=channel.result)
|
2018-10-01 10:11:58 -04:00
|
|
|
nonce = channel.json_body["nonce"]
|
|
|
|
|
|
|
|
want_mac = hmac.new(key=b"shared", digestmod=hashlib.sha1)
|
2019-06-20 05:32:02 -04:00
|
|
|
nonce_str = b"\x00".join([username.encode("utf8"), password.encode("utf8")])
|
2018-10-01 10:11:58 -04:00
|
|
|
if admin:
|
|
|
|
nonce_str += b"\x00admin"
|
|
|
|
else:
|
|
|
|
nonce_str += b"\x00notadmin"
|
2018-12-14 13:20:59 -05:00
|
|
|
|
2019-06-20 05:32:02 -04:00
|
|
|
want_mac.update(nonce.encode("ascii") + b"\x00" + nonce_str)
|
2018-10-01 10:11:58 -04:00
|
|
|
want_mac = want_mac.hexdigest()
|
|
|
|
|
|
|
|
body = json.dumps(
|
|
|
|
{
|
|
|
|
"nonce": nonce,
|
|
|
|
"username": username,
|
|
|
|
"password": password,
|
|
|
|
"admin": admin,
|
|
|
|
"mac": want_mac,
|
2020-03-27 07:39:43 -04:00
|
|
|
"inhibit_login": True,
|
2018-10-01 10:11:58 -04:00
|
|
|
}
|
|
|
|
)
|
|
|
|
request, channel = self.make_request(
|
2019-06-20 05:32:02 -04:00
|
|
|
"POST", "/_matrix/client/r0/admin/register", body.encode("utf8")
|
2018-10-01 10:11:58 -04:00
|
|
|
)
|
|
|
|
self.render(request)
|
2019-07-01 12:55:11 -04:00
|
|
|
self.assertEqual(channel.code, 200, channel.json_body)
|
2018-10-01 10:11:58 -04:00
|
|
|
|
|
|
|
user_id = channel.json_body["user_id"]
|
|
|
|
return user_id
|
|
|
|
|
|
|
|
def login(self, username, password, device_id=None):
|
|
|
|
"""
|
|
|
|
Log in a user, and get an access token. Requires the Login API be
|
|
|
|
registered.
|
|
|
|
|
|
|
|
"""
|
|
|
|
body = {"type": "m.login.password", "user": username, "password": password}
|
|
|
|
if device_id:
|
|
|
|
body["device_id"] = device_id
|
|
|
|
|
|
|
|
request, channel = self.make_request(
|
2019-06-20 05:32:02 -04:00
|
|
|
"POST", "/_matrix/client/r0/login", json.dumps(body).encode("utf8")
|
2018-10-01 10:11:58 -04:00
|
|
|
)
|
|
|
|
self.render(request)
|
2019-04-04 12:25:47 -04:00
|
|
|
self.assertEqual(channel.code, 200, channel.result)
|
2018-10-01 10:11:58 -04:00
|
|
|
|
2018-10-30 08:55:43 -04:00
|
|
|
access_token = channel.json_body["access_token"]
|
2018-10-01 10:11:58 -04:00
|
|
|
return access_token
|
2019-06-11 06:31:12 -04:00
|
|
|
|
2019-06-13 08:40:52 -04:00
|
|
|
def create_and_send_event(
|
|
|
|
self, room_id, user, soft_failed=False, prev_event_ids=None
|
|
|
|
):
|
|
|
|
"""
|
|
|
|
Create and send an event.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
soft_failed (bool): Whether to create a soft failed event or not
|
|
|
|
prev_event_ids (list[str]|None): Explicitly set the prev events,
|
|
|
|
or if None just use the default
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
str: The new event's ID.
|
|
|
|
"""
|
|
|
|
event_creator = self.hs.get_event_creation_handler()
|
|
|
|
secrets = self.hs.get_secrets()
|
2020-08-14 12:37:59 -04:00
|
|
|
requester = Requester(user, None, False, False, None, None)
|
2019-06-13 08:40:52 -04:00
|
|
|
|
|
|
|
event, context = self.get_success(
|
|
|
|
event_creator.create_event(
|
|
|
|
requester,
|
|
|
|
{
|
|
|
|
"type": EventTypes.Message,
|
|
|
|
"room_id": room_id,
|
|
|
|
"sender": user.to_string(),
|
|
|
|
"content": {"body": secrets.token_hex(), "msgtype": "m.text"},
|
|
|
|
},
|
2020-01-03 11:19:55 -05:00
|
|
|
prev_event_ids=prev_event_ids,
|
2019-06-13 08:40:52 -04:00
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
if soft_failed:
|
|
|
|
event.internal_metadata.soft_failed = True
|
|
|
|
|
2019-06-20 05:32:02 -04:00
|
|
|
self.get_success(event_creator.send_nonmember_event(requester, event, context))
|
2019-06-13 08:40:52 -04:00
|
|
|
|
|
|
|
return event.event_id
|
|
|
|
|
|
|
|
def add_extremity(self, room_id, event_id):
|
|
|
|
"""
|
|
|
|
Add the given event as an extremity to the room.
|
|
|
|
"""
|
|
|
|
self.get_success(
|
2020-08-05 16:38:57 -04:00
|
|
|
self.hs.get_datastore().db_pool.simple_insert(
|
2019-06-13 08:40:52 -04:00
|
|
|
table="event_forward_extremities",
|
|
|
|
values={"room_id": room_id, "event_id": event_id},
|
|
|
|
desc="test_add_extremity",
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
self.hs.get_datastore().get_latest_event_ids_in_room.invalidate((room_id,))
|
|
|
|
|
2019-06-11 06:31:12 -04:00
|
|
|
def attempt_wrong_password_login(self, username, password):
|
|
|
|
"""Attempts to login as the user with the given password, asserting
|
|
|
|
that the attempt *fails*.
|
|
|
|
"""
|
|
|
|
body = {"type": "m.login.password", "user": username, "password": password}
|
|
|
|
|
|
|
|
request, channel = self.make_request(
|
2019-06-20 05:32:02 -04:00
|
|
|
"POST", "/_matrix/client/r0/login", json.dumps(body).encode("utf8")
|
2019-06-11 06:31:12 -04:00
|
|
|
)
|
|
|
|
self.render(request)
|
|
|
|
self.assertEqual(channel.code, 403, channel.result)
|
2019-07-12 05:16:23 -04:00
|
|
|
|
2019-11-27 16:54:07 -05:00
|
|
|
def inject_room_member(self, room: str, user: str, membership: Membership) -> None:
|
|
|
|
"""
|
|
|
|
Inject a membership event into a room.
|
|
|
|
|
2020-04-29 07:30:36 -04:00
|
|
|
Deprecated: use event_injection.inject_room_member directly
|
|
|
|
|
2019-11-27 16:54:07 -05:00
|
|
|
Args:
|
|
|
|
room: Room ID to inject the event into.
|
|
|
|
user: MXID of the user to inject the membership for.
|
|
|
|
membership: The membership type.
|
|
|
|
"""
|
2020-07-22 12:29:15 -04:00
|
|
|
self.get_success(
|
|
|
|
event_injection.inject_member_event(self.hs, room, user, membership)
|
|
|
|
)
|
2019-11-27 16:54:07 -05:00
|
|
|
|
|
|
|
|
|
|
|
class FederatingHomeserverTestCase(HomeserverTestCase):
|
|
|
|
"""
|
|
|
|
A federating homeserver that authenticates incoming requests as `other.example.com`.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def prepare(self, reactor, clock, homeserver):
|
|
|
|
class Authenticator(object):
|
|
|
|
def authenticate_request(self, request, content):
|
|
|
|
return succeed("other.example.com")
|
|
|
|
|
|
|
|
ratelimiter = FederationRateLimiter(
|
|
|
|
clock,
|
|
|
|
FederationRateLimitConfig(
|
|
|
|
window_size=1,
|
|
|
|
sleep_limit=1,
|
|
|
|
sleep_msec=1,
|
|
|
|
reject_limit=1000,
|
|
|
|
concurrent_requests=1000,
|
|
|
|
),
|
|
|
|
)
|
|
|
|
federation_server.register_servlets(
|
|
|
|
homeserver, self.resource, Authenticator(), ratelimiter
|
|
|
|
)
|
|
|
|
|
|
|
|
return super().prepare(reactor, clock, homeserver)
|
|
|
|
|
2019-07-12 05:16:23 -04:00
|
|
|
|
|
|
|
def override_config(extra_config):
|
|
|
|
"""A decorator which can be applied to test functions to give additional HS config
|
|
|
|
|
|
|
|
For use
|
|
|
|
|
|
|
|
For example:
|
|
|
|
|
|
|
|
class MyTestCase(HomeserverTestCase):
|
|
|
|
@override_config({"enable_registration": False, ...})
|
|
|
|
def test_foo(self):
|
|
|
|
...
|
|
|
|
|
|
|
|
Args:
|
|
|
|
extra_config(dict): Additional config settings to be merged into the default
|
|
|
|
config dict before instantiating the test homeserver.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def decorator(func):
|
|
|
|
func._extra_config = extra_config
|
|
|
|
return func
|
|
|
|
|
|
|
|
return decorator
|