1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- # -*- coding: utf-8 -*-
- # Copyright 2019 The Matrix.org Foundation C.I.C.
- #
- # 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.
- import os
- import tempfile
- import shutil
- import time
- from subprocess import Popen
- CFG_TEMPLATE = """
- [http]
- clientapi.http.bind_address = localhost
- clientapi.http.port = {port}
- client_http_base = http://localhost:{port}
- verify_response_template = {testsubject_path}/res/verify_response_template
- federation.verifycerts = False
- [db]
- db.file = :memory:
- [general]
- server.name = test.local
- terms.path = {terms_path}
- [email]
- email.tlsmode = 0
- email.template = {testsubject_path}/res/verification_template.eml
- email.invite.subject = %(sender_display_name)s has invited you to chat
- email.smtphost = localhost
- email.from = Sydent Validation <noreply@localhost>
- email.smtpport = 9925
- email.subject = Your Validation Token
- email.invite_template = {testsubject_path}/res/invite_template.eml
- """
- class MatrixIsTestLauncher(object):
- def __init__(self, with_terms):
- self.with_terms = with_terms
- def launch(self):
- sydent_path = os.path.abspath(os.path.join(
- os.path.dirname(__file__), '..',
- ))
- testsubject_path = os.path.join(
- sydent_path, 'matrix_is_test',
- )
- terms_path = os.path.join(testsubject_path, 'terms.yaml') if self.with_terms else ''
- port = 8099 if self.with_terms else 8098
- self.tmpdir = tempfile.mkdtemp(prefix='sydenttest')
- with open(os.path.join(self.tmpdir, 'sydent.conf'), 'w') as cfgfp:
- cfgfp.write(CFG_TEMPLATE.format(
- testsubject_path=testsubject_path,
- terms_path=terms_path,
- port=port,
- ))
- newEnv = os.environ.copy()
- newEnv.update({
- 'PYTHONPATH': sydent_path,
- })
- stderr_fp = open(os.path.join(testsubject_path, 'sydent.stderr'), 'w')
- pybin = os.getenv('SYDENT_PYTHON', 'python')
- self.process = Popen(
- args=[pybin, '-m', 'sydent.sydent'],
- cwd=self.tmpdir,
- env=newEnv,
- stderr=stderr_fp,
- )
- # XXX: wait for startup in a sensible way
- time.sleep(2)
- self._baseUrl = 'http://localhost:%d' % (port,)
- def tearDown(self):
- print("Stopping sydent...")
- self.process.terminate()
- shutil.rmtree(self.tmpdir)
- def get_base_url(self):
- return self._baseUrl
|