2014-08-12 22:32:18 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
2016-01-06 23:26:29 -05:00
|
|
|
# Copyright 2014-2016 OpenMarket Ltd
|
2014-08-12 22:32:18 -04:00
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
2018-08-13 02:47:46 -04:00
|
|
|
import atexit
|
2015-08-26 10:59:32 -04:00
|
|
|
import hashlib
|
2018-08-13 02:47:46 -04:00
|
|
|
import os
|
2018-09-20 06:14:34 -04:00
|
|
|
import time
|
2018-08-13 02:47:46 -04:00
|
|
|
import uuid
|
2018-09-20 06:14:34 -04:00
|
|
|
import warnings
|
2018-01-25 16:35:21 -05:00
|
|
|
from inspect import getcallargs
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2018-01-25 16:35:21 -05:00
|
|
|
from mock import Mock, patch
|
2018-07-09 02:09:20 -04:00
|
|
|
from six.moves.urllib import parse as urlparse
|
|
|
|
|
2018-01-25 16:35:21 -05:00
|
|
|
from twisted.internet import defer, reactor
|
|
|
|
|
2018-08-09 09:33:49 -04:00
|
|
|
from synapse.api.constants import EventTypes
|
2018-01-25 16:35:21 -05:00
|
|
|
from synapse.api.errors import CodeMessageException, cs_error
|
2018-08-31 12:11:11 -04:00
|
|
|
from synapse.config.server import ServerConfig
|
2018-01-25 16:35:21 -05:00
|
|
|
from synapse.federation.transport import server
|
|
|
|
from synapse.http.server import HttpServer
|
|
|
|
from synapse.server import HomeServer
|
2018-09-03 12:21:48 -04:00
|
|
|
from synapse.storage import DataStore
|
|
|
|
from synapse.storage.engines import PostgresEngine, create_engine
|
2018-08-13 02:47:46 -04:00
|
|
|
from synapse.storage.prepare_database import (
|
|
|
|
_get_or_create_schema_state,
|
|
|
|
_setup_new_database,
|
|
|
|
prepare_database,
|
|
|
|
)
|
2018-01-25 16:35:21 -05:00
|
|
|
from synapse.util.logcontext import LoggingContext
|
|
|
|
from synapse.util.ratelimitutils import FederationRateLimiter
|
2014-08-28 10:32:30 -04:00
|
|
|
|
2018-01-25 18:54:38 -05:00
|
|
|
# set this to True to run the tests against postgres instead of sqlite.
|
2018-08-13 02:47:46 -04:00
|
|
|
USE_POSTGRES_FOR_TESTS = os.environ.get("SYNAPSE_POSTGRES", False)
|
2018-09-03 12:21:48 -04:00
|
|
|
LEAVE_DB = os.environ.get("SYNAPSE_LEAVE_DB", False)
|
2018-08-13 02:47:46 -04:00
|
|
|
POSTGRES_USER = os.environ.get("SYNAPSE_POSTGRES_USER", "postgres")
|
|
|
|
POSTGRES_BASE_DB = "_synapse_unit_tests_base_%s" % (os.getpid(),)
|
|
|
|
|
|
|
|
|
|
|
|
def setupdb():
|
|
|
|
|
|
|
|
# If we're using PostgreSQL, set up the db once
|
|
|
|
if USE_POSTGRES_FOR_TESTS:
|
|
|
|
pgconfig = {
|
|
|
|
"name": "psycopg2",
|
|
|
|
"args": {
|
|
|
|
"database": POSTGRES_BASE_DB,
|
|
|
|
"user": POSTGRES_USER,
|
|
|
|
"cp_min": 1,
|
|
|
|
"cp_max": 5,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
config = Mock()
|
|
|
|
config.password_providers = []
|
|
|
|
config.database_config = pgconfig
|
|
|
|
db_engine = create_engine(pgconfig)
|
|
|
|
db_conn = db_engine.module.connect(user=POSTGRES_USER)
|
|
|
|
db_conn.autocommit = True
|
|
|
|
cur = db_conn.cursor()
|
|
|
|
cur.execute("DROP DATABASE IF EXISTS %s;" % (POSTGRES_BASE_DB,))
|
|
|
|
cur.execute("CREATE DATABASE %s;" % (POSTGRES_BASE_DB,))
|
|
|
|
cur.close()
|
|
|
|
db_conn.close()
|
|
|
|
|
|
|
|
# Set up in the db
|
|
|
|
db_conn = db_engine.module.connect(
|
|
|
|
database=POSTGRES_BASE_DB, user=POSTGRES_USER
|
|
|
|
)
|
|
|
|
cur = db_conn.cursor()
|
|
|
|
_get_or_create_schema_state(cur, db_engine)
|
|
|
|
_setup_new_database(cur, db_engine)
|
|
|
|
db_conn.commit()
|
|
|
|
cur.close()
|
|
|
|
db_conn.close()
|
|
|
|
|
|
|
|
def _cleanup():
|
|
|
|
db_conn = db_engine.module.connect(user=POSTGRES_USER)
|
|
|
|
db_conn.autocommit = True
|
|
|
|
cur = db_conn.cursor()
|
|
|
|
cur.execute("DROP DATABASE IF EXISTS %s;" % (POSTGRES_BASE_DB,))
|
|
|
|
cur.close()
|
|
|
|
db_conn.close()
|
|
|
|
|
|
|
|
atexit.register(_cleanup)
|
2018-01-25 18:54:38 -05:00
|
|
|
|
2014-08-28 10:32:30 -04:00
|
|
|
|
2018-10-01 10:11:58 -04:00
|
|
|
def default_config(name):
|
|
|
|
"""
|
|
|
|
Create a reasonable test config.
|
|
|
|
"""
|
|
|
|
config = Mock()
|
|
|
|
config.signing_key = [MockKey()]
|
|
|
|
config.event_cache_size = 1
|
|
|
|
config.enable_registration = True
|
|
|
|
config.macaroon_secret_key = "not even a little secret"
|
|
|
|
config.expire_access_token = False
|
|
|
|
config.server_name = name
|
|
|
|
config.trusted_third_party_id_servers = []
|
|
|
|
config.room_invite_state_types = []
|
|
|
|
config.password_providers = []
|
|
|
|
config.worker_replication_url = ""
|
|
|
|
config.worker_app = None
|
|
|
|
config.email_enable_notifs = False
|
|
|
|
config.block_non_admin_invites = False
|
|
|
|
config.federation_domain_whitelist = None
|
|
|
|
config.federation_rc_reject_limit = 10
|
|
|
|
config.federation_rc_sleep_limit = 10
|
|
|
|
config.federation_rc_sleep_delay = 100
|
|
|
|
config.federation_rc_concurrent = 10
|
|
|
|
config.filter_timeline_limit = 5000
|
|
|
|
config.user_directory_search_all_users = False
|
|
|
|
config.user_consent_server_notice_content = None
|
|
|
|
config.block_events_without_consent_error = None
|
2018-11-06 05:32:34 -05:00
|
|
|
config.user_consent_at_registration = False
|
|
|
|
config.user_consent_policy_name = "Privacy Policy"
|
2018-10-01 10:11:58 -04:00
|
|
|
config.media_storage_providers = []
|
2018-10-04 12:26:59 -04:00
|
|
|
config.autocreate_auto_join_rooms = True
|
2018-10-01 10:11:58 -04:00
|
|
|
config.auto_join_rooms = []
|
|
|
|
config.limit_usage_by_mau = False
|
|
|
|
config.hs_disabled = False
|
|
|
|
config.hs_disabled_message = ""
|
|
|
|
config.hs_disabled_limit_type = ""
|
|
|
|
config.max_mau_value = 50
|
|
|
|
config.mau_trial_days = 0
|
2018-11-15 13:08:27 -05:00
|
|
|
config.mau_stats_only = False
|
2018-10-01 10:11:58 -04:00
|
|
|
config.mau_limits_reserved_threepids = []
|
|
|
|
config.admin_contact = None
|
|
|
|
config.rc_messages_per_second = 10000
|
|
|
|
config.rc_message_burst_count = 10000
|
2018-12-07 07:11:11 -05:00
|
|
|
config.saml2_enabled = False
|
2018-10-01 10:11:58 -04:00
|
|
|
|
2018-10-02 08:53:47 -04:00
|
|
|
config.use_frozen_dicts = False
|
|
|
|
|
2018-10-01 10:11:58 -04:00
|
|
|
# we need a sane default_room_version, otherwise attempts to create rooms will
|
|
|
|
# fail.
|
|
|
|
config.default_room_version = "1"
|
|
|
|
|
|
|
|
# disable user directory updates, because they get done in the
|
|
|
|
# background, which upsets the test runner.
|
|
|
|
config.update_user_directory = False
|
|
|
|
|
|
|
|
def is_threepid_reserved(threepid):
|
|
|
|
return ServerConfig.is_threepid_reserved(config, threepid)
|
|
|
|
|
|
|
|
config.is_threepid_reserved.side_effect = is_threepid_reserved
|
|
|
|
|
|
|
|
return config
|
|
|
|
|
|
|
|
|
2018-08-28 12:21:05 -04:00
|
|
|
class TestHomeServer(HomeServer):
|
|
|
|
DATASTORE_CLASS = DataStore
|
|
|
|
|
|
|
|
|
2015-02-11 06:37:30 -05:00
|
|
|
@defer.inlineCallbacks
|
2018-08-10 09:54:09 -04:00
|
|
|
def setup_test_homeserver(
|
2018-09-06 12:58:18 -04:00
|
|
|
cleanup_func,
|
|
|
|
name="test",
|
|
|
|
datastore=None,
|
|
|
|
config=None,
|
|
|
|
reactor=None,
|
|
|
|
homeserverToUse=TestHomeServer,
|
|
|
|
**kargs
|
2018-08-10 09:54:09 -04:00
|
|
|
):
|
2018-08-13 02:47:46 -04:00
|
|
|
"""
|
|
|
|
Setup a homeserver suitable for running tests against. Keyword arguments
|
|
|
|
are passed to the Homeserver constructor.
|
|
|
|
|
|
|
|
If no datastore is supplied, one is created and given to the homeserver.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
cleanup_func : The function used to register a cleanup routine for
|
|
|
|
after the test.
|
2015-02-11 06:37:30 -05:00
|
|
|
"""
|
2018-06-22 04:37:10 -04:00
|
|
|
if reactor is None:
|
|
|
|
from twisted.internet import reactor
|
|
|
|
|
2015-02-11 06:37:30 -05:00
|
|
|
if config is None:
|
2018-10-01 10:11:58 -04:00
|
|
|
config = default_config(name)
|
2018-08-31 12:11:11 -04:00
|
|
|
|
2016-06-05 20:05:57 -04:00
|
|
|
config.ldap_enabled = False
|
2016-02-11 09:10:00 -05:00
|
|
|
|
2015-04-01 09:12:33 -04:00
|
|
|
if "clock" not in kargs:
|
|
|
|
kargs["clock"] = MockClock()
|
|
|
|
|
2018-01-25 18:54:38 -05:00
|
|
|
if USE_POSTGRES_FOR_TESTS:
|
2018-08-13 02:47:46 -04:00
|
|
|
test_db = "synapse_test_%s" % uuid.uuid4().hex
|
|
|
|
|
2018-01-25 18:54:38 -05:00
|
|
|
config.database_config = {
|
|
|
|
"name": "psycopg2",
|
2018-08-13 02:47:46 -04:00
|
|
|
"args": {"database": test_db, "cp_min": 1, "cp_max": 5},
|
2018-01-25 18:54:38 -05:00
|
|
|
}
|
|
|
|
else:
|
|
|
|
config.database_config = {
|
|
|
|
"name": "sqlite3",
|
2018-08-10 09:54:09 -04:00
|
|
|
"args": {"database": ":memory:", "cp_min": 1, "cp_max": 1},
|
2018-01-25 18:54:38 -05:00
|
|
|
}
|
|
|
|
|
2018-01-25 16:12:46 -05:00
|
|
|
db_engine = create_engine(config.database_config)
|
2018-01-25 18:14:24 -05:00
|
|
|
|
2018-08-13 02:47:46 -04:00
|
|
|
# Create the database before we actually try and connect to it, based off
|
|
|
|
# the template database we generate in setupdb()
|
|
|
|
if datastore is None and isinstance(db_engine, PostgresEngine):
|
|
|
|
db_conn = db_engine.module.connect(
|
|
|
|
database=POSTGRES_BASE_DB, user=POSTGRES_USER
|
|
|
|
)
|
|
|
|
db_conn.autocommit = True
|
|
|
|
cur = db_conn.cursor()
|
|
|
|
cur.execute("DROP DATABASE IF EXISTS %s;" % (test_db,))
|
|
|
|
cur.execute(
|
|
|
|
"CREATE DATABASE %s WITH TEMPLATE %s;" % (test_db, POSTGRES_BASE_DB)
|
|
|
|
)
|
|
|
|
cur.close()
|
|
|
|
db_conn.close()
|
|
|
|
|
2018-01-25 18:14:24 -05:00
|
|
|
# we need to configure the connection pool to run the on_new_connection
|
|
|
|
# function, so that we can test code that uses custom sqlite functions
|
|
|
|
# (like rank).
|
|
|
|
config.database_config["args"]["cp_openfun"] = db_engine.on_new_connection
|
|
|
|
|
2015-02-11 06:37:30 -05:00
|
|
|
if datastore is None:
|
2018-08-17 11:08:45 -04:00
|
|
|
hs = homeserverToUse(
|
2018-08-10 09:54:09 -04:00
|
|
|
name,
|
|
|
|
config=config,
|
2018-01-25 18:14:24 -05:00
|
|
|
db_config=config.database_config,
|
2015-02-18 11:51:33 -05:00
|
|
|
version_string="Synapse/tests",
|
2018-01-25 16:12:46 -05:00
|
|
|
database_engine=db_engine,
|
2016-06-01 06:14:16 -04:00
|
|
|
room_list_handler=object(),
|
2016-11-21 06:53:02 -05:00
|
|
|
tls_server_context_factory=Mock(),
|
2018-06-24 16:38:43 -04:00
|
|
|
tls_client_options_factory=Mock(),
|
2018-06-22 04:37:10 -04:00
|
|
|
reactor=reactor,
|
2015-02-18 11:51:33 -05:00
|
|
|
**kargs
|
|
|
|
)
|
2018-08-13 02:47:46 -04:00
|
|
|
|
|
|
|
# Prepare the DB on SQLite -- PostgreSQL is a copy of an already up to
|
|
|
|
# date db
|
|
|
|
if not isinstance(db_engine, PostgresEngine):
|
|
|
|
db_conn = hs.get_db_conn()
|
|
|
|
yield prepare_database(db_conn, db_engine, config)
|
|
|
|
db_conn.commit()
|
|
|
|
db_conn.close()
|
|
|
|
|
|
|
|
else:
|
|
|
|
# We need to do cleanup on PostgreSQL
|
|
|
|
def cleanup():
|
2018-09-20 06:14:34 -04:00
|
|
|
import psycopg2
|
|
|
|
|
2018-08-13 02:47:46 -04:00
|
|
|
# Close all the db pools
|
|
|
|
hs.get_db_pool().close()
|
|
|
|
|
2018-09-20 06:14:34 -04:00
|
|
|
dropped = False
|
|
|
|
|
2018-08-13 02:47:46 -04:00
|
|
|
# Drop the test database
|
|
|
|
db_conn = db_engine.module.connect(
|
|
|
|
database=POSTGRES_BASE_DB, user=POSTGRES_USER
|
|
|
|
)
|
|
|
|
db_conn.autocommit = True
|
|
|
|
cur = db_conn.cursor()
|
2018-09-20 06:14:34 -04:00
|
|
|
|
|
|
|
# Try a few times to drop the DB. Some things may hold on to the
|
|
|
|
# database for a few more seconds due to flakiness, preventing
|
|
|
|
# us from dropping it when the test is over. If we can't drop
|
|
|
|
# it, warn and move on.
|
|
|
|
for x in range(5):
|
|
|
|
try:
|
|
|
|
cur.execute("DROP DATABASE IF EXISTS %s;" % (test_db,))
|
|
|
|
db_conn.commit()
|
|
|
|
dropped = True
|
|
|
|
except psycopg2.OperationalError as e:
|
|
|
|
warnings.warn(
|
|
|
|
"Couldn't drop old db: " + str(e), category=UserWarning
|
|
|
|
)
|
|
|
|
time.sleep(0.5)
|
|
|
|
|
2018-08-13 02:47:46 -04:00
|
|
|
cur.close()
|
|
|
|
db_conn.close()
|
|
|
|
|
2018-09-20 06:14:34 -04:00
|
|
|
if not dropped:
|
|
|
|
warnings.warn("Failed to drop old DB.", category=UserWarning)
|
|
|
|
|
2018-09-03 12:21:48 -04:00
|
|
|
if not LEAVE_DB:
|
|
|
|
# Register the cleanup hook
|
|
|
|
cleanup_func(cleanup)
|
2018-08-13 02:47:46 -04:00
|
|
|
|
2016-01-27 12:25:07 -05:00
|
|
|
hs.setup()
|
2015-02-11 06:37:30 -05:00
|
|
|
else:
|
2018-08-17 11:08:45 -04:00
|
|
|
hs = homeserverToUse(
|
2018-08-10 09:54:09 -04:00
|
|
|
name,
|
|
|
|
db_pool=None,
|
|
|
|
datastore=datastore,
|
|
|
|
config=config,
|
2015-02-18 11:51:33 -05:00
|
|
|
version_string="Synapse/tests",
|
2018-01-25 16:12:46 -05:00
|
|
|
database_engine=db_engine,
|
2016-06-01 06:14:16 -04:00
|
|
|
room_list_handler=object(),
|
2016-11-21 06:53:02 -05:00
|
|
|
tls_server_context_factory=Mock(),
|
2018-06-24 16:38:43 -04:00
|
|
|
tls_client_options_factory=Mock(),
|
2018-07-20 08:41:13 -04:00
|
|
|
reactor=reactor,
|
2015-02-18 11:51:33 -05:00
|
|
|
**kargs
|
2015-02-11 06:37:30 -05:00
|
|
|
)
|
|
|
|
|
2015-08-26 10:59:32 -04:00
|
|
|
# bcrypt is far too slow to be doing in unit tests
|
2016-06-02 08:31:45 -04:00
|
|
|
# Need to let the HS build an auth handler and then mess with it
|
|
|
|
# because AuthHandler's constructor requires the HS, so we can't make one
|
|
|
|
# beforehand and pass it in to the HS's constructor (chicken / egg)
|
2018-08-08 22:22:01 -04:00
|
|
|
hs.get_auth_handler().hash = lambda p: hashlib.md5(p.encode('utf8')).hexdigest()
|
2018-08-10 09:54:09 -04:00
|
|
|
hs.get_auth_handler().validate_hash = (
|
|
|
|
lambda p, h: hashlib.md5(p.encode('utf8')).hexdigest() == h
|
|
|
|
)
|
2015-08-26 10:59:32 -04:00
|
|
|
|
2016-01-26 08:52:29 -05:00
|
|
|
fed = kargs.get("resource_for_federation", None)
|
|
|
|
if fed:
|
|
|
|
server.register_servlets(
|
|
|
|
hs,
|
|
|
|
resource=fed,
|
|
|
|
authenticator=server.Authenticator(hs),
|
|
|
|
ratelimiter=FederationRateLimiter(
|
|
|
|
hs.get_clock(),
|
|
|
|
window_size=hs.config.federation_rc_window_size,
|
|
|
|
sleep_limit=hs.config.federation_rc_sleep_limit,
|
|
|
|
sleep_msec=hs.config.federation_rc_sleep_delay,
|
|
|
|
reject_limit=hs.config.federation_rc_reject_limit,
|
2018-08-10 09:54:09 -04:00
|
|
|
concurrent_requests=hs.config.federation_rc_concurrent,
|
2016-01-26 08:52:29 -05:00
|
|
|
),
|
|
|
|
)
|
|
|
|
|
2015-02-11 06:37:30 -05:00
|
|
|
defer.returnValue(hs)
|
|
|
|
|
|
|
|
|
2014-08-28 10:32:30 -04:00
|
|
|
def get_mock_call_args(pattern_func, mock_func):
|
|
|
|
""" Return the arguments the mock function was called with interpreted
|
|
|
|
by the pattern functions argument list.
|
|
|
|
"""
|
|
|
|
invoked_args, invoked_kargs = mock_func.call_args
|
|
|
|
return getcallargs(pattern_func, *invoked_args, **invoked_kargs)
|
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2016-09-12 05:46:02 -04:00
|
|
|
def mock_getRawHeaders(headers=None):
|
|
|
|
headers = headers if headers is not None else {}
|
|
|
|
|
|
|
|
def getRawHeaders(name, default=None):
|
|
|
|
return headers.get(name, default)
|
|
|
|
|
|
|
|
return getRawHeaders
|
|
|
|
|
|
|
|
|
2014-08-18 09:03:07 -04:00
|
|
|
# This is a mock /resource/ not an entire server
|
|
|
|
class MockHttpResource(HttpServer):
|
2014-08-12 10:10:52 -04:00
|
|
|
def __init__(self, prefix=""):
|
|
|
|
self.callbacks = [] # 3-tuple of method/pattern/function
|
|
|
|
self.prefix = prefix
|
|
|
|
|
|
|
|
def trigger_get(self, path):
|
2018-08-01 10:54:06 -04:00
|
|
|
return self.trigger(b"GET", path, None)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
@patch('twisted.web.http.Request')
|
|
|
|
@defer.inlineCallbacks
|
2018-09-03 20:23:18 -04:00
|
|
|
def trigger(
|
2018-09-06 12:58:18 -04:00
|
|
|
self, http_method, path, content, mock_request, federation_auth_origin=None
|
2018-09-03 20:23:18 -04:00
|
|
|
):
|
2014-08-12 10:10:52 -04:00
|
|
|
""" Fire an HTTP event.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
http_method : The HTTP method
|
|
|
|
path : The HTTP path
|
|
|
|
content : The HTTP body
|
|
|
|
mock_request : Mocked request to pass to the event so it can get
|
|
|
|
content.
|
2018-09-03 20:23:18 -04:00
|
|
|
federation_auth_origin (bytes|None): domain to authenticate as, for federation
|
2014-08-12 10:10:52 -04:00
|
|
|
Returns:
|
|
|
|
A tuple of (code, response)
|
|
|
|
Raises:
|
|
|
|
KeyError If no event is found which will handle the path.
|
|
|
|
"""
|
|
|
|
path = self.prefix + path
|
|
|
|
|
|
|
|
# annoyingly we return a twisted http request which has chained calls
|
|
|
|
# to get at the http content, hence mock it here.
|
|
|
|
mock_content = Mock()
|
|
|
|
config = {'read.return_value': content}
|
|
|
|
mock_content.configure_mock(**config)
|
|
|
|
mock_request.content = mock_content
|
|
|
|
|
2018-08-08 22:22:01 -04:00
|
|
|
mock_request.method = http_method.encode('ascii')
|
|
|
|
mock_request.uri = path.encode('ascii')
|
2014-10-13 09:37:46 -04:00
|
|
|
|
2015-06-12 12:17:29 -04:00
|
|
|
mock_request.getClientIP.return_value = "-"
|
|
|
|
|
2016-09-12 05:46:02 -04:00
|
|
|
headers = {}
|
2018-09-03 20:23:18 -04:00
|
|
|
if federation_auth_origin is not None:
|
|
|
|
headers[b"Authorization"] = [
|
2018-09-06 12:58:18 -04:00
|
|
|
b"X-Matrix origin=%s,key=,sig=" % (federation_auth_origin,)
|
2018-09-03 20:23:18 -04:00
|
|
|
]
|
2016-09-12 05:46:02 -04:00
|
|
|
mock_request.requestHeaders.getRawHeaders = mock_getRawHeaders(headers)
|
2014-10-13 10:53:18 -04:00
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
# return the right path if the event requires it
|
|
|
|
mock_request.path = path
|
|
|
|
|
|
|
|
# add in query params to the right place
|
|
|
|
try:
|
|
|
|
mock_request.args = urlparse.parse_qs(path.split('?')[1])
|
|
|
|
mock_request.path = path.split('?')[0]
|
|
|
|
path = mock_request.path
|
2017-10-23 10:52:32 -04:00
|
|
|
except Exception:
|
2014-08-12 10:10:52 -04:00
|
|
|
pass
|
|
|
|
|
2018-08-01 10:54:06 -04:00
|
|
|
if isinstance(path, bytes):
|
|
|
|
path = path.decode('utf8')
|
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
for (method, pattern, func) in self.callbacks:
|
|
|
|
if http_method != method:
|
|
|
|
continue
|
|
|
|
|
|
|
|
matcher = pattern.match(path)
|
|
|
|
if matcher:
|
|
|
|
try:
|
2018-08-10 09:54:09 -04:00
|
|
|
args = [urlparse.unquote(u) for u in matcher.groups()]
|
|
|
|
|
|
|
|
(code, response) = yield func(mock_request, *args)
|
2014-08-12 10:10:52 -04:00
|
|
|
defer.returnValue((code, response))
|
|
|
|
except CodeMessageException as e:
|
2016-10-14 16:46:54 -04:00
|
|
|
defer.returnValue((e.code, cs_error(e.msg, code=e.errcode)))
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
raise KeyError("No event can handle %s" % path)
|
|
|
|
|
2015-12-01 12:34:32 -05:00
|
|
|
def register_paths(self, method, path_patterns, callback):
|
|
|
|
for path_pattern in path_patterns:
|
|
|
|
self.callbacks.append((method, path_pattern, callback))
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
|
2014-09-24 12:25:41 -04:00
|
|
|
class MockKey(object):
|
|
|
|
alg = "mock_alg"
|
|
|
|
version = "mock_version"
|
2014-10-15 19:09:48 -04:00
|
|
|
signature = b"\x9a\x87$"
|
2014-09-24 12:25:41 -04:00
|
|
|
|
|
|
|
@property
|
|
|
|
def verify_key(self):
|
|
|
|
return self
|
|
|
|
|
|
|
|
def sign(self, message):
|
2014-10-15 19:09:48 -04:00
|
|
|
return self
|
2014-09-24 12:25:41 -04:00
|
|
|
|
|
|
|
def verify(self, message, sig):
|
|
|
|
assert sig == b"\x9a\x87$"
|
|
|
|
|
|
|
|
|
2014-08-13 13:26:42 -04:00
|
|
|
class MockClock(object):
|
|
|
|
now = 1000
|
|
|
|
|
2014-12-10 14:24:12 -05:00
|
|
|
def __init__(self):
|
2015-01-13 11:57:55 -05:00
|
|
|
# list of lists of [absolute_time, callback, expired] in no particular
|
|
|
|
# order
|
2014-12-10 14:24:12 -05:00
|
|
|
self.timers = []
|
2016-09-23 08:56:14 -04:00
|
|
|
self.loopers = []
|
2014-12-10 14:24:12 -05:00
|
|
|
|
2014-08-13 13:26:42 -04:00
|
|
|
def time(self):
|
|
|
|
return self.now
|
|
|
|
|
|
|
|
def time_msec(self):
|
|
|
|
return self.time() * 1000
|
|
|
|
|
2016-02-15 12:10:40 -05:00
|
|
|
def call_later(self, delay, callback, *args, **kwargs):
|
2014-12-10 14:24:12 -05:00
|
|
|
current_context = LoggingContext.current_context()
|
|
|
|
|
|
|
|
def wrapped_callback():
|
|
|
|
LoggingContext.thread_local.current_context = current_context
|
2016-02-15 12:10:40 -05:00
|
|
|
callback(*args, **kwargs)
|
2014-12-10 14:26:52 -05:00
|
|
|
|
2015-01-13 11:57:55 -05:00
|
|
|
t = [self.now + delay, wrapped_callback, False]
|
2014-12-10 14:26:52 -05:00
|
|
|
self.timers.append(t)
|
2015-01-13 11:57:55 -05:00
|
|
|
|
2014-12-10 14:26:52 -05:00
|
|
|
return t
|
2014-12-10 14:24:12 -05:00
|
|
|
|
2015-05-13 11:54:02 -04:00
|
|
|
def looping_call(self, function, interval):
|
2016-09-23 08:56:14 -04:00
|
|
|
self.loopers.append([function, interval / 1000., self.now])
|
2015-05-13 11:54:02 -04:00
|
|
|
|
2016-03-01 09:49:41 -05:00
|
|
|
def cancel_call_later(self, timer, ignore_errs=False):
|
2015-01-13 11:57:55 -05:00
|
|
|
if timer[2]:
|
2016-03-01 09:49:41 -05:00
|
|
|
if not ignore_errs:
|
|
|
|
raise Exception("Cannot cancel an expired timer")
|
2015-01-13 11:57:55 -05:00
|
|
|
|
|
|
|
timer[2] = True
|
2014-12-10 14:26:52 -05:00
|
|
|
self.timers = [t for t in self.timers if t != timer]
|
2014-12-10 14:24:12 -05:00
|
|
|
|
2014-08-13 14:17:30 -04:00
|
|
|
# For unit testing
|
|
|
|
def advance_time(self, secs):
|
|
|
|
self.now += secs
|
|
|
|
|
2014-12-10 14:24:12 -05:00
|
|
|
timers = self.timers
|
|
|
|
self.timers = []
|
|
|
|
|
2015-01-13 11:57:55 -05:00
|
|
|
for t in timers:
|
|
|
|
time, callback, expired = t
|
|
|
|
|
|
|
|
if expired:
|
|
|
|
raise Exception("Timer already expired")
|
|
|
|
|
2014-12-10 14:24:12 -05:00
|
|
|
if self.now >= time:
|
2015-01-13 11:57:55 -05:00
|
|
|
t[2] = True
|
2014-12-10 14:24:12 -05:00
|
|
|
callback()
|
|
|
|
else:
|
2015-01-13 11:57:55 -05:00
|
|
|
self.timers.append(t)
|
2014-12-10 14:24:12 -05:00
|
|
|
|
2016-09-23 08:56:14 -04:00
|
|
|
for looped in self.loopers:
|
|
|
|
func, interval, last = looped
|
|
|
|
if last + interval < self.now:
|
|
|
|
func()
|
|
|
|
looped[2] = self.now
|
|
|
|
|
2015-11-10 10:51:40 -05:00
|
|
|
def advance_time_msec(self, ms):
|
|
|
|
self.advance_time(ms / 1000.)
|
|
|
|
|
2016-12-09 11:48:48 -05:00
|
|
|
def time_bound_deferred(self, d, *args, **kwargs):
|
|
|
|
# We don't bother timing things out for now.
|
|
|
|
return d
|
|
|
|
|
2014-08-13 13:26:42 -04:00
|
|
|
|
2014-08-18 10:10:31 -04:00
|
|
|
def _format_call(args, kwargs):
|
|
|
|
return ", ".join(
|
2018-08-10 09:54:09 -04:00
|
|
|
["%r" % (a) for a in args] + ["%s=%r" % (k, v) for k, v in kwargs.items()]
|
2014-08-18 10:10:31 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
class DeferredMockCallable(object):
|
|
|
|
"""A callable instance that stores a set of pending call expectations and
|
|
|
|
return values for them. It allows a unit test to assert that the given set
|
|
|
|
of function calls are eventually made, by awaiting on them to be called.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
self.expectations = []
|
2014-08-28 11:40:06 -04:00
|
|
|
self.calls = []
|
2014-08-18 10:10:31 -04:00
|
|
|
|
|
|
|
def __call__(self, *args, **kwargs):
|
2014-08-28 11:40:06 -04:00
|
|
|
self.calls.append((args, kwargs))
|
|
|
|
|
2014-08-18 10:10:31 -04:00
|
|
|
if not self.expectations:
|
2018-08-10 09:54:09 -04:00
|
|
|
raise ValueError(
|
|
|
|
"%r has no pending calls to handle call(%s)"
|
|
|
|
% (self, _format_call(args, kwargs))
|
2014-08-18 10:10:31 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
for (call, result, d) in self.expectations:
|
|
|
|
if args == call[1] and kwargs == call[2]:
|
|
|
|
d.callback(None)
|
|
|
|
return result
|
|
|
|
|
2018-08-10 09:54:09 -04:00
|
|
|
failure = AssertionError(
|
|
|
|
"Was not expecting call(%s)" % (_format_call(args, kwargs))
|
|
|
|
)
|
2014-08-18 10:10:31 -04:00
|
|
|
|
2014-08-29 07:08:33 -04:00
|
|
|
for _, _, d in self.expectations:
|
|
|
|
try:
|
|
|
|
d.errback(failure)
|
2017-10-23 10:52:32 -04:00
|
|
|
except Exception:
|
2014-08-29 07:08:33 -04:00
|
|
|
pass
|
|
|
|
|
|
|
|
raise failure
|
|
|
|
|
2014-08-18 10:10:31 -04:00
|
|
|
def expect_call_and_return(self, call, result):
|
|
|
|
self.expectations.append((call, result, defer.Deferred()))
|
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
2014-08-29 07:08:33 -04:00
|
|
|
def await_calls(self, timeout=1000):
|
|
|
|
deferred = defer.DeferredList(
|
2018-08-10 09:54:09 -04:00
|
|
|
[d for _, _, d in self.expectations], fireOnOneErrback=True
|
2014-08-29 07:08:33 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
timer = reactor.callLater(
|
2016-02-19 10:34:38 -05:00
|
|
|
timeout / 1000,
|
2014-08-29 07:08:33 -04:00
|
|
|
deferred.errback,
|
2018-08-10 09:54:09 -04:00
|
|
|
AssertionError(
|
|
|
|
"%d pending calls left: %s"
|
|
|
|
% (
|
|
|
|
len([e for e in self.expectations if not e[2].called]),
|
|
|
|
[e for e in self.expectations if not e[2].called],
|
|
|
|
)
|
|
|
|
),
|
2014-08-29 07:08:33 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
yield deferred
|
|
|
|
|
|
|
|
timer.cancel()
|
|
|
|
|
2014-08-28 11:40:06 -04:00
|
|
|
self.calls = []
|
|
|
|
|
|
|
|
def assert_had_no_calls(self):
|
|
|
|
if self.calls:
|
|
|
|
calls = self.calls
|
|
|
|
self.calls = []
|
|
|
|
|
2016-02-19 10:34:38 -05:00
|
|
|
raise AssertionError(
|
2018-08-10 09:54:09 -04:00
|
|
|
"Expected not to received any calls, got:\n"
|
|
|
|
+ "\n".join(["call(%s)" % _format_call(c[0], c[1]) for c in calls])
|
2014-08-28 11:40:06 -04:00
|
|
|
)
|
2018-08-09 09:33:49 -04:00
|
|
|
|
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def create_room(hs, room_id, creator_id):
|
|
|
|
"""Creates and persist a creation event for the given room
|
|
|
|
|
|
|
|
Args:
|
|
|
|
hs
|
|
|
|
room_id (str)
|
|
|
|
creator_id (str)
|
|
|
|
"""
|
|
|
|
|
|
|
|
store = hs.get_datastore()
|
|
|
|
event_builder_factory = hs.get_event_builder_factory()
|
|
|
|
event_creation_handler = hs.get_event_creation_handler()
|
|
|
|
|
2018-09-06 12:58:18 -04:00
|
|
|
builder = event_builder_factory.new(
|
|
|
|
{
|
|
|
|
"type": EventTypes.Create,
|
|
|
|
"state_key": "",
|
|
|
|
"sender": creator_id,
|
|
|
|
"room_id": room_id,
|
|
|
|
"content": {},
|
|
|
|
}
|
2018-08-09 09:33:49 -04:00
|
|
|
)
|
|
|
|
|
2018-09-06 12:58:18 -04:00
|
|
|
event, context = yield event_creation_handler.create_new_client_event(builder)
|
|
|
|
|
2018-08-09 09:33:49 -04:00
|
|
|
yield store.persist_event(event, context)
|