Fixed #2879 -- Added support for the integration with Selenium and other in-browser testing frameworks. Also added the first Selenium tests for `contrib.admin`. Many thanks to everyone for their contributions and feedback: Mikeal Rogers, Dirk Datzert, mir, Simon G., Almad, Russell Keith-Magee, Denis Golomazov, devin, robertrv, andrewbadr, Idan Gazit, voidspace, Tom Christie, hjwp2, Adam Nelson, Jannis Leidel, Anssi Kääriäinen, Preston Holmes, Bruno Renié and Jacob Kaplan-Moss.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17241 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2011-12-22 16:33:58 +08:00
|
|
|
import os
|
2015-01-28 20:35:27 +08:00
|
|
|
import sys
|
Fixed #2879 -- Added support for the integration with Selenium and other in-browser testing frameworks. Also added the first Selenium tests for `contrib.admin`. Many thanks to everyone for their contributions and feedback: Mikeal Rogers, Dirk Datzert, mir, Simon G., Almad, Russell Keith-Magee, Denis Golomazov, devin, robertrv, andrewbadr, Idan Gazit, voidspace, Tom Christie, hjwp2, Adam Nelson, Jannis Leidel, Anssi Kääriäinen, Preston Holmes, Bruno Renié and Jacob Kaplan-Moss.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17241 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2011-12-22 16:33:58 +08:00
|
|
|
|
2011-06-10 16:26:05 +08:00
|
|
|
from django.conf import settings
|
2007-08-16 14:06:55 +08:00
|
|
|
from django.core.management.base import BaseCommand
|
2011-06-10 16:26:05 +08:00
|
|
|
from django.test.utils import get_runner
|
2007-08-16 14:06:55 +08:00
|
|
|
|
2013-03-25 12:34:46 +08:00
|
|
|
|
2007-08-16 14:06:55 +08:00
|
|
|
class Command(BaseCommand):
|
2014-06-07 02:12:23 +08:00
|
|
|
help = 'Discover and run tests in the specified modules or the current directory.'
|
2007-08-16 14:06:55 +08:00
|
|
|
|
2014-01-20 10:45:21 +08:00
|
|
|
requires_system_checks = False
|
2007-08-16 14:06:55 +08:00
|
|
|
|
2011-12-29 09:18:30 +08:00
|
|
|
def __init__(self):
|
|
|
|
self.test_runner = None
|
|
|
|
super(Command, self).__init__()
|
|
|
|
|
2011-06-10 16:26:05 +08:00
|
|
|
def run_from_argv(self, argv):
|
|
|
|
"""
|
|
|
|
Pre-parse the command line to extract the value of the --testrunner
|
|
|
|
option. This allows a test runner to define additional command line
|
|
|
|
arguments.
|
|
|
|
"""
|
|
|
|
option = '--testrunner='
|
|
|
|
for arg in argv[2:]:
|
|
|
|
if arg.startswith(option):
|
|
|
|
self.test_runner = arg[len(option):]
|
|
|
|
break
|
|
|
|
super(Command, self).run_from_argv(argv)
|
|
|
|
|
2014-06-07 02:12:23 +08:00
|
|
|
def add_arguments(self, parser):
|
|
|
|
parser.add_argument('args', metavar='test_label', nargs='*',
|
|
|
|
help='Module paths to test; can be modulename, modulename.TestCase or modulename.TestCase.test_method')
|
2015-09-07 21:17:55 +08:00
|
|
|
parser.add_argument('--noinput', '--no-input',
|
2014-06-07 02:12:23 +08:00
|
|
|
action='store_false', dest='interactive', default=True,
|
2016-02-05 01:23:13 +08:00
|
|
|
help='Tells Django to NOT prompt the user for input of any kind.')
|
2014-06-07 02:12:23 +08:00
|
|
|
parser.add_argument('--failfast',
|
|
|
|
action='store_true', dest='failfast', default=False,
|
|
|
|
help='Tells Django to stop running the test suite after first '
|
2016-02-05 01:23:13 +08:00
|
|
|
'failed test.')
|
2014-06-07 02:12:23 +08:00
|
|
|
parser.add_argument('--testrunner',
|
|
|
|
action='store', dest='testrunner',
|
|
|
|
help='Tells Django to use specified test runner class instead of '
|
2016-02-05 01:23:13 +08:00
|
|
|
'the one specified by the TEST_RUNNER setting.')
|
2014-06-07 02:12:23 +08:00
|
|
|
parser.add_argument('--liveserver',
|
|
|
|
action='store', dest='liveserver', default=None,
|
|
|
|
help='Overrides the default address where the live server (used '
|
|
|
|
'with LiveServerTestCase) is expected to run from. The '
|
2016-02-05 01:23:13 +08:00
|
|
|
'default value is localhost:8081-8179.')
|
2014-06-07 02:12:23 +08:00
|
|
|
|
2011-06-10 16:26:05 +08:00
|
|
|
test_runner_class = get_runner(settings, self.test_runner)
|
2014-06-07 02:12:23 +08:00
|
|
|
|
|
|
|
if hasattr(test_runner_class, 'add_arguments'):
|
|
|
|
test_runner_class.add_arguments(parser)
|
2011-06-10 16:26:05 +08:00
|
|
|
|
2007-08-16 14:06:55 +08:00
|
|
|
def handle(self, *test_labels, **options):
|
|
|
|
from django.conf import settings
|
2009-02-28 12:46:38 +08:00
|
|
|
from django.test.utils import get_runner
|
2010-01-04 02:52:25 +08:00
|
|
|
|
2016-03-03 10:01:36 +08:00
|
|
|
TestRunner = get_runner(settings, options['testrunner'])
|
2007-08-16 14:06:55 +08:00
|
|
|
|
2016-03-03 10:01:36 +08:00
|
|
|
if options['liveserver'] is not None:
|
Fixed #2879 -- Added support for the integration with Selenium and other in-browser testing frameworks. Also added the first Selenium tests for `contrib.admin`. Many thanks to everyone for their contributions and feedback: Mikeal Rogers, Dirk Datzert, mir, Simon G., Almad, Russell Keith-Magee, Denis Golomazov, devin, robertrv, andrewbadr, Idan Gazit, voidspace, Tom Christie, hjwp2, Adam Nelson, Jannis Leidel, Anssi Kääriäinen, Preston Holmes, Bruno Renié and Jacob Kaplan-Moss.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17241 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2011-12-22 16:33:58 +08:00
|
|
|
os.environ['DJANGO_LIVE_TEST_SERVER_ADDRESS'] = options['liveserver']
|
2016-03-03 09:53:12 +08:00
|
|
|
del options['liveserver']
|
Fixed #2879 -- Added support for the integration with Selenium and other in-browser testing frameworks. Also added the first Selenium tests for `contrib.admin`. Many thanks to everyone for their contributions and feedback: Mikeal Rogers, Dirk Datzert, mir, Simon G., Almad, Russell Keith-Magee, Denis Golomazov, devin, robertrv, andrewbadr, Idan Gazit, voidspace, Tom Christie, hjwp2, Adam Nelson, Jannis Leidel, Anssi Kääriäinen, Preston Holmes, Bruno Renié and Jacob Kaplan-Moss.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17241 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2011-12-22 16:33:58 +08:00
|
|
|
|
2011-06-10 16:26:05 +08:00
|
|
|
test_runner = TestRunner(**options)
|
2011-04-02 16:37:53 +08:00
|
|
|
failures = test_runner.run_tests(test_labels)
|
2009-12-14 00:24:36 +08:00
|
|
|
|
2007-08-16 14:06:55 +08:00
|
|
|
if failures:
|
2010-01-04 02:52:25 +08:00
|
|
|
sys.exit(bool(failures))
|