mirror of
https://mau.dev/maunium/synapse.git
synced 2024-10-01 01:36:05 -04:00
Merge pull request #4889 from matrix-org/rav/test_real_config
Use a regular HomeServerConfig object for unit tests
This commit is contained in:
commit
5cf00c9f60
1
changelog.d/4889.misc
Normal file
1
changelog.d/4889.misc
Normal file
@ -0,0 +1 @@
|
|||||||
|
Use a regular HomeServerConfig object for unit tests rater than a Mock.
|
@ -405,7 +405,10 @@ class Config(object):
|
|||||||
self.invoke_all("generate_files", config)
|
self.invoke_all("generate_files", config)
|
||||||
return
|
return
|
||||||
|
|
||||||
self.invoke_all("read_config", config)
|
self.parse_config_dict(config)
|
||||||
|
|
||||||
|
def parse_config_dict(self, config_dict):
|
||||||
|
self.invoke_all("read_config", config_dict)
|
||||||
|
|
||||||
|
|
||||||
def find_config_files(search_paths):
|
def find_config_files(search_paths):
|
||||||
|
@ -38,7 +38,12 @@ logger = logging.getLogger(__name__)
|
|||||||
class KeyConfig(Config):
|
class KeyConfig(Config):
|
||||||
|
|
||||||
def read_config(self, config):
|
def read_config(self, config):
|
||||||
|
# the signing key can be specified inline or in a separate file
|
||||||
|
if "signing_key" in config:
|
||||||
|
self.signing_key = read_signing_keys([config["signing_key"]])
|
||||||
|
else:
|
||||||
self.signing_key = self.read_signing_key(config["signing_key_path"])
|
self.signing_key = self.read_signing_key(config["signing_key_path"])
|
||||||
|
|
||||||
self.old_signing_keys = self.read_old_signing_keys(
|
self.old_signing_keys = self.read_old_signing_keys(
|
||||||
config.get("old_signing_keys", {})
|
config.get("old_signing_keys", {})
|
||||||
)
|
)
|
||||||
|
@ -22,7 +22,7 @@ from synapse.api.errors import ResourceLimitError, SynapseError
|
|||||||
from synapse.handlers.register import RegistrationHandler
|
from synapse.handlers.register import RegistrationHandler
|
||||||
from synapse.types import RoomAlias, UserID, create_requester
|
from synapse.types import RoomAlias, UserID, create_requester
|
||||||
|
|
||||||
from tests.utils import setup_test_homeserver
|
from tests.utils import default_config, setup_test_homeserver
|
||||||
|
|
||||||
from .. import unittest
|
from .. import unittest
|
||||||
|
|
||||||
@ -40,8 +40,16 @@ class RegistrationTestCase(unittest.TestCase):
|
|||||||
self.mock_distributor = Mock()
|
self.mock_distributor = Mock()
|
||||||
self.mock_distributor.declare("registered_user")
|
self.mock_distributor.declare("registered_user")
|
||||||
self.mock_captcha_client = Mock()
|
self.mock_captcha_client = Mock()
|
||||||
|
|
||||||
|
hs_config = default_config("test")
|
||||||
|
|
||||||
|
# some of the tests rely on us having a user consent version
|
||||||
|
hs_config.user_consent_version = "test_consent_version"
|
||||||
|
hs_config.max_mau_value = 50
|
||||||
|
|
||||||
self.hs = yield setup_test_homeserver(
|
self.hs = yield setup_test_homeserver(
|
||||||
self.addCleanup,
|
self.addCleanup,
|
||||||
|
config=hs_config,
|
||||||
expire_access_token=True,
|
expire_access_token=True,
|
||||||
)
|
)
|
||||||
self.macaroon_generator = Mock(
|
self.macaroon_generator = Mock(
|
||||||
@ -50,7 +58,6 @@ class RegistrationTestCase(unittest.TestCase):
|
|||||||
self.hs.get_macaroon_generator = Mock(return_value=self.macaroon_generator)
|
self.hs.get_macaroon_generator = Mock(return_value=self.macaroon_generator)
|
||||||
self.handler = self.hs.get_registration_handler()
|
self.handler = self.hs.get_registration_handler()
|
||||||
self.store = self.hs.get_datastore()
|
self.store = self.hs.get_datastore()
|
||||||
self.hs.config.max_mau_value = 50
|
|
||||||
self.lots_of_users = 100
|
self.lots_of_users = 100
|
||||||
self.small_number_of_users = 1
|
self.small_number_of_users = 1
|
||||||
|
|
||||||
|
@ -63,8 +63,10 @@ class EmailPusherTests(HomeserverTestCase):
|
|||||||
config.email_smtp_port = 20
|
config.email_smtp_port = 20
|
||||||
config.require_transport_security = False
|
config.require_transport_security = False
|
||||||
config.email_smtp_user = None
|
config.email_smtp_user = None
|
||||||
|
config.email_smtp_pass = None
|
||||||
config.email_app_name = "Matrix"
|
config.email_app_name = "Matrix"
|
||||||
config.email_notif_from = "test@example.com"
|
config.email_notif_from = "test@example.com"
|
||||||
|
config.email_riot_base_url = None
|
||||||
|
|
||||||
hs = self.setup_test_homeserver(config=config, sendmail=sendmail)
|
hs = self.setup_test_homeserver(config=config, sendmail=sendmail)
|
||||||
|
|
||||||
|
@ -20,6 +20,7 @@ class RegisterRestServletTestCase(unittest.HomeserverTestCase):
|
|||||||
self.hs.config.registrations_require_3pid = []
|
self.hs.config.registrations_require_3pid = []
|
||||||
self.hs.config.auto_join_rooms = []
|
self.hs.config.auto_join_rooms = []
|
||||||
self.hs.config.enable_registration_captcha = False
|
self.hs.config.enable_registration_captcha = False
|
||||||
|
self.hs.config.allow_guest_access = True
|
||||||
|
|
||||||
return self.hs
|
return self.hs
|
||||||
|
|
||||||
@ -28,7 +29,7 @@ class RegisterRestServletTestCase(unittest.HomeserverTestCase):
|
|||||||
as_token = "i_am_an_app_service"
|
as_token = "i_am_an_app_service"
|
||||||
|
|
||||||
appservice = ApplicationService(
|
appservice = ApplicationService(
|
||||||
as_token, self.hs.config.hostname,
|
as_token, self.hs.config.server_name,
|
||||||
id="1234",
|
id="1234",
|
||||||
namespaces={
|
namespaces={
|
||||||
"users": [{"regex": r"@as_user.*", "exclusive": True}],
|
"users": [{"regex": r"@as_user.*", "exclusive": True}],
|
||||||
|
@ -9,13 +9,16 @@ from synapse.server_notices.resource_limits_server_notices import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
from tests import unittest
|
from tests import unittest
|
||||||
from tests.utils import setup_test_homeserver
|
from tests.utils import default_config, setup_test_homeserver
|
||||||
|
|
||||||
|
|
||||||
class TestResourceLimitsServerNotices(unittest.TestCase):
|
class TestResourceLimitsServerNotices(unittest.TestCase):
|
||||||
@defer.inlineCallbacks
|
@defer.inlineCallbacks
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
self.hs = yield setup_test_homeserver(self.addCleanup)
|
hs_config = default_config(name="test")
|
||||||
|
hs_config.server_notices_mxid = "@server:test"
|
||||||
|
|
||||||
|
self.hs = yield setup_test_homeserver(self.addCleanup, config=hs_config)
|
||||||
self.server_notices_sender = self.hs.get_server_notices_sender()
|
self.server_notices_sender = self.hs.get_server_notices_sender()
|
||||||
|
|
||||||
# relying on [1] is far from ideal, but the only case where
|
# relying on [1] is far from ideal, but the only case where
|
||||||
|
@ -28,7 +28,7 @@ from twisted.internet import defer, reactor
|
|||||||
|
|
||||||
from synapse.api.constants import EventTypes, RoomVersions
|
from synapse.api.constants import EventTypes, RoomVersions
|
||||||
from synapse.api.errors import CodeMessageException, cs_error
|
from synapse.api.errors import CodeMessageException, cs_error
|
||||||
from synapse.config.server import ServerConfig
|
from synapse.config.homeserver import HomeServerConfig
|
||||||
from synapse.federation.transport import server as federation_server
|
from synapse.federation.transport import server as federation_server
|
||||||
from synapse.http.server import HttpServer
|
from synapse.http.server import HttpServer
|
||||||
from synapse.server import HomeServer
|
from synapse.server import HomeServer
|
||||||
@ -111,14 +111,25 @@ def default_config(name):
|
|||||||
"""
|
"""
|
||||||
Create a reasonable test config.
|
Create a reasonable test config.
|
||||||
"""
|
"""
|
||||||
config = Mock()
|
config_dict = {
|
||||||
config.signing_key = [MockKey()]
|
"server_name": name,
|
||||||
|
"media_store_path": "media",
|
||||||
|
"uploads_path": "uploads",
|
||||||
|
|
||||||
|
# the test signing key is just an arbitrary ed25519 key to keep the config
|
||||||
|
# parser happy
|
||||||
|
"signing_key": "ed25519 a_lPym qvioDNmfExFBRPgdTU+wtFYKq4JfwFRv7sYVgWvmgJg",
|
||||||
|
}
|
||||||
|
|
||||||
|
config = HomeServerConfig()
|
||||||
|
config.parse_config_dict(config_dict)
|
||||||
|
|
||||||
|
# TODO: move this stuff into config_dict or get rid of it
|
||||||
config.event_cache_size = 1
|
config.event_cache_size = 1
|
||||||
config.enable_registration = True
|
config.enable_registration = True
|
||||||
config.enable_registration_captcha = False
|
config.enable_registration_captcha = False
|
||||||
config.macaroon_secret_key = "not even a little secret"
|
config.macaroon_secret_key = "not even a little secret"
|
||||||
config.expire_access_token = False
|
config.expire_access_token = False
|
||||||
config.server_name = name
|
|
||||||
config.trusted_third_party_id_servers = []
|
config.trusted_third_party_id_servers = []
|
||||||
config.room_invite_state_types = []
|
config.room_invite_state_types = []
|
||||||
config.password_providers = []
|
config.password_providers = []
|
||||||
@ -176,13 +187,6 @@ def default_config(name):
|
|||||||
# background, which upsets the test runner.
|
# background, which upsets the test runner.
|
||||||
config.update_user_directory = False
|
config.update_user_directory = False
|
||||||
|
|
||||||
def is_threepid_reserved(threepid):
|
|
||||||
return ServerConfig.is_threepid_reserved(
|
|
||||||
config.mau_limits_reserved_threepids, threepid
|
|
||||||
)
|
|
||||||
|
|
||||||
config.is_threepid_reserved.side_effect = is_threepid_reserved
|
|
||||||
|
|
||||||
return config
|
return config
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user