utils.py 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666
  1. # -*- coding: utf-8 -*-
  2. # Copyright 2014-2016 OpenMarket Ltd
  3. # Copyright 2018-2019 New Vector Ltd
  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 atexit
  17. import hashlib
  18. import os
  19. import time
  20. import uuid
  21. import warnings
  22. from inspect import getcallargs
  23. from mock import Mock, patch
  24. from six.moves.urllib import parse as urlparse
  25. from twisted.internet import defer, reactor
  26. from synapse.api.constants import EventTypes
  27. from synapse.api.errors import CodeMessageException, cs_error
  28. from synapse.api.room_versions import RoomVersions
  29. from synapse.config.database import DatabaseConnectionConfig
  30. from synapse.config.homeserver import HomeServerConfig
  31. from synapse.config.server import DEFAULT_ROOM_VERSION
  32. from synapse.federation.transport import server as federation_server
  33. from synapse.http.server import HttpServer
  34. from synapse.logging.context import LoggingContext
  35. from synapse.server import HomeServer
  36. from synapse.storage import DataStore
  37. from synapse.storage.engines import PostgresEngine, create_engine
  38. from synapse.storage.prepare_database import prepare_database
  39. from synapse.util.ratelimitutils import FederationRateLimiter
  40. # set this to True to run the tests against postgres instead of sqlite.
  41. #
  42. # When running under postgres, we first create a base database with the name
  43. # POSTGRES_BASE_DB and update it to the current schema. Then, for each test case, we
  44. # create another unique database, using the base database as a template.
  45. USE_POSTGRES_FOR_TESTS = os.environ.get("SYNAPSE_POSTGRES", False)
  46. LEAVE_DB = os.environ.get("SYNAPSE_LEAVE_DB", False)
  47. POSTGRES_USER = os.environ.get("SYNAPSE_POSTGRES_USER", None)
  48. POSTGRES_HOST = os.environ.get("SYNAPSE_POSTGRES_HOST", None)
  49. POSTGRES_PASSWORD = os.environ.get("SYNAPSE_POSTGRES_PASSWORD", None)
  50. POSTGRES_BASE_DB = "_synapse_unit_tests_base_%s" % (os.getpid(),)
  51. # the dbname we will connect to in order to create the base database.
  52. POSTGRES_DBNAME_FOR_INITIAL_CREATE = "postgres"
  53. def setupdb():
  54. # If we're using PostgreSQL, set up the db once
  55. if USE_POSTGRES_FOR_TESTS:
  56. # create a PostgresEngine
  57. db_engine = create_engine({"name": "psycopg2", "args": {}})
  58. # connect to postgres to create the base database.
  59. db_conn = db_engine.module.connect(
  60. user=POSTGRES_USER,
  61. host=POSTGRES_HOST,
  62. password=POSTGRES_PASSWORD,
  63. dbname=POSTGRES_DBNAME_FOR_INITIAL_CREATE,
  64. )
  65. db_conn.autocommit = True
  66. cur = db_conn.cursor()
  67. cur.execute("DROP DATABASE IF EXISTS %s;" % (POSTGRES_BASE_DB,))
  68. cur.execute("CREATE DATABASE %s;" % (POSTGRES_BASE_DB,))
  69. cur.close()
  70. db_conn.close()
  71. # Set up in the db
  72. db_conn = db_engine.module.connect(
  73. database=POSTGRES_BASE_DB,
  74. user=POSTGRES_USER,
  75. host=POSTGRES_HOST,
  76. password=POSTGRES_PASSWORD,
  77. )
  78. prepare_database(db_conn, db_engine, None)
  79. db_conn.close()
  80. def _cleanup():
  81. db_conn = db_engine.module.connect(
  82. user=POSTGRES_USER,
  83. host=POSTGRES_HOST,
  84. password=POSTGRES_PASSWORD,
  85. dbname=POSTGRES_DBNAME_FOR_INITIAL_CREATE,
  86. )
  87. db_conn.autocommit = True
  88. cur = db_conn.cursor()
  89. cur.execute("DROP DATABASE IF EXISTS %s;" % (POSTGRES_BASE_DB,))
  90. cur.close()
  91. db_conn.close()
  92. atexit.register(_cleanup)
  93. def default_config(name, parse=False):
  94. """
  95. Create a reasonable test config.
  96. """
  97. config_dict = {
  98. "server_name": name,
  99. "send_federation": False,
  100. "media_store_path": "media",
  101. "uploads_path": "uploads",
  102. # the test signing key is just an arbitrary ed25519 key to keep the config
  103. # parser happy
  104. "signing_key": "ed25519 a_lPym qvioDNmfExFBRPgdTU+wtFYKq4JfwFRv7sYVgWvmgJg",
  105. "event_cache_size": 1,
  106. "enable_registration": True,
  107. "enable_registration_captcha": False,
  108. "macaroon_secret_key": "not even a little secret",
  109. "trusted_third_party_id_servers": [],
  110. "room_invite_state_types": [],
  111. "password_providers": [],
  112. "worker_replication_url": "",
  113. "worker_app": None,
  114. "block_non_admin_invites": False,
  115. "federation_domain_whitelist": None,
  116. "filter_timeline_limit": 5000,
  117. "user_directory_search_all_users": False,
  118. "user_consent_server_notice_content": None,
  119. "block_events_without_consent_error": None,
  120. "user_consent_at_registration": False,
  121. "user_consent_policy_name": "Privacy Policy",
  122. "media_storage_providers": [],
  123. "autocreate_auto_join_rooms": True,
  124. "auto_join_rooms": [],
  125. "limit_usage_by_mau": False,
  126. "hs_disabled": False,
  127. "hs_disabled_message": "",
  128. "max_mau_value": 50,
  129. "mau_trial_days": 0,
  130. "mau_stats_only": False,
  131. "mau_limits_reserved_threepids": [],
  132. "admin_contact": None,
  133. "rc_message": {"per_second": 10000, "burst_count": 10000},
  134. "rc_registration": {"per_second": 10000, "burst_count": 10000},
  135. "rc_login": {
  136. "address": {"per_second": 10000, "burst_count": 10000},
  137. "account": {"per_second": 10000, "burst_count": 10000},
  138. "failed_attempts": {"per_second": 10000, "burst_count": 10000},
  139. },
  140. "saml2_enabled": False,
  141. "public_baseurl": None,
  142. "default_identity_server": None,
  143. "key_refresh_interval": 24 * 60 * 60 * 1000,
  144. "old_signing_keys": {},
  145. "tls_fingerprints": [],
  146. "use_frozen_dicts": False,
  147. # We need a sane default_room_version, otherwise attempts to create
  148. # rooms will fail.
  149. "default_room_version": DEFAULT_ROOM_VERSION,
  150. # disable user directory updates, because they get done in the
  151. # background, which upsets the test runner.
  152. "update_user_directory": False,
  153. }
  154. if parse:
  155. config = HomeServerConfig()
  156. config.parse_config_dict(config_dict, "", "")
  157. return config
  158. return config_dict
  159. class TestHomeServer(HomeServer):
  160. DATASTORE_CLASS = DataStore
  161. def setup_test_homeserver(
  162. cleanup_func,
  163. name="test",
  164. datastore=None,
  165. config=None,
  166. reactor=None,
  167. homeserverToUse=TestHomeServer,
  168. **kargs
  169. ):
  170. """
  171. Setup a homeserver suitable for running tests against. Keyword arguments
  172. are passed to the Homeserver constructor.
  173. If no datastore is supplied, one is created and given to the homeserver.
  174. Args:
  175. cleanup_func : The function used to register a cleanup routine for
  176. after the test.
  177. Calling this method directly is deprecated: you should instead derive from
  178. HomeserverTestCase.
  179. """
  180. if reactor is None:
  181. from twisted.internet import reactor
  182. if config is None:
  183. config = default_config(name, parse=True)
  184. config.ldap_enabled = False
  185. if "clock" not in kargs:
  186. kargs["clock"] = MockClock()
  187. if USE_POSTGRES_FOR_TESTS:
  188. test_db = "synapse_test_%s" % uuid.uuid4().hex
  189. database_config = {
  190. "name": "psycopg2",
  191. "args": {
  192. "database": test_db,
  193. "host": POSTGRES_HOST,
  194. "password": POSTGRES_PASSWORD,
  195. "user": POSTGRES_USER,
  196. "cp_min": 1,
  197. "cp_max": 5,
  198. },
  199. }
  200. else:
  201. database_config = {
  202. "name": "sqlite3",
  203. "args": {"database": ":memory:", "cp_min": 1, "cp_max": 1},
  204. }
  205. database = DatabaseConnectionConfig("master", database_config)
  206. config.database.databases = [database]
  207. db_engine = create_engine(database.config)
  208. # Create the database before we actually try and connect to it, based off
  209. # the template database we generate in setupdb()
  210. if datastore is None and isinstance(db_engine, PostgresEngine):
  211. db_conn = db_engine.module.connect(
  212. database=POSTGRES_BASE_DB,
  213. user=POSTGRES_USER,
  214. host=POSTGRES_HOST,
  215. password=POSTGRES_PASSWORD,
  216. )
  217. db_conn.autocommit = True
  218. cur = db_conn.cursor()
  219. cur.execute("DROP DATABASE IF EXISTS %s;" % (test_db,))
  220. cur.execute(
  221. "CREATE DATABASE %s WITH TEMPLATE %s;" % (test_db, POSTGRES_BASE_DB)
  222. )
  223. cur.close()
  224. db_conn.close()
  225. if datastore is None:
  226. hs = homeserverToUse(
  227. name,
  228. config=config,
  229. version_string="Synapse/tests",
  230. tls_server_context_factory=Mock(),
  231. tls_client_options_factory=Mock(),
  232. reactor=reactor,
  233. **kargs
  234. )
  235. hs.setup()
  236. if homeserverToUse.__name__ == "TestHomeServer":
  237. hs.setup_master()
  238. if isinstance(db_engine, PostgresEngine):
  239. database = hs.get_datastores().databases[0]
  240. # We need to do cleanup on PostgreSQL
  241. def cleanup():
  242. import psycopg2
  243. # Close all the db pools
  244. database._db_pool.close()
  245. dropped = False
  246. # Drop the test database
  247. db_conn = db_engine.module.connect(
  248. database=POSTGRES_BASE_DB,
  249. user=POSTGRES_USER,
  250. host=POSTGRES_HOST,
  251. password=POSTGRES_PASSWORD,
  252. )
  253. db_conn.autocommit = True
  254. cur = db_conn.cursor()
  255. # Try a few times to drop the DB. Some things may hold on to the
  256. # database for a few more seconds due to flakiness, preventing
  257. # us from dropping it when the test is over. If we can't drop
  258. # it, warn and move on.
  259. for x in range(5):
  260. try:
  261. cur.execute("DROP DATABASE IF EXISTS %s;" % (test_db,))
  262. db_conn.commit()
  263. dropped = True
  264. except psycopg2.OperationalError as e:
  265. warnings.warn(
  266. "Couldn't drop old db: " + str(e), category=UserWarning
  267. )
  268. time.sleep(0.5)
  269. cur.close()
  270. db_conn.close()
  271. if not dropped:
  272. warnings.warn("Failed to drop old DB.", category=UserWarning)
  273. if not LEAVE_DB:
  274. # Register the cleanup hook
  275. cleanup_func(cleanup)
  276. else:
  277. hs = homeserverToUse(
  278. name,
  279. datastore=datastore,
  280. config=config,
  281. version_string="Synapse/tests",
  282. tls_server_context_factory=Mock(),
  283. tls_client_options_factory=Mock(),
  284. reactor=reactor,
  285. **kargs
  286. )
  287. # bcrypt is far too slow to be doing in unit tests
  288. # Need to let the HS build an auth handler and then mess with it
  289. # because AuthHandler's constructor requires the HS, so we can't make one
  290. # beforehand and pass it in to the HS's constructor (chicken / egg)
  291. hs.get_auth_handler().hash = lambda p: hashlib.md5(p.encode("utf8")).hexdigest()
  292. hs.get_auth_handler().validate_hash = (
  293. lambda p, h: hashlib.md5(p.encode("utf8")).hexdigest() == h
  294. )
  295. fed = kargs.get("resource_for_federation", None)
  296. if fed:
  297. register_federation_servlets(hs, fed)
  298. return hs
  299. def register_federation_servlets(hs, resource):
  300. federation_server.register_servlets(
  301. hs,
  302. resource=resource,
  303. authenticator=federation_server.Authenticator(hs),
  304. ratelimiter=FederationRateLimiter(
  305. hs.get_clock(), config=hs.config.rc_federation
  306. ),
  307. )
  308. def get_mock_call_args(pattern_func, mock_func):
  309. """ Return the arguments the mock function was called with interpreted
  310. by the pattern functions argument list.
  311. """
  312. invoked_args, invoked_kargs = mock_func.call_args
  313. return getcallargs(pattern_func, *invoked_args, **invoked_kargs)
  314. def mock_getRawHeaders(headers=None):
  315. headers = headers if headers is not None else {}
  316. def getRawHeaders(name, default=None):
  317. return headers.get(name, default)
  318. return getRawHeaders
  319. # This is a mock /resource/ not an entire server
  320. class MockHttpResource(HttpServer):
  321. def __init__(self, prefix=""):
  322. self.callbacks = [] # 3-tuple of method/pattern/function
  323. self.prefix = prefix
  324. def trigger_get(self, path):
  325. return self.trigger(b"GET", path, None)
  326. @patch("twisted.web.http.Request")
  327. @defer.inlineCallbacks
  328. def trigger(
  329. self, http_method, path, content, mock_request, federation_auth_origin=None
  330. ):
  331. """ Fire an HTTP event.
  332. Args:
  333. http_method : The HTTP method
  334. path : The HTTP path
  335. content : The HTTP body
  336. mock_request : Mocked request to pass to the event so it can get
  337. content.
  338. federation_auth_origin (bytes|None): domain to authenticate as, for federation
  339. Returns:
  340. A tuple of (code, response)
  341. Raises:
  342. KeyError If no event is found which will handle the path.
  343. """
  344. path = self.prefix + path
  345. # annoyingly we return a twisted http request which has chained calls
  346. # to get at the http content, hence mock it here.
  347. mock_content = Mock()
  348. config = {"read.return_value": content}
  349. mock_content.configure_mock(**config)
  350. mock_request.content = mock_content
  351. mock_request.method = http_method.encode("ascii")
  352. mock_request.uri = path.encode("ascii")
  353. mock_request.getClientIP.return_value = "-"
  354. headers = {}
  355. if federation_auth_origin is not None:
  356. headers[b"Authorization"] = [
  357. b"X-Matrix origin=%s,key=,sig=" % (federation_auth_origin,)
  358. ]
  359. mock_request.requestHeaders.getRawHeaders = mock_getRawHeaders(headers)
  360. # return the right path if the event requires it
  361. mock_request.path = path
  362. # add in query params to the right place
  363. try:
  364. mock_request.args = urlparse.parse_qs(path.split("?")[1])
  365. mock_request.path = path.split("?")[0]
  366. path = mock_request.path
  367. except Exception:
  368. pass
  369. if isinstance(path, bytes):
  370. path = path.decode("utf8")
  371. for (method, pattern, func) in self.callbacks:
  372. if http_method != method:
  373. continue
  374. matcher = pattern.match(path)
  375. if matcher:
  376. try:
  377. args = [urlparse.unquote(u) for u in matcher.groups()]
  378. (code, response) = yield defer.ensureDeferred(
  379. func(mock_request, *args)
  380. )
  381. return code, response
  382. except CodeMessageException as e:
  383. return (e.code, cs_error(e.msg, code=e.errcode))
  384. raise KeyError("No event can handle %s" % path)
  385. def register_paths(self, method, path_patterns, callback, servlet_name):
  386. for path_pattern in path_patterns:
  387. self.callbacks.append((method, path_pattern, callback))
  388. class MockKey(object):
  389. alg = "mock_alg"
  390. version = "mock_version"
  391. signature = b"\x9a\x87$"
  392. @property
  393. def verify_key(self):
  394. return self
  395. def sign(self, message):
  396. return self
  397. def verify(self, message, sig):
  398. assert sig == b"\x9a\x87$"
  399. def encode(self):
  400. return b"<fake_encoded_key>"
  401. class MockClock(object):
  402. now = 1000
  403. def __init__(self):
  404. # list of lists of [absolute_time, callback, expired] in no particular
  405. # order
  406. self.timers = []
  407. self.loopers = []
  408. def time(self):
  409. return self.now
  410. def time_msec(self):
  411. return self.time() * 1000
  412. def call_later(self, delay, callback, *args, **kwargs):
  413. current_context = LoggingContext.current_context()
  414. def wrapped_callback():
  415. LoggingContext.thread_local.current_context = current_context
  416. callback(*args, **kwargs)
  417. t = [self.now + delay, wrapped_callback, False]
  418. self.timers.append(t)
  419. return t
  420. def looping_call(self, function, interval):
  421. self.loopers.append([function, interval / 1000.0, self.now])
  422. def cancel_call_later(self, timer, ignore_errs=False):
  423. if timer[2]:
  424. if not ignore_errs:
  425. raise Exception("Cannot cancel an expired timer")
  426. timer[2] = True
  427. self.timers = [t for t in self.timers if t != timer]
  428. # For unit testing
  429. def advance_time(self, secs):
  430. self.now += secs
  431. timers = self.timers
  432. self.timers = []
  433. for t in timers:
  434. time, callback, expired = t
  435. if expired:
  436. raise Exception("Timer already expired")
  437. if self.now >= time:
  438. t[2] = True
  439. callback()
  440. else:
  441. self.timers.append(t)
  442. for looped in self.loopers:
  443. func, interval, last = looped
  444. if last + interval < self.now:
  445. func()
  446. looped[2] = self.now
  447. def advance_time_msec(self, ms):
  448. self.advance_time(ms / 1000.0)
  449. def time_bound_deferred(self, d, *args, **kwargs):
  450. # We don't bother timing things out for now.
  451. return d
  452. def _format_call(args, kwargs):
  453. return ", ".join(
  454. ["%r" % (a) for a in args] + ["%s=%r" % (k, v) for k, v in kwargs.items()]
  455. )
  456. class DeferredMockCallable(object):
  457. """A callable instance that stores a set of pending call expectations and
  458. return values for them. It allows a unit test to assert that the given set
  459. of function calls are eventually made, by awaiting on them to be called.
  460. """
  461. def __init__(self):
  462. self.expectations = []
  463. self.calls = []
  464. def __call__(self, *args, **kwargs):
  465. self.calls.append((args, kwargs))
  466. if not self.expectations:
  467. raise ValueError(
  468. "%r has no pending calls to handle call(%s)"
  469. % (self, _format_call(args, kwargs))
  470. )
  471. for (call, result, d) in self.expectations:
  472. if args == call[1] and kwargs == call[2]:
  473. d.callback(None)
  474. return result
  475. failure = AssertionError(
  476. "Was not expecting call(%s)" % (_format_call(args, kwargs))
  477. )
  478. for _, _, d in self.expectations:
  479. try:
  480. d.errback(failure)
  481. except Exception:
  482. pass
  483. raise failure
  484. def expect_call_and_return(self, call, result):
  485. self.expectations.append((call, result, defer.Deferred()))
  486. @defer.inlineCallbacks
  487. def await_calls(self, timeout=1000):
  488. deferred = defer.DeferredList(
  489. [d for _, _, d in self.expectations], fireOnOneErrback=True
  490. )
  491. timer = reactor.callLater(
  492. timeout / 1000,
  493. deferred.errback,
  494. AssertionError(
  495. "%d pending calls left: %s"
  496. % (
  497. len([e for e in self.expectations if not e[2].called]),
  498. [e for e in self.expectations if not e[2].called],
  499. )
  500. ),
  501. )
  502. yield deferred
  503. timer.cancel()
  504. self.calls = []
  505. def assert_had_no_calls(self):
  506. if self.calls:
  507. calls = self.calls
  508. self.calls = []
  509. raise AssertionError(
  510. "Expected not to received any calls, got:\n"
  511. + "\n".join(["call(%s)" % _format_call(c[0], c[1]) for c in calls])
  512. )
  513. @defer.inlineCallbacks
  514. def create_room(hs, room_id, creator_id):
  515. """Creates and persist a creation event for the given room
  516. Args:
  517. hs
  518. room_id (str)
  519. creator_id (str)
  520. """
  521. persistence_store = hs.get_storage().persistence
  522. store = hs.get_datastore()
  523. event_builder_factory = hs.get_event_builder_factory()
  524. event_creation_handler = hs.get_event_creation_handler()
  525. yield store.store_room(
  526. room_id=room_id,
  527. room_creator_user_id=creator_id,
  528. is_public=False,
  529. room_version=RoomVersions.V1,
  530. )
  531. builder = event_builder_factory.for_room_version(
  532. RoomVersions.V1,
  533. {
  534. "type": EventTypes.Create,
  535. "state_key": "",
  536. "sender": creator_id,
  537. "room_id": room_id,
  538. "content": {},
  539. },
  540. )
  541. event, context = yield event_creation_handler.create_new_client_event(builder)
  542. yield persistence_store.persist_event(event, context)