unittest.py 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782
  1. # -*- coding: utf-8 -*-
  2. # Copyright 2014-2016 OpenMarket Ltd
  3. # Copyright 2018 New Vector
  4. # Copyright 2019 Matrix.org Federation C.I.C
  5. #
  6. # Licensed under the Apache License, Version 2.0 (the "License");
  7. # you may not use this file except in compliance with the License.
  8. # You may obtain a copy of the License at
  9. #
  10. # http://www.apache.org/licenses/LICENSE-2.0
  11. #
  12. # Unless required by applicable law or agreed to in writing, software
  13. # distributed under the License is distributed on an "AS IS" BASIS,
  14. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. # See the License for the specific language governing permissions and
  16. # limitations under the License.
  17. import gc
  18. import hashlib
  19. import hmac
  20. import inspect
  21. import logging
  22. import time
  23. from typing import Callable, Dict, Iterable, Optional, Tuple, Type, TypeVar, Union
  24. from mock import Mock, patch
  25. from canonicaljson import json
  26. from twisted.internet.defer import Deferred, ensureDeferred, succeed
  27. from twisted.python.failure import Failure
  28. from twisted.python.threadpool import ThreadPool
  29. from twisted.trial import unittest
  30. from twisted.web.resource import Resource
  31. from synapse import events
  32. from synapse.api.constants import EventTypes, Membership
  33. from synapse.config.homeserver import HomeServerConfig
  34. from synapse.config.ratelimiting import FederationRateLimitConfig
  35. from synapse.federation.transport import server as federation_server
  36. from synapse.http.server import JsonResource
  37. from synapse.http.site import SynapseRequest, SynapseSite
  38. from synapse.logging.context import (
  39. SENTINEL_CONTEXT,
  40. LoggingContext,
  41. current_context,
  42. set_current_context,
  43. )
  44. from synapse.server import HomeServer
  45. from synapse.types import UserID, create_requester
  46. from synapse.util.httpresourcetree import create_resource_tree
  47. from synapse.util.ratelimitutils import FederationRateLimiter
  48. from tests.server import FakeChannel, get_clock, make_request, setup_test_homeserver
  49. from tests.test_utils import event_injection, setup_awaitable_errors
  50. from tests.test_utils.logging_setup import setup_logging
  51. from tests.utils import default_config, setupdb
  52. setupdb()
  53. setup_logging()
  54. def around(target):
  55. """A CLOS-style 'around' modifier, which wraps the original method of the
  56. given instance with another piece of code.
  57. @around(self)
  58. def method_name(orig, *args, **kwargs):
  59. return orig(*args, **kwargs)
  60. """
  61. def _around(code):
  62. name = code.__name__
  63. orig = getattr(target, name)
  64. def new(*args, **kwargs):
  65. return code(orig, *args, **kwargs)
  66. setattr(target, name, new)
  67. return _around
  68. T = TypeVar("T")
  69. class TestCase(unittest.TestCase):
  70. """A subclass of twisted.trial's TestCase which looks for 'loglevel'
  71. attributes on both itself and its individual test methods, to override the
  72. root logger's logging level while that test (case|method) runs."""
  73. def __init__(self, methodName, *args, **kwargs):
  74. super().__init__(methodName, *args, **kwargs)
  75. method = getattr(self, methodName)
  76. level = getattr(method, "loglevel", getattr(self, "loglevel", None))
  77. @around(self)
  78. def setUp(orig):
  79. # if we're not starting in the sentinel logcontext, then to be honest
  80. # all future bets are off.
  81. if current_context():
  82. self.fail(
  83. "Test starting with non-sentinel logging context %s"
  84. % (current_context(),)
  85. )
  86. old_level = logging.getLogger().level
  87. if level is not None and old_level != level:
  88. @around(self)
  89. def tearDown(orig):
  90. ret = orig()
  91. logging.getLogger().setLevel(old_level)
  92. return ret
  93. logging.getLogger().setLevel(level)
  94. # Trial messes with the warnings configuration, thus this has to be
  95. # done in the context of an individual TestCase.
  96. self.addCleanup(setup_awaitable_errors())
  97. return orig()
  98. @around(self)
  99. def tearDown(orig):
  100. ret = orig()
  101. # force a GC to workaround problems with deferreds leaking logcontexts when
  102. # they are GCed (see the logcontext docs)
  103. gc.collect()
  104. set_current_context(SENTINEL_CONTEXT)
  105. return ret
  106. def assertObjectHasAttributes(self, attrs, obj):
  107. """Asserts that the given object has each of the attributes given, and
  108. that the value of each matches according to assertEquals."""
  109. for (key, value) in attrs.items():
  110. if not hasattr(obj, key):
  111. raise AssertionError("Expected obj to have a '.%s'" % key)
  112. try:
  113. self.assertEquals(attrs[key], getattr(obj, key))
  114. except AssertionError as e:
  115. raise (type(e))("Assert error for '.{}':".format(key)) from e
  116. def assert_dict(self, required, actual):
  117. """Does a partial assert of a dict.
  118. Args:
  119. required (dict): The keys and value which MUST be in 'actual'.
  120. actual (dict): The test result. Extra keys will not be checked.
  121. """
  122. for key in required:
  123. self.assertEquals(
  124. required[key], actual[key], msg="%s mismatch. %s" % (key, actual)
  125. )
  126. def DEBUG(target):
  127. """A decorator to set the .loglevel attribute to logging.DEBUG.
  128. Can apply to either a TestCase or an individual test method."""
  129. target.loglevel = logging.DEBUG
  130. return target
  131. def INFO(target):
  132. """A decorator to set the .loglevel attribute to logging.INFO.
  133. Can apply to either a TestCase or an individual test method."""
  134. target.loglevel = logging.INFO
  135. return target
  136. def logcontext_clean(target):
  137. """A decorator which marks the TestCase or method as 'logcontext_clean'
  138. ... ie, any logcontext errors should cause a test failure
  139. """
  140. def logcontext_error(msg):
  141. raise AssertionError("logcontext error: %s" % (msg))
  142. patcher = patch("synapse.logging.context.logcontext_error", new=logcontext_error)
  143. return patcher(target)
  144. class HomeserverTestCase(TestCase):
  145. """
  146. A base TestCase that reduces boilerplate for HomeServer-using test cases.
  147. Defines a setUp method which creates a mock reactor, and instantiates a homeserver
  148. running on that reactor.
  149. There are various hooks for modifying the way that the homeserver is instantiated:
  150. * override make_homeserver, for example by making it pass different parameters into
  151. setup_test_homeserver.
  152. * override default_config, to return a modified configuration dictionary for use
  153. by setup_test_homeserver.
  154. * On a per-test basis, you can use the @override_config decorator to give a
  155. dictionary containing additional configuration settings to be added to the basic
  156. config dict.
  157. Attributes:
  158. servlets (list[function]): List of servlet registration function.
  159. user_id (str): The user ID to assume if auth is hijacked.
  160. hijack_auth (bool): Whether to hijack auth to return the user specified
  161. in user_id.
  162. """
  163. servlets = []
  164. hijack_auth = True
  165. needs_threadpool = False
  166. def __init__(self, methodName, *args, **kwargs):
  167. super().__init__(methodName, *args, **kwargs)
  168. # see if we have any additional config for this test
  169. method = getattr(self, methodName)
  170. self._extra_config = getattr(method, "_extra_config", None)
  171. def setUp(self):
  172. """
  173. Set up the TestCase by calling the homeserver constructor, optionally
  174. hijacking the authentication system to return a fixed user, and then
  175. calling the prepare function.
  176. """
  177. self.reactor, self.clock = get_clock()
  178. self._hs_args = {"clock": self.clock, "reactor": self.reactor}
  179. self.hs = self.make_homeserver(self.reactor, self.clock)
  180. # Honour the `use_frozen_dicts` config option. We have to do this
  181. # manually because this is taken care of in the app `start` code, which
  182. # we don't run. Plus we want to reset it on tearDown.
  183. events.USE_FROZEN_DICTS = self.hs.config.use_frozen_dicts
  184. if self.hs is None:
  185. raise Exception("No homeserver returned from make_homeserver.")
  186. if not isinstance(self.hs, HomeServer):
  187. raise Exception("A homeserver wasn't returned, but %r" % (self.hs,))
  188. # create the root resource, and a site to wrap it.
  189. self.resource = self.create_test_resource()
  190. self.site = SynapseSite(
  191. logger_name="synapse.access.http.fake",
  192. site_tag=self.hs.config.server.server_name,
  193. config=self.hs.config.server.listeners[0],
  194. resource=self.resource,
  195. server_version_string="1",
  196. )
  197. from tests.rest.client.v1.utils import RestHelper
  198. self.helper = RestHelper(self.hs, self.site, getattr(self, "user_id", None))
  199. if hasattr(self, "user_id"):
  200. if self.hijack_auth:
  201. # We need a valid token ID to satisfy foreign key constraints.
  202. token_id = self.get_success(
  203. self.hs.get_datastore().add_access_token_to_user(
  204. self.helper.auth_user_id,
  205. "some_fake_token",
  206. None,
  207. None,
  208. )
  209. )
  210. async def get_user_by_access_token(token=None, allow_guest=False):
  211. return {
  212. "user": UserID.from_string(self.helper.auth_user_id),
  213. "token_id": token_id,
  214. "is_guest": False,
  215. }
  216. async def get_user_by_req(request, allow_guest=False, rights="access"):
  217. return create_requester(
  218. UserID.from_string(self.helper.auth_user_id),
  219. token_id,
  220. False,
  221. False,
  222. None,
  223. )
  224. self.hs.get_auth().get_user_by_req = get_user_by_req
  225. self.hs.get_auth().get_user_by_access_token = get_user_by_access_token
  226. self.hs.get_auth().get_access_token_from_request = Mock(
  227. return_value="1234"
  228. )
  229. if self.needs_threadpool:
  230. self.reactor.threadpool = ThreadPool()
  231. self.addCleanup(self.reactor.threadpool.stop)
  232. self.reactor.threadpool.start()
  233. if hasattr(self, "prepare"):
  234. self.prepare(self.reactor, self.clock, self.hs)
  235. def tearDown(self):
  236. # Reset to not use frozen dicts.
  237. events.USE_FROZEN_DICTS = False
  238. def wait_on_thread(self, deferred, timeout=10):
  239. """
  240. Wait until a Deferred is done, where it's waiting on a real thread.
  241. """
  242. start_time = time.time()
  243. while not deferred.called:
  244. if start_time + timeout < time.time():
  245. raise ValueError("Timed out waiting for threadpool")
  246. self.reactor.advance(0.01)
  247. time.sleep(0.01)
  248. def make_homeserver(self, reactor, clock):
  249. """
  250. Make and return a homeserver.
  251. Args:
  252. reactor: A Twisted Reactor, or something that pretends to be one.
  253. clock (synapse.util.Clock): The Clock, associated with the reactor.
  254. Returns:
  255. A homeserver (synapse.server.HomeServer) suitable for testing.
  256. Function to be overridden in subclasses.
  257. """
  258. hs = self.setup_test_homeserver()
  259. return hs
  260. def create_test_resource(self) -> Resource:
  261. """
  262. Create a the root resource for the test server.
  263. The default calls `self.create_resource_dict` and builds the resultant dict
  264. into a tree.
  265. """
  266. root_resource = Resource()
  267. create_resource_tree(self.create_resource_dict(), root_resource)
  268. return root_resource
  269. def create_resource_dict(self) -> Dict[str, Resource]:
  270. """Create a resource tree for the test server
  271. A resource tree is a mapping from path to twisted.web.resource.
  272. The default implementation creates a JsonResource and calls each function in
  273. `servlets` to register servlets against it.
  274. """
  275. servlet_resource = JsonResource(self.hs)
  276. for servlet in self.servlets:
  277. servlet(self.hs, servlet_resource)
  278. return {
  279. "/_matrix/client": servlet_resource,
  280. "/_synapse/admin": servlet_resource,
  281. }
  282. def default_config(self):
  283. """
  284. Get a default HomeServer config dict.
  285. """
  286. config = default_config("test")
  287. # apply any additional config which was specified via the override_config
  288. # decorator.
  289. if self._extra_config is not None:
  290. config.update(self._extra_config)
  291. return config
  292. def prepare(self, reactor, clock, homeserver):
  293. """
  294. Prepare for the test. This involves things like mocking out parts of
  295. the homeserver, or building test data common across the whole test
  296. suite.
  297. Args:
  298. reactor: A Twisted Reactor, or something that pretends to be one.
  299. clock (synapse.util.Clock): The Clock, associated with the reactor.
  300. homeserver (synapse.server.HomeServer): The HomeServer to test
  301. against.
  302. Function to optionally be overridden in subclasses.
  303. """
  304. def make_request(
  305. self,
  306. method: Union[bytes, str],
  307. path: Union[bytes, str],
  308. content: Union[bytes, dict] = b"",
  309. access_token: Optional[str] = None,
  310. request: Type[T] = SynapseRequest,
  311. shorthand: bool = True,
  312. federation_auth_origin: str = None,
  313. content_is_form: bool = False,
  314. await_result: bool = True,
  315. custom_headers: Optional[
  316. Iterable[Tuple[Union[bytes, str], Union[bytes, str]]]
  317. ] = None,
  318. client_ip: str = "127.0.0.1",
  319. ) -> FakeChannel:
  320. """
  321. Create a SynapseRequest at the path using the method and containing the
  322. given content.
  323. Args:
  324. method (bytes/unicode): The HTTP request method ("verb").
  325. path (bytes/unicode): The HTTP path, suitably URL encoded (e.g.
  326. escaped UTF-8 & spaces and such).
  327. content (bytes or dict): The body of the request. JSON-encoded, if
  328. a dict.
  329. shorthand: Whether to try and be helpful and prefix the given URL
  330. with the usual REST API path, if it doesn't contain it.
  331. federation_auth_origin (bytes|None): if set to not-None, we will add a fake
  332. Authorization header pretenting to be the given server name.
  333. content_is_form: Whether the content is URL encoded form data. Adds the
  334. 'Content-Type': 'application/x-www-form-urlencoded' header.
  335. await_result: whether to wait for the request to complete rendering. If
  336. true (the default), will pump the test reactor until the the renderer
  337. tells the channel the request is finished.
  338. custom_headers: (name, value) pairs to add as request headers
  339. client_ip: The IP to use as the requesting IP. Useful for testing
  340. ratelimiting.
  341. Returns:
  342. The FakeChannel object which stores the result of the request.
  343. """
  344. return make_request(
  345. self.reactor,
  346. self.site,
  347. method,
  348. path,
  349. content,
  350. access_token,
  351. request,
  352. shorthand,
  353. federation_auth_origin,
  354. content_is_form,
  355. await_result,
  356. custom_headers,
  357. client_ip,
  358. )
  359. def setup_test_homeserver(self, *args, **kwargs):
  360. """
  361. Set up the test homeserver, meant to be called by the overridable
  362. make_homeserver. It automatically passes through the test class's
  363. clock & reactor.
  364. Args:
  365. See tests.utils.setup_test_homeserver.
  366. Returns:
  367. synapse.server.HomeServer
  368. """
  369. kwargs = dict(kwargs)
  370. kwargs.update(self._hs_args)
  371. if "config" not in kwargs:
  372. config = self.default_config()
  373. else:
  374. config = kwargs["config"]
  375. # Parse the config from a config dict into a HomeServerConfig
  376. config_obj = HomeServerConfig()
  377. config_obj.parse_config_dict(config, "", "")
  378. kwargs["config"] = config_obj
  379. async def run_bg_updates():
  380. with LoggingContext("run_bg_updates", request="run_bg_updates-1"):
  381. while not await stor.db_pool.updates.has_completed_background_updates():
  382. await stor.db_pool.updates.do_next_background_update(1)
  383. hs = setup_test_homeserver(self.addCleanup, *args, **kwargs)
  384. stor = hs.get_datastore()
  385. # Run the database background updates, when running against "master".
  386. if hs.__class__.__name__ == "TestHomeServer":
  387. self.get_success(run_bg_updates())
  388. return hs
  389. def pump(self, by=0.0):
  390. """
  391. Pump the reactor enough that Deferreds will fire.
  392. """
  393. self.reactor.pump([by] * 100)
  394. def get_success(self, d, by=0.0):
  395. if inspect.isawaitable(d):
  396. d = ensureDeferred(d)
  397. if not isinstance(d, Deferred):
  398. return d
  399. self.pump(by=by)
  400. return self.successResultOf(d)
  401. def get_failure(self, d, exc):
  402. """
  403. Run a Deferred and get a Failure from it. The failure must be of the type `exc`.
  404. """
  405. if inspect.isawaitable(d):
  406. d = ensureDeferred(d)
  407. if not isinstance(d, Deferred):
  408. return d
  409. self.pump()
  410. return self.failureResultOf(d, exc)
  411. def get_success_or_raise(self, d, by=0.0):
  412. """Drive deferred to completion and return result or raise exception
  413. on failure.
  414. """
  415. if inspect.isawaitable(d):
  416. deferred = ensureDeferred(d)
  417. if not isinstance(deferred, Deferred):
  418. return d
  419. results = [] # type: list
  420. deferred.addBoth(results.append)
  421. self.pump(by=by)
  422. if not results:
  423. self.fail(
  424. "Success result expected on {!r}, found no result instead".format(
  425. deferred
  426. )
  427. )
  428. result = results[0]
  429. if isinstance(result, Failure):
  430. result.raiseException()
  431. return result
  432. def register_user(
  433. self,
  434. username: str,
  435. password: str,
  436. admin: Optional[bool] = False,
  437. displayname: Optional[str] = None,
  438. ) -> str:
  439. """
  440. Register a user. Requires the Admin API be registered.
  441. Args:
  442. username: The user part of the new user.
  443. password: The password of the new user.
  444. admin: Whether the user should be created as an admin or not.
  445. displayname: The displayname of the new user.
  446. Returns:
  447. The MXID of the new user.
  448. """
  449. self.hs.config.registration_shared_secret = "shared"
  450. # Create the user
  451. channel = self.make_request("GET", "/_synapse/admin/v1/register")
  452. self.assertEqual(channel.code, 200, msg=channel.result)
  453. nonce = channel.json_body["nonce"]
  454. want_mac = hmac.new(key=b"shared", digestmod=hashlib.sha1)
  455. nonce_str = b"\x00".join([username.encode("utf8"), password.encode("utf8")])
  456. if admin:
  457. nonce_str += b"\x00admin"
  458. else:
  459. nonce_str += b"\x00notadmin"
  460. want_mac.update(nonce.encode("ascii") + b"\x00" + nonce_str)
  461. want_mac = want_mac.hexdigest()
  462. body = json.dumps(
  463. {
  464. "nonce": nonce,
  465. "username": username,
  466. "displayname": displayname,
  467. "password": password,
  468. "admin": admin,
  469. "mac": want_mac,
  470. "inhibit_login": True,
  471. }
  472. )
  473. channel = self.make_request(
  474. "POST", "/_synapse/admin/v1/register", body.encode("utf8")
  475. )
  476. self.assertEqual(channel.code, 200, channel.json_body)
  477. user_id = channel.json_body["user_id"]
  478. return user_id
  479. def login(self, username, password, device_id=None):
  480. """
  481. Log in a user, and get an access token. Requires the Login API be
  482. registered.
  483. """
  484. body = {"type": "m.login.password", "user": username, "password": password}
  485. if device_id:
  486. body["device_id"] = device_id
  487. channel = self.make_request(
  488. "POST", "/_matrix/client/r0/login", json.dumps(body).encode("utf8")
  489. )
  490. self.assertEqual(channel.code, 200, channel.result)
  491. access_token = channel.json_body["access_token"]
  492. return access_token
  493. def create_and_send_event(
  494. self, room_id, user, soft_failed=False, prev_event_ids=None
  495. ):
  496. """
  497. Create and send an event.
  498. Args:
  499. soft_failed (bool): Whether to create a soft failed event or not
  500. prev_event_ids (list[str]|None): Explicitly set the prev events,
  501. or if None just use the default
  502. Returns:
  503. str: The new event's ID.
  504. """
  505. event_creator = self.hs.get_event_creation_handler()
  506. secrets = self.hs.get_secrets()
  507. requester = create_requester(user)
  508. event, context = self.get_success(
  509. event_creator.create_event(
  510. requester,
  511. {
  512. "type": EventTypes.Message,
  513. "room_id": room_id,
  514. "sender": user.to_string(),
  515. "content": {"body": secrets.token_hex(), "msgtype": "m.text"},
  516. },
  517. prev_event_ids=prev_event_ids,
  518. )
  519. )
  520. if soft_failed:
  521. event.internal_metadata.soft_failed = True
  522. self.get_success(
  523. event_creator.handle_new_client_event(requester, event, context)
  524. )
  525. return event.event_id
  526. def add_extremity(self, room_id, event_id):
  527. """
  528. Add the given event as an extremity to the room.
  529. """
  530. self.get_success(
  531. self.hs.get_datastore().db_pool.simple_insert(
  532. table="event_forward_extremities",
  533. values={"room_id": room_id, "event_id": event_id},
  534. desc="test_add_extremity",
  535. )
  536. )
  537. self.hs.get_datastore().get_latest_event_ids_in_room.invalidate((room_id,))
  538. def attempt_wrong_password_login(self, username, password):
  539. """Attempts to login as the user with the given password, asserting
  540. that the attempt *fails*.
  541. """
  542. body = {"type": "m.login.password", "user": username, "password": password}
  543. channel = self.make_request(
  544. "POST", "/_matrix/client/r0/login", json.dumps(body).encode("utf8")
  545. )
  546. self.assertEqual(channel.code, 403, channel.result)
  547. def inject_room_member(self, room: str, user: str, membership: Membership) -> None:
  548. """
  549. Inject a membership event into a room.
  550. Deprecated: use event_injection.inject_room_member directly
  551. Args:
  552. room: Room ID to inject the event into.
  553. user: MXID of the user to inject the membership for.
  554. membership: The membership type.
  555. """
  556. self.get_success(
  557. event_injection.inject_member_event(self.hs, room, user, membership)
  558. )
  559. class FederatingHomeserverTestCase(HomeserverTestCase):
  560. """
  561. A federating homeserver that authenticates incoming requests as `other.example.com`.
  562. """
  563. def create_resource_dict(self) -> Dict[str, Resource]:
  564. d = super().create_resource_dict()
  565. d["/_matrix/federation"] = TestTransportLayerServer(self.hs)
  566. return d
  567. class TestTransportLayerServer(JsonResource):
  568. """A test implementation of TransportLayerServer
  569. authenticates incoming requests as `other.example.com`.
  570. """
  571. def __init__(self, hs):
  572. super().__init__(hs)
  573. class Authenticator:
  574. def authenticate_request(self, request, content):
  575. return succeed("other.example.com")
  576. authenticator = Authenticator()
  577. ratelimiter = FederationRateLimiter(
  578. hs.get_clock(),
  579. FederationRateLimitConfig(
  580. window_size=1,
  581. sleep_limit=1,
  582. sleep_msec=1,
  583. reject_limit=1000,
  584. concurrent_requests=1000,
  585. ),
  586. )
  587. federation_server.register_servlets(hs, self, authenticator, ratelimiter)
  588. def override_config(extra_config):
  589. """A decorator which can be applied to test functions to give additional HS config
  590. For use
  591. For example:
  592. class MyTestCase(HomeserverTestCase):
  593. @override_config({"enable_registration": False, ...})
  594. def test_foo(self):
  595. ...
  596. Args:
  597. extra_config(dict): Additional config settings to be merged into the default
  598. config dict before instantiating the test homeserver.
  599. """
  600. def decorator(func):
  601. func._extra_config = extra_config
  602. return func
  603. return decorator
  604. TV = TypeVar("TV")
  605. def skip_unless(condition: bool, reason: str) -> Callable[[TV], TV]:
  606. """A test decorator which will skip the decorated test unless a condition is set
  607. For example:
  608. class MyTestCase(TestCase):
  609. @skip_unless(HAS_FOO, "Cannot test without foo")
  610. def test_foo(self):
  611. ...
  612. Args:
  613. condition: If true, the test will be skipped
  614. reason: the reason to give for skipping the test
  615. """
  616. def decorator(f: TV) -> TV:
  617. if not condition:
  618. f.skip = reason # type: ignore
  619. return f
  620. return decorator