46 lines
1.6 KiB
Python
46 lines
1.6 KiB
Python
from django.core.management import call_command
|
|
from django.test import TestCase as _TestCase
|
|
from django.test.runner import DiscoverRunner
|
|
|
|
from openslides.core.config import config
|
|
|
|
|
|
class OpenSlidesDiscoverRunner(DiscoverRunner):
|
|
def run_tests(self, test_labels, extra_tests=None, **kwargs):
|
|
"""
|
|
Test Runner which does not create a database, if only unittest are run.
|
|
"""
|
|
if len(test_labels) == 1 and test_labels[0].startswith('tests.unit'):
|
|
# Do not create a test database, if only unittests are tested
|
|
create_database = False
|
|
else:
|
|
create_database = True
|
|
|
|
self.setup_test_environment()
|
|
suite = self.build_suite(test_labels, extra_tests)
|
|
if create_database:
|
|
old_config = self.setup_databases()
|
|
result = self.run_suite(suite)
|
|
if create_database:
|
|
self.teardown_databases(old_config)
|
|
self.teardown_test_environment()
|
|
return self.suite_result(suite, result)
|
|
|
|
|
|
class TestCase(_TestCase):
|
|
"""
|
|
Overwrites Django's TestCase class to refreshs the config cache.
|
|
"""
|
|
|
|
def _post_teardown(self, *args, **kwargs):
|
|
return_value = super(TestCase, self)._post_teardown(*args, **kwargs)
|
|
# Resets the config object by deleting the cache
|
|
try:
|
|
del config._cache
|
|
except AttributeError:
|
|
# The cache has only to be deleted if it exists.
|
|
pass
|
|
# Clear the whoosh search index
|
|
call_command('clear_index', interactive=False, verbosity=0)
|
|
return return_value
|