utils.py 21 KB

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