Commit bbae00a4 by John Eskew

Enable tox testing of system and commonlib via paver.

Add support for django_version option to support Django 1.8/1.11.
parent dc7bd3db
...@@ -31,6 +31,10 @@ __test__ = False # do not collect ...@@ -31,6 +31,10 @@ __test__ = False # do not collect
("fail-fast", "x", "Fail suite on first failed test"), ("fail-fast", "x", "Fail suite on first failed test"),
("fasttest", "a", "Run without collectstatic"), ("fasttest", "a", "Run without collectstatic"),
make_option( make_option(
"--django_version", dest="django_version",
help="Run against which Django version (1.8 -or- 1.11)."
),
make_option(
"--eval-attr", dest="eval_attr", "--eval-attr", dest="eval_attr",
help="Only run tests matching given attribute expression." help="Only run tests matching given attribute expression."
), ),
...@@ -66,28 +70,61 @@ def test_system(options, passthrough_options): ...@@ -66,28 +70,61 @@ def test_system(options, passthrough_options):
""" """
system = getattr(options, 'system', None) system = getattr(options, 'system', None)
test_id = getattr(options, 'test_id', None) test_id = getattr(options, 'test_id', None)
django_version = getattr(options, 'django_version', None)
assert(system in (None, 'lms', 'cms'))
assert(django_version in (None, '1.8', '1.11'))
def _create_tox_system_test_suites(systems):
system_tests = []
test_paths = []
# Add all test directories for the specified systems.
for syst in systems:
test_paths.extend(suites.default_system_test_dirs(syst))
# Remove all duplicate paths.
test_paths = list(set(test_paths))
for test_id in test_paths:
system = test_id.split('/')[0]
syst = 'cms'
if system in ['common', 'openedx', 'lms']:
syst = 'lms'
system_tests.append(suites.SystemTestSuite(
syst,
passthrough_options=passthrough_options,
test_id=test_id,
**options.test_system
))
return system_tests
if test_id: if test_id:
# Testing a single test ID.
# Ensure the proper system for the test id.
if not system: if not system:
system = test_id.split('/')[0] system = test_id.split('/')[0]
if system in ['common', 'openedx']: if system in ['common', 'openedx']:
system = 'lms' system = 'lms'
options.test_system['test_id'] = test_id
if test_id or system:
system_tests = [suites.SystemTestSuite( system_tests = [suites.SystemTestSuite(
system, system,
passthrough_options=passthrough_options, passthrough_options=passthrough_options,
**options.test_system **options.test_system
)] )]
else: else:
system_tests = [] # Testing a single system -or- both systems.
for syst in ('cms', 'lms'): if system:
system_tests.append(suites.SystemTestSuite( systems = [system]
syst, else:
passthrough_options=passthrough_options, # No specified system or test_id, so run all tests of both systems.
**options.test_system systems = ['cms', 'lms']
)) if django_version:
system_tests = _create_tox_system_test_suites(systems)
else:
system_tests = []
for syst in systems:
system_tests.append(suites.SystemTestSuite(
syst,
passthrough_options=passthrough_options,
**options.test_system
))
test_suite = suites.PythonTestSuite( test_suite = suites.PythonTestSuite(
'python tests', 'python tests',
...@@ -108,6 +145,10 @@ def test_system(options, passthrough_options): ...@@ -108,6 +145,10 @@ def test_system(options, passthrough_options):
("failed", "f", "Run only failed tests"), ("failed", "f", "Run only failed tests"),
("fail-fast", "x", "Run only failed tests"), ("fail-fast", "x", "Run only failed tests"),
make_option( make_option(
"--django_version", dest="django_version",
help="Run against which Django version (1.8 -or- 1.11)."
),
make_option(
'-c', '--cov-args', default='', '-c', '--cov-args', default='',
help='adds as args to coverage for the test run' help='adds as args to coverage for the test run'
), ),
...@@ -124,8 +165,12 @@ def test_lib(options, passthrough_options): ...@@ -124,8 +165,12 @@ def test_lib(options, passthrough_options):
""" """
lib = getattr(options, 'lib', None) lib = getattr(options, 'lib', None)
test_id = getattr(options, 'test_id', lib) test_id = getattr(options, 'test_id', lib)
django_version = getattr(options, 'django_version', None)
assert(django_version in (None, '1.8', '1.11'))
if test_id: if test_id:
# Testing a single test id.
if '/' in test_id: if '/' in test_id:
lib = '/'.join(test_id.split('/')[0:3]) lib = '/'.join(test_id.split('/')[0:3])
else: else:
...@@ -137,6 +182,7 @@ def test_lib(options, passthrough_options): ...@@ -137,6 +182,7 @@ def test_lib(options, passthrough_options):
**options.test_lib **options.test_lib
)] )]
else: else:
# Testing all common/lib test dirs - plus pavelib.
lib_tests = [ lib_tests = [
suites.LibTestSuite( suites.LibTestSuite(
d, d,
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
TestSuite class and subclasses TestSuite class and subclasses
""" """
from .suite import TestSuite from .suite import TestSuite
from .pytest_suite import PytestSuite, SystemTestSuite, LibTestSuite from .pytest_suite import PytestSuite, SystemTestSuite, LibTestSuite, default_system_test_dirs
from .python_suite import PythonTestSuite from .python_suite import PythonTestSuite
from .js_suite import JsTestSuite from .js_suite import JsTestSuite
from .acceptance_suite import AcceptanceTestSuite from .acceptance_suite import AcceptanceTestSuite
......
...@@ -15,6 +15,27 @@ except ImportError: ...@@ -15,6 +15,27 @@ except ImportError:
__test__ = False # do not collect __test__ = False # do not collect
def default_system_test_dirs(system):
"""
Return a list of all directories in which pytest should begin a search for tests.
"""
default_test_dirs = [
"{system}/djangoapps".format(system=system),
"common/djangoapps",
"openedx/core/djangoapps",
"openedx/tests",
"openedx/core/lib",
]
if system in ('lms', 'cms'):
default_test_dirs.append("{system}/lib".format(system=system))
if system == 'lms':
default_test_dirs.append("{system}/tests.py".format(system=system))
default_test_dirs.append("openedx/core/djangolib")
default_test_dirs.append("openedx/features")
return default_test_dirs
class PytestSuite(TestSuite): class PytestSuite(TestSuite):
""" """
A subclass of TestSuite with extra methods that are specific A subclass of TestSuite with extra methods that are specific
...@@ -25,6 +46,13 @@ class PytestSuite(TestSuite): ...@@ -25,6 +46,13 @@ class PytestSuite(TestSuite):
self.failed_only = kwargs.get('failed_only', False) self.failed_only = kwargs.get('failed_only', False)
self.fail_fast = kwargs.get('fail_fast', False) self.fail_fast = kwargs.get('fail_fast', False)
self.run_under_coverage = kwargs.get('with_coverage', True) self.run_under_coverage = kwargs.get('with_coverage', True)
django_version = kwargs.get('django_version', None)
if django_version is None:
self.django_toxenv = None
elif django_version == '1.11':
self.django_toxenv = 'py27-django111'
else:
self.django_toxenv = 'py27-django18'
self.report_dir = Env.REPORT_DIR / self.root self.report_dir = Env.REPORT_DIR / self.root
# If set, put reports for run in "unique" directories. # If set, put reports for run in "unique" directories.
...@@ -122,11 +150,15 @@ class SystemTestSuite(PytestSuite): ...@@ -122,11 +150,15 @@ class SystemTestSuite(PytestSuite):
@property @property
def cmd(self): def cmd(self):
cmd = [ if self.django_toxenv:
'pytest', cmd = ['tox', '-e', self.django_toxenv, '--']
else:
cmd = ['pytest']
cmd.extend([
'--ds={}'.format('{}.envs.{}'.format(self.root, self.settings)), '--ds={}'.format('{}.envs.{}'.format(self.root, self.settings)),
'--junitxml={}'.format(self.report_dir / "nosetests.xml"), '--junitxml={}'.format(self.report_dir / "nosetests.xml"),
] + self.test_options_flags ])
cmd.extend(self.test_options_flags)
if self.verbosity < 1: if self.verbosity < 1:
cmd.append("--quiet") cmd.append("--quiet")
elif self.verbosity > 1: elif self.verbosity > 1:
...@@ -205,12 +237,16 @@ class LibTestSuite(PytestSuite): ...@@ -205,12 +237,16 @@ class LibTestSuite(PytestSuite):
@property @property
def cmd(self): def cmd(self):
cmd = [ if self.django_toxenv:
"pytest", cmd = ['tox', '-e', self.django_toxenv, '--']
else:
cmd = ['pytest']
cmd.extend([
"-p", "-p",
"no:randomly", "no:randomly",
"--junitxml=".format(self.xunit_report), "--junitxml=".format(self.xunit_report),
] + self.passthrough_options + self.test_options_flags ])
cmd.extend(self.passthrough_options + self.test_options_flags)
if self.verbosity < 1: if self.verbosity < 1:
cmd.append("--quiet") cmd.append("--quiet")
elif self.verbosity > 1: elif self.verbosity > 1:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment