##// END OF EJS Templates
core: avoid using rhodecode.test packages inside main packages as tests are removed during build which can cause some problems in some edge case calls
core: avoid using rhodecode.test packages inside main packages as tests are removed during build which can cause some problems in some edge case calls

File last commit:

r5608:6d33e504 default
r5618:bdbdb63f default
Show More
conftest.py
265 lines | 9.4 KiB | text/x-python | PythonLexer
core: updated copyright to 2024
r5608 # Copyright (C) 2010-2024 RhodeCode GmbH
project: added all source files and assets
r1 #
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License, version 3
# (only), as published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# This program is dual-licensed. If you wish to learn more about the
# RhodeCode Enterprise Edition, including its added features, Support services,
# and proprietary license terms, please see https://rhodecode.com/licenses/
tests: fixed test suite for celery adoption
r5607 import subprocess
project: added all source files and assets
r1 import os
import sys
import tempfile
import pytest
from sqlalchemy.engine import url
tests: fixed all tests for python3 BIG changes
r5087 from rhodecode.lib.str_utils import safe_str, safe_bytes
tests: fixed test suite for celery adoption
r5607 from rhodecode.tests.fixtures.rc_fixture import TestINI
project: added all source files and assets
r1
def _get_dbs_from_metafunc(metafunc):
tests: fixed test suite for celery adoption
r5607 dbs_mark = metafunc.definition.get_closest_marker("dbs")
dependencies: bumped test libraries.
r3951
if dbs_mark:
# Supported backends by this test function, created from pytest.mark.dbs
backends = dbs_mark.args
project: added all source files and assets
r1 else:
tests: fixed test suite for celery adoption
r5607 backends = metafunc.config.getoption("--dbs")
project: added all source files and assets
r1 return backends
def pytest_generate_tests(metafunc):
# Support test generation based on --dbs parameter
tests: fixed test suite for celery adoption
r5607 if "db_backend" in metafunc.fixturenames:
requested_backends = set(metafunc.config.getoption("--dbs"))
project: added all source files and assets
r1 backends = _get_dbs_from_metafunc(metafunc)
backends = requested_backends.intersection(backends)
# TODO: johbo: Disabling a backend did not work out with
# parametrization, find better way to achieve this.
if not backends:
metafunc.function._skip = True
tests: fixed test suite for celery adoption
r5607 metafunc.parametrize("db_backend_name", backends)
project: added all source files and assets
r1
def pytest_collection_modifyitems(session, config, items):
tests: fixed test suite for celery adoption
r5607 remaining = [i for i in items if not getattr(i.obj, "_skip", False)]
project: added all source files and assets
r1 items[:] = remaining
pytest: use consistent way of creating a fixture by using pytest.fixture()
r3946 @pytest.fixture()
tests: fixed test suite for celery adoption
r5607 def db_backend(request, db_backend_name, ini_config, tmpdir_factory):
project: added all source files and assets
r1 basetemp = tmpdir_factory.getbasetemp().strpath
klass = _get_backend(db_backend_name)
tests: fixed test suite for celery adoption
r5607 option_name = "--{}-connection-string".format(db_backend_name)
project: added all source files and assets
r1 connection_string = request.config.getoption(option_name) or None
tests: fixed test suite for celery adoption
r5607 return klass(config_file=ini_config, basetemp=basetemp, connection_string=connection_string)
project: added all source files and assets
r1
def _get_backend(backend_type):
tests: fixed test suite for celery adoption
r5607 return {"sqlite": SQLiteDBBackend, "postgres": PostgresDBBackend, "mysql": MySQLDBBackend, "": EmptyDBBackend}[
backend_type
]
project: added all source files and assets
r1
class DBBackend(object):
_store = os.path.dirname(os.path.abspath(__file__))
_type = None
tests: fixed test suite for celery adoption
r5607 _base_ini_config = [{"app:main": {"vcs.start_server": "false", "startup.import_repos": "false"}}]
_db_url = [{"app:main": {"sqlalchemy.db1.url": ""}}]
_base_db_name = "rhodecode_test_db_backend"
std_env = {"RC_TEST": "0"}
project: added all source files and assets
r1
tests: fixed test suite for celery adoption
r5607 def __init__(self, config_file, db_name=None, basetemp=None, connection_string=None):
project: added all source files and assets
r1 self.fixture_store = os.path.join(self._store, self._type)
self.db_name = db_name or self._base_db_name
self._base_ini_file = config_file
tests: fixed test suite for celery adoption
r5607 self.stderr = ""
self.stdout = ""
project: added all source files and assets
r1 self._basetemp = basetemp or tempfile.gettempdir()
tests: fixed test suite for celery adoption
r5607 self._repos_location = os.path.join(self._basetemp, "rc_test_repos")
project: added all source files and assets
r1 self.connection_string = connection_string
@property
def connection_string(self):
return self._connection_string
@connection_string.setter
def connection_string(self, new_connection_string):
if not new_connection_string:
new_connection_string = self.get_default_connection_string()
else:
tests: fixed test suite for celery adoption
r5607 new_connection_string = new_connection_string.format(db_name=self.db_name)
project: added all source files and assets
r1 url_parts = url.make_url(new_connection_string)
self._connection_string = new_connection_string
self.user = url_parts.username
self.password = url_parts.password
self.host = url_parts.host
def get_default_connection_string(self):
tests: fixed test suite for celery adoption
r5607 raise NotImplementedError("default connection_string is required.")
project: added all source files and assets
r1
def execute(self, cmd, env=None, *args):
"""
Runs command on the system with given ``args``.
"""
tests: fixed test suite for celery adoption
r5607 command = cmd + " " + " ".join(args)
sys.stdout.write(f"CMD: {command}")
project: added all source files and assets
r1
# Tell Python to use UTF-8 encoding out stdout
_env = os.environ.copy()
tests: fixed test suite for celery adoption
r5607 _env["PYTHONIOENCODING"] = "UTF-8"
fix(tests): fixed db migration tests after introduction of RC_TEST flag
r5351 _env.update(self.std_env)
project: added all source files and assets
r1 if env:
_env.update(env)
fix(tests): fixed db migration tests after introduction of RC_TEST flag
r5351
tests: fixed test suite for celery adoption
r5607 self.p = subprocess.Popen(command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE, env=_env)
project: added all source files and assets
r1 self.stdout, self.stderr = self.p.communicate()
tests: fixed all tests for python3 BIG changes
r5087 stdout_str = safe_str(self.stdout)
tests: fixed test suite for celery adoption
r5607 sys.stdout.write(f"COMMAND:{command}\n")
tests: fixed all tests for python3 BIG changes
r5087 sys.stdout.write(stdout_str)
project: added all source files and assets
r1 return self.stdout, self.stderr
def assert_returncode_success(self):
tests: fixed all tests for python3 BIG changes
r5087 from rich import print as pprint
tests: fixed test suite for celery adoption
r5607
migration-tests: improved error reporting
r1293 if not self.p.returncode == 0:
tests: fixed all tests for python3 BIG changes
r5087 pprint(safe_str(self.stderr))
tests: fixed test suite for celery adoption
r5607 raise AssertionError(f"non 0 retcode:{self.p.returncode}")
project: added all source files and assets
r1
db: ensure migrations are executed and steps are tested
r2653 def assert_correct_output(self, stdout, version):
tests: fixed test suite for celery adoption
r5607 assert b"UPGRADE FOR STEP %b COMPLETED" % safe_bytes(version) in stdout
db: ensure migrations are executed and steps are tested
r2653
project: added all source files and assets
r1 def setup_rhodecode_db(self, ini_params=None, env=None):
if not ini_params:
ini_params = self._base_ini_config
ini_params.extend(self._db_url)
tests: fixed test suite for celery adoption
r5607 with TestINI(self._base_ini_file, ini_params, self._type, destroy=True) as _ini_file:
project: added all source files and assets
r1 if not os.path.isdir(self._repos_location):
os.makedirs(self._repos_location)
mercurial: refactor how we fetch default largefile store....
r1562
db: ensure migrations are executed and steps are tested
r2653 return self.execute(
core: ported setup-app to pyramid command....
r2341 "rc-setup-app {0} --user=marcink "
project: added all source files and assets
r1 "--email=marcin@rhodeocode.com --password={1} "
tests: fixed test suite for celery adoption
r5607 "--repos={2} --force-yes".format(_ini_file, "qweqwe", self._repos_location),
env=env,
)
project: added all source files and assets
r1
def upgrade_database(self, ini_params=None):
if not ini_params:
ini_params = self._base_ini_config
ini_params.extend(self._db_url)
tests: fixed test suite for celery adoption
r5607 test_ini = TestINI(self._base_ini_file, ini_params, self._type, destroy=True)
project: added all source files and assets
r1 with test_ini as ini_file:
if not os.path.isdir(self._repos_location):
os.makedirs(self._repos_location)
db: ensure migrations are executed and steps are tested
r2653
tests: fixed test suite for celery adoption
r5607 return self.execute("rc-upgrade-db {0} --force-yes".format(ini_file))
project: added all source files and assets
r1
def setup_db(self):
raise NotImplementedError
def teardown_db(self):
raise NotImplementedError
def import_dump(self, dumpname):
raise NotImplementedError
class EmptyDBBackend(DBBackend):
tests: fixed test suite for celery adoption
r5607 _type = ""
project: added all source files and assets
r1
def setup_db(self):
pass
def teardown_db(self):
pass
def import_dump(self, dumpname):
pass
def assert_returncode_success(self):
assert True
class SQLiteDBBackend(DBBackend):
tests: fixed test suite for celery adoption
r5607 _type = "sqlite"
project: added all source files and assets
r1
def get_default_connection_string(self):
tests: fixed test suite for celery adoption
r5607 return "sqlite:///{}/{}.sqlite".format(self._basetemp, self.db_name)
project: added all source files and assets
r1
def setup_db(self):
# dump schema for tests
# cp -v $TEST_DB_NAME
tests: fixed test suite for celery adoption
r5607 self._db_url = [{"app:main": {"sqlalchemy.db1.url": self.connection_string}}]
project: added all source files and assets
r1
def import_dump(self, dumpname):
dump = os.path.join(self.fixture_store, dumpname)
tests: fixed test suite for celery adoption
r5607 target = os.path.join(self._basetemp, "{0.db_name}.sqlite".format(self))
return self.execute(f"cp -v {dump} {target}")
project: added all source files and assets
r1
def teardown_db(self):
tests: fixed all tests for python3 BIG changes
r5087 target_db = os.path.join(self._basetemp, self.db_name)
return self.execute(f"rm -rf {target_db}.sqlite")
project: added all source files and assets
r1
class MySQLDBBackend(DBBackend):
tests: fixed test suite for celery adoption
r5607 _type = "mysql"
project: added all source files and assets
r1
def get_default_connection_string(self):
tests: fixed test suite for celery adoption
r5607 return "mysql://root:qweqwe@127.0.0.1/{}".format(self.db_name)
project: added all source files and assets
r1
def setup_db(self):
# dump schema for tests
# mysqldump -uroot -pqweqwe $TEST_DB_NAME
tests: fixed test suite for celery adoption
r5607 self._db_url = [{"app:main": {"sqlalchemy.db1.url": self.connection_string}}]
return self.execute(
"mysql -v -u{} -p{} -e 'create database '{}';'".format(self.user, self.password, self.db_name)
)
project: added all source files and assets
r1
def import_dump(self, dumpname):
dump = os.path.join(self.fixture_store, dumpname)
tests: fixed test suite for celery adoption
r5607 return self.execute("mysql -u{} -p{} {} < {}".format(self.user, self.password, self.db_name, dump))
project: added all source files and assets
r1
def teardown_db(self):
tests: fixed test suite for celery adoption
r5607 return self.execute(
"mysql -v -u{} -p{} -e 'drop database '{}';'".format(self.user, self.password, self.db_name)
)
project: added all source files and assets
r1
class PostgresDBBackend(DBBackend):
tests: fixed test suite for celery adoption
r5607 _type = "postgres"
project: added all source files and assets
r1
def get_default_connection_string(self):
tests: fixed test suite for celery adoption
r5607 return "postgresql://postgres:qweqwe@localhost/{}".format(self.db_name)
project: added all source files and assets
r1
def setup_db(self):
# dump schema for tests
# pg_dump -U postgres -h localhost $TEST_DB_NAME
tests: fixed test suite for celery adoption
r5607 self._db_url = [{"app:main": {"sqlalchemy.db1.url": self.connection_string}}]
tests: fixed all tests for python3 BIG changes
r5087 cmd = f"PGPASSWORD={self.password} psql -U {self.user} -h localhost -c 'create database '{self.db_name}';'"
return self.execute(cmd)
project: added all source files and assets
r1
def teardown_db(self):
tests: fixed all tests for python3 BIG changes
r5087 cmd = f"PGPASSWORD={self.password} psql -U {self.user} -h localhost -c 'drop database if exists '{self.db_name}';'"
return self.execute(cmd)
project: added all source files and assets
r1
def import_dump(self, dumpname):
dump = os.path.join(self.fixture_store, dumpname)
tests: fixed all tests for python3 BIG changes
r5087 cmd = f"PGPASSWORD={self.password} psql -U {self.user} -h localhost -d {self.db_name} -1 -f {dump}"
return self.execute(cmd)