utils.py 20 KB

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