utils.py 20 KB

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