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