unittest.py 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584
  1. # -*- coding: utf-8 -*-
  2. # Copyright 2014-2016 OpenMarket Ltd
  3. # Copyright 2018 New Vector
  4. #
  5. # Licensed under the Apache License, Version 2.0 (the "License");
  6. # you may not use this file except in compliance with the License.
  7. # You may obtain a copy of the License at
  8. #
  9. # http://www.apache.org/licenses/LICENSE-2.0
  10. #
  11. # Unless required by applicable law or agreed to in writing, software
  12. # distributed under the License is distributed on an "AS IS" BASIS,
  13. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. # See the License for the specific language governing permissions and
  15. # limitations under the License.
  16. import gc
  17. import hashlib
  18. import hmac
  19. import logging
  20. import time
  21. from mock import Mock
  22. from canonicaljson import json
  23. from twisted.internet.defer import Deferred, succeed
  24. from twisted.python.threadpool import ThreadPool
  25. from twisted.trial import unittest
  26. from synapse.api.constants import EventTypes
  27. from synapse.config.homeserver import HomeServerConfig
  28. from synapse.http.server import JsonResource
  29. from synapse.http.site import SynapseRequest
  30. from synapse.logging.context import LoggingContext
  31. from synapse.server import HomeServer
  32. from synapse.types import Requester, UserID, create_requester
  33. from tests.server import get_clock, make_request, render, setup_test_homeserver
  34. from tests.test_utils.logging_setup import setup_logging
  35. from tests.utils import default_config, setupdb
  36. setupdb()
  37. setup_logging()
  38. def around(target):
  39. """A CLOS-style 'around' modifier, which wraps the original method of the
  40. given instance with another piece of code.
  41. @around(self)
  42. def method_name(orig, *args, **kwargs):
  43. return orig(*args, **kwargs)
  44. """
  45. def _around(code):
  46. name = code.__name__
  47. orig = getattr(target, name)
  48. def new(*args, **kwargs):
  49. return code(orig, *args, **kwargs)
  50. setattr(target, name, new)
  51. return _around
  52. class TestCase(unittest.TestCase):
  53. """A subclass of twisted.trial's TestCase which looks for 'loglevel'
  54. attributes on both itself and its individual test methods, to override the
  55. root logger's logging level while that test (case|method) runs."""
  56. def __init__(self, methodName, *args, **kwargs):
  57. super(TestCase, self).__init__(methodName, *args, **kwargs)
  58. method = getattr(self, methodName)
  59. level = getattr(method, "loglevel", getattr(self, "loglevel", None))
  60. @around(self)
  61. def setUp(orig):
  62. # if we're not starting in the sentinel logcontext, then to be honest
  63. # all future bets are off.
  64. if LoggingContext.current_context() is not LoggingContext.sentinel:
  65. self.fail(
  66. "Test starting with non-sentinel logging context %s"
  67. % (LoggingContext.current_context(),)
  68. )
  69. old_level = logging.getLogger().level
  70. if level is not None and old_level != level:
  71. @around(self)
  72. def tearDown(orig):
  73. ret = orig()
  74. logging.getLogger().setLevel(old_level)
  75. return ret
  76. logging.getLogger().setLevel(level)
  77. return orig()
  78. @around(self)
  79. def tearDown(orig):
  80. ret = orig()
  81. # force a GC to workaround problems with deferreds leaking logcontexts when
  82. # they are GCed (see the logcontext docs)
  83. gc.collect()
  84. LoggingContext.set_current_context(LoggingContext.sentinel)
  85. return ret
  86. def assertObjectHasAttributes(self, attrs, obj):
  87. """Asserts that the given object has each of the attributes given, and
  88. that the value of each matches according to assertEquals."""
  89. for (key, value) in attrs.items():
  90. if not hasattr(obj, key):
  91. raise AssertionError("Expected obj to have a '.%s'" % key)
  92. try:
  93. self.assertEquals(attrs[key], getattr(obj, key))
  94. except AssertionError as e:
  95. raise (type(e))(e.message + " for '.%s'" % key)
  96. def assert_dict(self, required, actual):
  97. """Does a partial assert of a dict.
  98. Args:
  99. required (dict): The keys and value which MUST be in 'actual'.
  100. actual (dict): The test result. Extra keys will not be checked.
  101. """
  102. for key in required:
  103. self.assertEquals(
  104. required[key], actual[key], msg="%s mismatch. %s" % (key, actual)
  105. )
  106. def DEBUG(target):
  107. """A decorator to set the .loglevel attribute to logging.DEBUG.
  108. Can apply to either a TestCase or an individual test method."""
  109. target.loglevel = logging.DEBUG
  110. return target
  111. def INFO(target):
  112. """A decorator to set the .loglevel attribute to logging.INFO.
  113. Can apply to either a TestCase or an individual test method."""
  114. target.loglevel = logging.INFO
  115. return target
  116. class HomeserverTestCase(TestCase):
  117. """
  118. A base TestCase that reduces boilerplate for HomeServer-using test cases.
  119. Defines a setUp method which creates a mock reactor, and instantiates a homeserver
  120. running on that reactor.
  121. There are various hooks for modifying the way that the homeserver is instantiated:
  122. * override make_homeserver, for example by making it pass different parameters into
  123. setup_test_homeserver.
  124. * override default_config, to return a modified configuration dictionary for use
  125. by setup_test_homeserver.
  126. * On a per-test basis, you can use the @override_config decorator to give a
  127. dictionary containing additional configuration settings to be added to the basic
  128. config dict.
  129. Attributes:
  130. servlets (list[function]): List of servlet registration function.
  131. user_id (str): The user ID to assume if auth is hijacked.
  132. hijack_auth (bool): Whether to hijack auth to return the user specified
  133. in user_id.
  134. """
  135. servlets = []
  136. hijack_auth = True
  137. needs_threadpool = False
  138. def __init__(self, methodName, *args, **kwargs):
  139. super().__init__(methodName, *args, **kwargs)
  140. # see if we have any additional config for this test
  141. method = getattr(self, methodName)
  142. self._extra_config = getattr(method, "_extra_config", None)
  143. def setUp(self):
  144. """
  145. Set up the TestCase by calling the homeserver constructor, optionally
  146. hijacking the authentication system to return a fixed user, and then
  147. calling the prepare function.
  148. """
  149. self.reactor, self.clock = get_clock()
  150. self._hs_args = {"clock": self.clock, "reactor": self.reactor}
  151. self.hs = self.make_homeserver(self.reactor, self.clock)
  152. if self.hs is None:
  153. raise Exception("No homeserver returned from make_homeserver.")
  154. if not isinstance(self.hs, HomeServer):
  155. raise Exception("A homeserver wasn't returned, but %r" % (self.hs,))
  156. # Register the resources
  157. self.resource = self.create_test_json_resource()
  158. from tests.rest.client.v1.utils import RestHelper
  159. self.helper = RestHelper(self.hs, self.resource, getattr(self, "user_id", None))
  160. if hasattr(self, "user_id"):
  161. if self.hijack_auth:
  162. def get_user_by_access_token(token=None, allow_guest=False):
  163. return succeed(
  164. {
  165. "user": UserID.from_string(self.helper.auth_user_id),
  166. "token_id": 1,
  167. "is_guest": False,
  168. }
  169. )
  170. def get_user_by_req(request, allow_guest=False, rights="access"):
  171. return succeed(
  172. create_requester(
  173. UserID.from_string(self.helper.auth_user_id), 1, False, None
  174. )
  175. )
  176. self.hs.get_auth().get_user_by_req = get_user_by_req
  177. self.hs.get_auth().get_user_by_access_token = get_user_by_access_token
  178. self.hs.get_auth().get_access_token_from_request = Mock(
  179. return_value="1234"
  180. )
  181. if self.needs_threadpool:
  182. self.reactor.threadpool = ThreadPool()
  183. self.addCleanup(self.reactor.threadpool.stop)
  184. self.reactor.threadpool.start()
  185. if hasattr(self, "prepare"):
  186. self.prepare(self.reactor, self.clock, self.hs)
  187. def wait_on_thread(self, deferred, timeout=10):
  188. """
  189. Wait until a Deferred is done, where it's waiting on a real thread.
  190. """
  191. start_time = time.time()
  192. while not deferred.called:
  193. if start_time + timeout < time.time():
  194. raise ValueError("Timed out waiting for threadpool")
  195. self.reactor.advance(0.01)
  196. time.sleep(0.01)
  197. def make_homeserver(self, reactor, clock):
  198. """
  199. Make and return a homeserver.
  200. Args:
  201. reactor: A Twisted Reactor, or something that pretends to be one.
  202. clock (synapse.util.Clock): The Clock, associated with the reactor.
  203. Returns:
  204. A homeserver (synapse.server.HomeServer) suitable for testing.
  205. Function to be overridden in subclasses.
  206. """
  207. hs = self.setup_test_homeserver()
  208. return hs
  209. def create_test_json_resource(self):
  210. """
  211. Create a test JsonResource, with the relevant servlets registerd to it
  212. The default implementation calls each function in `servlets` to do the
  213. registration.
  214. Returns:
  215. JsonResource:
  216. """
  217. resource = JsonResource(self.hs)
  218. for servlet in self.servlets:
  219. servlet(self.hs, resource)
  220. return resource
  221. def default_config(self, name="test"):
  222. """
  223. Get a default HomeServer config dict.
  224. Args:
  225. name (str): The homeserver name/domain.
  226. """
  227. config = default_config(name)
  228. # apply any additional config which was specified via the override_config
  229. # decorator.
  230. if self._extra_config is not None:
  231. config.update(self._extra_config)
  232. return config
  233. def prepare(self, reactor, clock, homeserver):
  234. """
  235. Prepare for the test. This involves things like mocking out parts of
  236. the homeserver, or building test data common across the whole test
  237. suite.
  238. Args:
  239. reactor: A Twisted Reactor, or something that pretends to be one.
  240. clock (synapse.util.Clock): The Clock, associated with the reactor.
  241. homeserver (synapse.server.HomeServer): The HomeServer to test
  242. against.
  243. Function to optionally be overridden in subclasses.
  244. """
  245. def make_request(
  246. self,
  247. method,
  248. path,
  249. content=b"",
  250. access_token=None,
  251. request=SynapseRequest,
  252. shorthand=True,
  253. federation_auth_origin=None,
  254. ):
  255. """
  256. Create a SynapseRequest at the path using the method and containing the
  257. given content.
  258. Args:
  259. method (bytes/unicode): The HTTP request method ("verb").
  260. path (bytes/unicode): The HTTP path, suitably URL encoded (e.g.
  261. escaped UTF-8 & spaces and such).
  262. content (bytes or dict): The body of the request. JSON-encoded, if
  263. a dict.
  264. shorthand: Whether to try and be helpful and prefix the given URL
  265. with the usual REST API path, if it doesn't contain it.
  266. federation_auth_origin (bytes|None): if set to not-None, we will add a fake
  267. Authorization header pretenting to be the given server name.
  268. Returns:
  269. Tuple[synapse.http.site.SynapseRequest, channel]
  270. """
  271. if isinstance(content, dict):
  272. content = json.dumps(content).encode("utf8")
  273. return make_request(
  274. self.reactor,
  275. method,
  276. path,
  277. content,
  278. access_token,
  279. request,
  280. shorthand,
  281. federation_auth_origin,
  282. )
  283. def render(self, request):
  284. """
  285. Render a request against the resources registered by the test class's
  286. servlets.
  287. Args:
  288. request (synapse.http.site.SynapseRequest): The request to render.
  289. """
  290. render(request, self.resource, self.reactor)
  291. def setup_test_homeserver(self, *args, **kwargs):
  292. """
  293. Set up the test homeserver, meant to be called by the overridable
  294. make_homeserver. It automatically passes through the test class's
  295. clock & reactor.
  296. Args:
  297. See tests.utils.setup_test_homeserver.
  298. Returns:
  299. synapse.server.HomeServer
  300. """
  301. kwargs = dict(kwargs)
  302. kwargs.update(self._hs_args)
  303. if "config" not in kwargs:
  304. config = self.default_config()
  305. else:
  306. config = kwargs["config"]
  307. # Parse the config from a config dict into a HomeServerConfig
  308. config_obj = HomeServerConfig()
  309. config_obj.parse_config_dict(config, "", "")
  310. kwargs["config"] = config_obj
  311. hs = setup_test_homeserver(self.addCleanup, *args, **kwargs)
  312. stor = hs.get_datastore()
  313. # Run the database background updates.
  314. if hasattr(stor, "do_next_background_update"):
  315. while not self.get_success(stor.has_completed_background_updates()):
  316. self.get_success(stor.do_next_background_update(1))
  317. return hs
  318. def pump(self, by=0.0):
  319. """
  320. Pump the reactor enough that Deferreds will fire.
  321. """
  322. self.reactor.pump([by] * 100)
  323. def get_success(self, d, by=0.0):
  324. if not isinstance(d, Deferred):
  325. return d
  326. self.pump(by=by)
  327. return self.successResultOf(d)
  328. def get_failure(self, d, exc):
  329. """
  330. Run a Deferred and get a Failure from it. The failure must be of the type `exc`.
  331. """
  332. if not isinstance(d, Deferred):
  333. return d
  334. self.pump()
  335. return self.failureResultOf(d, exc)
  336. def register_user(self, username, password, admin=False):
  337. """
  338. Register a user. Requires the Admin API be registered.
  339. Args:
  340. username (bytes/unicode): The user part of the new user.
  341. password (bytes/unicode): The password of the new user.
  342. admin (bool): Whether the user should be created as an admin
  343. or not.
  344. Returns:
  345. The MXID of the new user (unicode).
  346. """
  347. self.hs.config.registration_shared_secret = "shared"
  348. # Create the user
  349. request, channel = self.make_request("GET", "/_matrix/client/r0/admin/register")
  350. self.render(request)
  351. self.assertEqual(channel.code, 200)
  352. nonce = channel.json_body["nonce"]
  353. want_mac = hmac.new(key=b"shared", digestmod=hashlib.sha1)
  354. nonce_str = b"\x00".join([username.encode("utf8"), password.encode("utf8")])
  355. if admin:
  356. nonce_str += b"\x00admin"
  357. else:
  358. nonce_str += b"\x00notadmin"
  359. want_mac.update(nonce.encode("ascii") + b"\x00" + nonce_str)
  360. want_mac = want_mac.hexdigest()
  361. body = json.dumps(
  362. {
  363. "nonce": nonce,
  364. "username": username,
  365. "password": password,
  366. "admin": admin,
  367. "mac": want_mac,
  368. }
  369. )
  370. request, channel = self.make_request(
  371. "POST", "/_matrix/client/r0/admin/register", body.encode("utf8")
  372. )
  373. self.render(request)
  374. self.assertEqual(channel.code, 200, channel.json_body)
  375. user_id = channel.json_body["user_id"]
  376. return user_id
  377. def login(self, username, password, device_id=None):
  378. """
  379. Log in a user, and get an access token. Requires the Login API be
  380. registered.
  381. """
  382. body = {"type": "m.login.password", "user": username, "password": password}
  383. if device_id:
  384. body["device_id"] = device_id
  385. request, channel = self.make_request(
  386. "POST", "/_matrix/client/r0/login", json.dumps(body).encode("utf8")
  387. )
  388. self.render(request)
  389. self.assertEqual(channel.code, 200, channel.result)
  390. access_token = channel.json_body["access_token"]
  391. return access_token
  392. def create_and_send_event(
  393. self, room_id, user, soft_failed=False, prev_event_ids=None
  394. ):
  395. """
  396. Create and send an event.
  397. Args:
  398. soft_failed (bool): Whether to create a soft failed event or not
  399. prev_event_ids (list[str]|None): Explicitly set the prev events,
  400. or if None just use the default
  401. Returns:
  402. str: The new event's ID.
  403. """
  404. event_creator = self.hs.get_event_creation_handler()
  405. secrets = self.hs.get_secrets()
  406. requester = Requester(user, None, False, None, None)
  407. prev_events_and_hashes = None
  408. if prev_event_ids:
  409. prev_events_and_hashes = [[p, {}, 0] for p in prev_event_ids]
  410. event, context = self.get_success(
  411. event_creator.create_event(
  412. requester,
  413. {
  414. "type": EventTypes.Message,
  415. "room_id": room_id,
  416. "sender": user.to_string(),
  417. "content": {"body": secrets.token_hex(), "msgtype": "m.text"},
  418. },
  419. prev_events_and_hashes=prev_events_and_hashes,
  420. )
  421. )
  422. if soft_failed:
  423. event.internal_metadata.soft_failed = True
  424. self.get_success(event_creator.send_nonmember_event(requester, event, context))
  425. return event.event_id
  426. def add_extremity(self, room_id, event_id):
  427. """
  428. Add the given event as an extremity to the room.
  429. """
  430. self.get_success(
  431. self.hs.get_datastore()._simple_insert(
  432. table="event_forward_extremities",
  433. values={"room_id": room_id, "event_id": event_id},
  434. desc="test_add_extremity",
  435. )
  436. )
  437. self.hs.get_datastore().get_latest_event_ids_in_room.invalidate((room_id,))
  438. def attempt_wrong_password_login(self, username, password):
  439. """Attempts to login as the user with the given password, asserting
  440. that the attempt *fails*.
  441. """
  442. body = {"type": "m.login.password", "user": username, "password": password}
  443. request, channel = self.make_request(
  444. "POST", "/_matrix/client/r0/login", json.dumps(body).encode("utf8")
  445. )
  446. self.render(request)
  447. self.assertEqual(channel.code, 403, channel.result)
  448. def override_config(extra_config):
  449. """A decorator which can be applied to test functions to give additional HS config
  450. For use
  451. For example:
  452. class MyTestCase(HomeserverTestCase):
  453. @override_config({"enable_registration": False, ...})
  454. def test_foo(self):
  455. ...
  456. Args:
  457. extra_config(dict): Additional config settings to be merged into the default
  458. config dict before instantiating the test homeserver.
  459. """
  460. def decorator(func):
  461. func._extra_config = extra_config
  462. return func
  463. return decorator