2005-07-29 23:15:40 +08:00
|
|
|
#!/usr/bin/env python
|
2013-03-25 12:34:46 +08:00
|
|
|
import logging
|
2014-05-24 19:29:23 +08:00
|
|
|
from optparse import OptionParser
|
2011-08-12 16:43:52 +08:00
|
|
|
import os
|
|
|
|
import shutil
|
|
|
|
import subprocess
|
|
|
|
import sys
|
|
|
|
import tempfile
|
2013-06-14 22:02:30 +08:00
|
|
|
import warnings
|
2005-07-29 23:15:40 +08:00
|
|
|
|
2013-12-30 22:42:15 +08:00
|
|
|
import django
|
2011-10-14 05:34:56 +08:00
|
|
|
from django import contrib
|
2014-05-26 05:01:41 +08:00
|
|
|
from django.apps import apps
|
2014-05-24 19:29:23 +08:00
|
|
|
from django.conf import settings
|
|
|
|
from django.db import connection
|
|
|
|
from django.test import TransactionTestCase, TestCase
|
|
|
|
from django.test.utils import get_runner
|
2014-03-23 04:08:59 +08:00
|
|
|
from django.utils.deprecation import RemovedInDjango19Warning, RemovedInDjango20Warning
|
2012-12-08 18:13:52 +08:00
|
|
|
from django.utils._os import upath
|
2012-07-20 20:48:51 +08:00
|
|
|
from django.utils import six
|
2011-10-14 05:34:56 +08:00
|
|
|
|
2014-02-27 05:48:20 +08:00
|
|
|
|
|
|
|
warnings.simplefilter("default", RemovedInDjango19Warning)
|
2014-03-23 04:08:59 +08:00
|
|
|
warnings.simplefilter("default", RemovedInDjango20Warning)
|
2014-02-27 05:48:20 +08:00
|
|
|
|
2013-05-11 11:08:45 +08:00
|
|
|
CONTRIB_MODULE_PATH = 'django.contrib'
|
2007-05-20 11:51:21 +08:00
|
|
|
|
2006-09-02 17:34:40 +08:00
|
|
|
TEST_TEMPLATE_DIR = 'templates'
|
2005-07-29 23:15:40 +08:00
|
|
|
|
2012-12-08 18:13:52 +08:00
|
|
|
CONTRIB_DIR = os.path.dirname(upath(contrib.__file__))
|
2013-10-22 22:52:04 +08:00
|
|
|
RUNTESTS_DIR = os.path.abspath(os.path.dirname(upath(__file__)))
|
2013-05-11 11:08:45 +08:00
|
|
|
|
2011-08-12 16:43:52 +08:00
|
|
|
TEMP_DIR = tempfile.mkdtemp(prefix='django_')
|
2011-11-14 03:05:02 +08:00
|
|
|
os.environ['DJANGO_TEST_TEMP_DIR'] = TEMP_DIR
|
2005-07-30 06:35:54 +08:00
|
|
|
|
2013-05-11 11:08:45 +08:00
|
|
|
SUBDIRS_TO_SKIP = [
|
2013-07-09 21:17:26 +08:00
|
|
|
'data',
|
2013-05-11 11:08:45 +08:00
|
|
|
'test_discovery_sample',
|
|
|
|
'test_discovery_sample2',
|
|
|
|
'test_runner_deprecation_app',
|
|
|
|
]
|
2010-04-15 02:17:44 +08:00
|
|
|
|
2006-05-27 05:28:12 +08:00
|
|
|
ALWAYS_INSTALLED_APPS = [
|
|
|
|
'django.contrib.contenttypes',
|
2006-06-20 22:27:44 +08:00
|
|
|
'django.contrib.auth',
|
2007-08-15 19:25:22 +08:00
|
|
|
'django.contrib.sites',
|
2006-05-27 05:28:12 +08:00
|
|
|
'django.contrib.flatpages',
|
|
|
|
'django.contrib.redirects',
|
|
|
|
'django.contrib.sessions',
|
2009-12-10 00:57:23 +08:00
|
|
|
'django.contrib.messages',
|
2014-01-25 05:43:00 +08:00
|
|
|
'django.contrib.admin.apps.SimpleAdminConfig',
|
2010-08-14 21:41:56 +08:00
|
|
|
'django.contrib.admindocs',
|
2010-10-20 09:33:24 +08:00
|
|
|
'django.contrib.staticfiles',
|
2011-05-06 21:29:58 +08:00
|
|
|
'django.contrib.humanize',
|
2013-02-26 16:57:29 +08:00
|
|
|
'staticfiles_tests',
|
|
|
|
'staticfiles_tests.apps.test',
|
|
|
|
'staticfiles_tests.apps.no_label',
|
2013-08-11 03:32:07 +08:00
|
|
|
'servers.another_app',
|
2006-05-27 05:28:12 +08:00
|
|
|
]
|
|
|
|
|
2010-12-22 07:42:12 +08:00
|
|
|
|
2011-01-21 23:55:27 +08:00
|
|
|
def get_test_modules():
|
2013-07-09 21:58:56 +08:00
|
|
|
from django.contrib.gis.tests.utils import HAS_SPATIAL_DB
|
2011-01-21 23:55:27 +08:00
|
|
|
modules = []
|
2013-07-09 21:58:56 +08:00
|
|
|
discovery_paths = [
|
2013-02-26 16:57:29 +08:00
|
|
|
(None, RUNTESTS_DIR),
|
2013-07-09 21:58:56 +08:00
|
|
|
(CONTRIB_MODULE_PATH, CONTRIB_DIR)
|
|
|
|
]
|
|
|
|
if HAS_SPATIAL_DB:
|
|
|
|
discovery_paths.append(
|
|
|
|
('django.contrib.gis.tests', os.path.join(CONTRIB_DIR, 'gis', 'tests'))
|
|
|
|
)
|
|
|
|
|
|
|
|
for modpath, dirpath in discovery_paths:
|
2006-06-20 22:27:44 +08:00
|
|
|
for f in os.listdir(dirpath):
|
2013-02-26 16:57:29 +08:00
|
|
|
if ('.' in f or
|
2013-11-26 17:43:46 +08:00
|
|
|
f.startswith('sql') or
|
|
|
|
os.path.basename(f) in SUBDIRS_TO_SKIP or
|
2014-02-27 00:43:14 +08:00
|
|
|
os.path.isfile(f) or
|
|
|
|
not os.path.exists(os.path.join(dirpath, f, '__init__.py'))):
|
2006-06-20 15:12:45 +08:00
|
|
|
continue
|
2014-03-27 00:44:21 +08:00
|
|
|
if not connection.vendor == 'postgresql' and f == 'postgres_tests':
|
|
|
|
continue
|
2013-05-11 11:08:45 +08:00
|
|
|
modules.append((modpath, f))
|
2011-01-21 23:55:27 +08:00
|
|
|
return modules
|
2005-07-30 06:35:54 +08:00
|
|
|
|
2013-07-09 21:17:26 +08:00
|
|
|
|
2013-05-11 11:08:45 +08:00
|
|
|
def get_installed():
|
2013-12-24 19:25:17 +08:00
|
|
|
return [app_config.name for app_config in apps.get_app_configs()]
|
2013-05-11 11:08:45 +08:00
|
|
|
|
|
|
|
|
2010-10-09 22:44:54 +08:00
|
|
|
def setup(verbosity, test_labels):
|
2013-10-22 22:52:04 +08:00
|
|
|
print("Testing against Django installed in '%s'" % os.path.dirname(django.__file__))
|
|
|
|
|
2013-06-04 14:09:29 +08:00
|
|
|
# Force declaring available_apps in TransactionTestCase for faster tests.
|
|
|
|
def no_available_apps(self):
|
|
|
|
raise Exception("Please define available_apps in TransactionTestCase "
|
|
|
|
"and its subclasses.")
|
|
|
|
TransactionTestCase.available_apps = property(no_available_apps)
|
|
|
|
TestCase.available_apps = None
|
|
|
|
|
2010-10-09 22:44:54 +08:00
|
|
|
state = {
|
|
|
|
'INSTALLED_APPS': settings.INSTALLED_APPS,
|
|
|
|
'ROOT_URLCONF': getattr(settings, "ROOT_URLCONF", ""),
|
|
|
|
'TEMPLATE_DIRS': settings.TEMPLATE_DIRS,
|
|
|
|
'LANGUAGE_CODE': settings.LANGUAGE_CODE,
|
2011-06-30 17:06:19 +08:00
|
|
|
'STATIC_URL': settings.STATIC_URL,
|
2011-08-12 16:43:52 +08:00
|
|
|
'STATIC_ROOT': settings.STATIC_ROOT,
|
2010-10-09 22:44:54 +08:00
|
|
|
}
|
2006-12-15 14:06:52 +08:00
|
|
|
|
2007-02-10 12:01:19 +08:00
|
|
|
# Redirect some settings for the duration of these tests.
|
2006-08-27 21:59:47 +08:00
|
|
|
settings.INSTALLED_APPS = ALWAYS_INSTALLED_APPS
|
2006-09-02 17:34:40 +08:00
|
|
|
settings.ROOT_URLCONF = 'urls'
|
2011-06-30 17:06:19 +08:00
|
|
|
settings.STATIC_URL = '/static/'
|
2011-08-12 16:43:52 +08:00
|
|
|
settings.STATIC_ROOT = os.path.join(TEMP_DIR, 'static')
|
|
|
|
settings.TEMPLATE_DIRS = (os.path.join(RUNTESTS_DIR, TEST_TEMPLATE_DIR),)
|
2007-10-22 01:26:32 +08:00
|
|
|
settings.LANGUAGE_CODE = 'en'
|
2007-12-02 05:58:51 +08:00
|
|
|
settings.SITE_ID = 1
|
2006-12-15 14:06:52 +08:00
|
|
|
|
2013-03-25 12:34:46 +08:00
|
|
|
if verbosity > 0:
|
|
|
|
# Ensure any warnings captured to logging are piped through a verbose
|
|
|
|
# logging handler. If any -W options were passed explicitly on command
|
|
|
|
# line, warnings are not captured, and this has no effect.
|
|
|
|
logger = logging.getLogger('py.warnings')
|
|
|
|
handler = logging.StreamHandler()
|
|
|
|
logger.addHandler(handler)
|
|
|
|
|
2006-12-15 14:06:52 +08:00
|
|
|
# Load all the ALWAYS_INSTALLED_APPS.
|
2014-01-02 05:55:50 +08:00
|
|
|
django.setup()
|
2006-12-15 14:06:52 +08:00
|
|
|
|
2007-02-10 12:01:19 +08:00
|
|
|
# Load all the test model apps.
|
2011-01-21 23:55:27 +08:00
|
|
|
test_modules = get_test_modules()
|
2010-12-22 07:42:12 +08:00
|
|
|
|
2013-05-11 11:08:45 +08:00
|
|
|
# Reduce given test labels to just the app module path
|
|
|
|
test_labels_set = set()
|
|
|
|
for label in test_labels:
|
|
|
|
bits = label.split('.')
|
|
|
|
if bits[:2] == ['django', 'contrib']:
|
|
|
|
bits = bits[:3]
|
|
|
|
else:
|
|
|
|
bits = bits[:1]
|
|
|
|
test_labels_set.add('.'.join(bits))
|
|
|
|
|
2014-05-24 16:53:22 +08:00
|
|
|
installed_app_names = set(get_installed())
|
2013-05-11 11:08:45 +08:00
|
|
|
for modpath, module_name in test_modules:
|
|
|
|
if modpath:
|
|
|
|
module_label = '.'.join([modpath, module_name])
|
2013-02-26 16:57:29 +08:00
|
|
|
else:
|
|
|
|
module_label = module_name
|
2013-05-11 11:08:45 +08:00
|
|
|
# if the module (or an ancestor) was named on the command line, or
|
2011-01-21 23:55:27 +08:00
|
|
|
# no modules were named (i.e., run all), import
|
2013-05-11 11:08:45 +08:00
|
|
|
# this module and add it to INSTALLED_APPS.
|
|
|
|
if not test_labels:
|
|
|
|
module_found_in_labels = True
|
|
|
|
else:
|
2013-12-26 20:46:15 +08:00
|
|
|
module_found_in_labels = any(
|
|
|
|
# exact match or ancestor match
|
|
|
|
module_label == label or module_label.startswith(label + '.')
|
|
|
|
for label in test_labels_set)
|
2013-05-11 11:08:45 +08:00
|
|
|
|
2014-01-25 05:43:00 +08:00
|
|
|
if module_found_in_labels and module_label not in installed_app_names:
|
2010-08-20 23:03:11 +08:00
|
|
|
if verbosity >= 2:
|
2012-04-29 00:02:01 +08:00
|
|
|
print("Importing application %s" % module_name)
|
2014-01-25 05:43:00 +08:00
|
|
|
settings.INSTALLED_APPS.append(module_label)
|
2014-05-24 16:53:22 +08:00
|
|
|
|
|
|
|
apps.set_installed_apps(settings.INSTALLED_APPS)
|
2006-08-27 21:59:47 +08:00
|
|
|
|
2010-10-09 22:44:54 +08:00
|
|
|
return state
|
|
|
|
|
2013-09-20 05:02:49 +08:00
|
|
|
|
2010-10-09 22:44:54 +08:00
|
|
|
def teardown(state):
|
2013-09-20 05:02:49 +08:00
|
|
|
try:
|
|
|
|
# Removing the temporary TEMP_DIR. Ensure we pass in unicode
|
|
|
|
# so that it will successfully remove temp trees containing
|
|
|
|
# non-ASCII filenames on Windows. (We're assuming the temp dir
|
|
|
|
# name itself does not contain non-ASCII characters.)
|
|
|
|
shutil.rmtree(six.text_type(TEMP_DIR))
|
|
|
|
except OSError:
|
|
|
|
print('Failed to remove temp directory: %s' % TEMP_DIR)
|
|
|
|
|
2010-10-09 22:44:54 +08:00
|
|
|
# Restore the old settings.
|
|
|
|
for key, value in state.items():
|
|
|
|
setattr(settings, key, value)
|
|
|
|
|
2013-09-20 05:02:49 +08:00
|
|
|
|
2010-10-09 22:44:54 +08:00
|
|
|
def django_tests(verbosity, interactive, failfast, test_labels):
|
|
|
|
state = setup(verbosity, test_labels)
|
2006-08-27 21:59:47 +08:00
|
|
|
extra_tests = []
|
2008-10-02 20:57:13 +08:00
|
|
|
|
2006-08-27 21:59:47 +08:00
|
|
|
# Run the test suite, including the extra validation tests.
|
2013-05-11 21:47:40 +08:00
|
|
|
if not hasattr(settings, 'TEST_RUNNER'):
|
|
|
|
settings.TEST_RUNNER = 'django.test.runner.DiscoverRunner'
|
|
|
|
TestRunner = get_runner(settings)
|
2010-01-18 23:11:01 +08:00
|
|
|
|
2013-05-11 21:47:40 +08:00
|
|
|
test_runner = TestRunner(
|
2013-05-11 11:08:45 +08:00
|
|
|
verbosity=verbosity,
|
|
|
|
interactive=interactive,
|
|
|
|
failfast=failfast,
|
|
|
|
)
|
2013-09-03 23:10:43 +08:00
|
|
|
# Catch warnings thrown in test DB setup -- remove in Django 1.9
|
|
|
|
with warnings.catch_warnings():
|
|
|
|
warnings.filterwarnings(
|
|
|
|
'ignore',
|
|
|
|
"Custom SQL location '<app_label>/models/sql' is deprecated, "
|
|
|
|
"use '<app_label>/sql' instead.",
|
2014-02-27 05:48:20 +08:00
|
|
|
RemovedInDjango19Warning
|
2013-09-03 23:10:43 +08:00
|
|
|
)
|
|
|
|
failures = test_runner.run_tests(
|
|
|
|
test_labels or get_installed(), extra_tests=extra_tests)
|
2009-02-28 12:46:38 +08:00
|
|
|
|
2010-10-09 22:44:54 +08:00
|
|
|
teardown(state)
|
|
|
|
return failures
|
2006-12-15 14:06:52 +08:00
|
|
|
|
2010-10-09 22:44:54 +08:00
|
|
|
|
|
|
|
def bisect_tests(bisection_label, options, test_labels):
|
|
|
|
state = setup(int(options.verbosity), test_labels)
|
|
|
|
|
2013-05-11 11:08:45 +08:00
|
|
|
test_labels = test_labels or get_installed()
|
2010-10-09 22:44:54 +08:00
|
|
|
|
2012-04-29 00:02:01 +08:00
|
|
|
print('***** Bisecting test suite: %s' % ' '.join(test_labels))
|
2010-10-09 22:44:54 +08:00
|
|
|
|
|
|
|
# Make sure the bisection point isn't in the test list
|
|
|
|
# Also remove tests that need to be run in specific combinations
|
|
|
|
for label in [bisection_label, 'model_inheritance_same_model_name']:
|
|
|
|
try:
|
|
|
|
test_labels.remove(label)
|
|
|
|
except ValueError:
|
|
|
|
pass
|
|
|
|
|
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
|
|
|
subprocess_args = [
|
2012-12-08 18:13:52 +08:00
|
|
|
sys.executable, upath(__file__), '--settings=%s' % options.settings]
|
2010-10-09 22:44:54 +08:00
|
|
|
if options.failfast:
|
|
|
|
subprocess_args.append('--failfast')
|
|
|
|
if options.verbosity:
|
|
|
|
subprocess_args.append('--verbosity=%s' % options.verbosity)
|
|
|
|
if not options.interactive:
|
|
|
|
subprocess_args.append('--noinput')
|
|
|
|
|
|
|
|
iteration = 1
|
|
|
|
while len(test_labels) > 1:
|
2013-09-24 05:05:36 +08:00
|
|
|
midpoint = len(test_labels) // 2
|
2010-10-09 22:44:54 +08:00
|
|
|
test_labels_a = test_labels[:midpoint] + [bisection_label]
|
|
|
|
test_labels_b = test_labels[midpoint:] + [bisection_label]
|
2012-04-29 00:02:01 +08:00
|
|
|
print('***** Pass %da: Running the first half of the test suite' % iteration)
|
|
|
|
print('***** Test labels: %s' % ' '.join(test_labels_a))
|
2010-10-09 22:44:54 +08:00
|
|
|
failures_a = subprocess.call(subprocess_args + test_labels_a)
|
|
|
|
|
2012-04-29 00:02:01 +08:00
|
|
|
print('***** Pass %db: Running the second half of the test suite' % iteration)
|
|
|
|
print('***** Test labels: %s' % ' '.join(test_labels_b))
|
|
|
|
print('')
|
2010-10-09 22:44:54 +08:00
|
|
|
failures_b = subprocess.call(subprocess_args + test_labels_b)
|
|
|
|
|
|
|
|
if failures_a and not failures_b:
|
2012-04-29 00:02:01 +08:00
|
|
|
print("***** Problem found in first half. Bisecting again...")
|
2010-10-09 22:44:54 +08:00
|
|
|
iteration = iteration + 1
|
|
|
|
test_labels = test_labels_a[:-1]
|
|
|
|
elif failures_b and not failures_a:
|
2012-04-29 00:02:01 +08:00
|
|
|
print("***** Problem found in second half. Bisecting again...")
|
2010-10-09 22:44:54 +08:00
|
|
|
iteration = iteration + 1
|
|
|
|
test_labels = test_labels_b[:-1]
|
|
|
|
elif failures_a and failures_b:
|
2012-04-29 00:02:01 +08:00
|
|
|
print("***** Multiple sources of failure found")
|
2010-10-09 22:44:54 +08:00
|
|
|
break
|
|
|
|
else:
|
2012-04-29 00:02:01 +08:00
|
|
|
print("***** No source of failure found... try pair execution (--pair)")
|
2010-10-09 22:44:54 +08:00
|
|
|
break
|
|
|
|
|
|
|
|
if len(test_labels) == 1:
|
2012-04-29 00:02:01 +08:00
|
|
|
print("***** Source of error: %s" % test_labels[0])
|
2010-10-09 22:44:54 +08:00
|
|
|
teardown(state)
|
|
|
|
|
2013-09-20 05:02:49 +08:00
|
|
|
|
2010-10-09 22:44:54 +08:00
|
|
|
def paired_tests(paired_test, options, test_labels):
|
|
|
|
state = setup(int(options.verbosity), test_labels)
|
|
|
|
|
2013-05-11 11:08:45 +08:00
|
|
|
test_labels = test_labels or get_installed()
|
2010-10-09 22:44:54 +08:00
|
|
|
|
2012-04-29 00:02:01 +08:00
|
|
|
print('***** Trying paired execution')
|
2010-10-09 22:44:54 +08:00
|
|
|
|
2010-10-11 20:55:17 +08:00
|
|
|
# Make sure the constant member of the pair isn't in the test list
|
2010-10-09 22:44:54 +08:00
|
|
|
# Also remove tests that need to be run in specific combinations
|
|
|
|
for label in [paired_test, 'model_inheritance_same_model_name']:
|
|
|
|
try:
|
|
|
|
test_labels.remove(label)
|
|
|
|
except ValueError:
|
|
|
|
pass
|
|
|
|
|
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
|
|
|
subprocess_args = [
|
2012-12-08 18:13:52 +08:00
|
|
|
sys.executable, upath(__file__), '--settings=%s' % options.settings]
|
2010-10-09 22:44:54 +08:00
|
|
|
if options.failfast:
|
|
|
|
subprocess_args.append('--failfast')
|
|
|
|
if options.verbosity:
|
|
|
|
subprocess_args.append('--verbosity=%s' % options.verbosity)
|
|
|
|
if not options.interactive:
|
|
|
|
subprocess_args.append('--noinput')
|
|
|
|
|
|
|
|
for i, label in enumerate(test_labels):
|
2012-04-29 00:02:01 +08:00
|
|
|
print('***** %d of %d: Check test pairing with %s' % (
|
|
|
|
i + 1, len(test_labels), label))
|
2010-10-09 22:44:54 +08:00
|
|
|
failures = subprocess.call(subprocess_args + [label, paired_test])
|
|
|
|
if failures:
|
2012-04-29 00:02:01 +08:00
|
|
|
print('***** Found problem pair with %s' % label)
|
2010-10-09 22:44:54 +08:00
|
|
|
return
|
|
|
|
|
2012-04-29 00:02:01 +08:00
|
|
|
print('***** No problem pair found')
|
2010-10-09 22:44:54 +08:00
|
|
|
teardown(state)
|
2006-12-15 14:06:52 +08:00
|
|
|
|
2013-09-20 05:02:49 +08:00
|
|
|
|
2005-07-29 23:15:40 +08:00
|
|
|
if __name__ == "__main__":
|
2011-01-21 23:55:27 +08:00
|
|
|
usage = "%prog [options] [module module module ...]"
|
2006-02-19 04:08:20 +08:00
|
|
|
parser = OptionParser(usage=usage)
|
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
|
|
|
parser.add_option(
|
2012-11-05 02:16:06 +08:00
|
|
|
'-v', '--verbosity', action='store', dest='verbosity', default='1',
|
2010-08-07 14:58:14 +08:00
|
|
|
type='choice', choices=['0', '1', '2', '3'],
|
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
|
|
|
help='Verbosity level; 0=minimal output, 1=normal output, 2=all '
|
|
|
|
'output')
|
|
|
|
parser.add_option(
|
|
|
|
'--noinput', action='store_false', dest='interactive', default=True,
|
2007-07-23 20:14:32 +08:00
|
|
|
help='Tells Django to NOT prompt the user for input of any kind.')
|
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
|
|
|
parser.add_option(
|
|
|
|
'--failfast', action='store_true', dest='failfast', default=False,
|
|
|
|
help='Tells Django to stop running the test suite after first failed '
|
|
|
|
'test.')
|
|
|
|
parser.add_option(
|
|
|
|
'--settings',
|
|
|
|
help='Python path to settings module, e.g. "myproject.settings". If '
|
|
|
|
'this isn\'t provided, the DJANGO_SETTINGS_MODULE environment '
|
|
|
|
'variable will be used.')
|
|
|
|
parser.add_option(
|
|
|
|
'--bisect', action='store', dest='bisect', default=None,
|
|
|
|
help='Bisect the test suite to discover a test that causes a test '
|
|
|
|
'failure when combined with the named test.')
|
|
|
|
parser.add_option(
|
|
|
|
'--pair', action='store', dest='pair', default=None,
|
|
|
|
help='Run the test suite in pairs with the named test to find problem '
|
|
|
|
'pairs.')
|
|
|
|
parser.add_option(
|
|
|
|
'--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 default value '
|
2013-02-24 00:10:48 +08:00
|
|
|
'is localhost:8081.')
|
|
|
|
parser.add_option(
|
2013-02-26 01:14:42 +08:00
|
|
|
'--selenium', action='store_true', dest='selenium',
|
2013-02-24 00:10:48 +08:00
|
|
|
default=False,
|
2013-02-26 01:14:42 +08:00
|
|
|
help='Run the Selenium tests as well (if Selenium is installed)')
|
2005-07-29 23:15:40 +08:00
|
|
|
options, args = parser.parse_args()
|
2005-08-10 23:36:16 +08:00
|
|
|
if options.settings:
|
|
|
|
os.environ['DJANGO_SETTINGS_MODULE'] = options.settings
|
2011-01-27 08:00:20 +08:00
|
|
|
else:
|
2013-02-28 16:00:38 +08:00
|
|
|
if "DJANGO_SETTINGS_MODULE" not in os.environ:
|
|
|
|
os.environ['DJANGO_SETTINGS_MODULE'] = 'test_sqlite'
|
2011-01-27 08:00:20 +08:00
|
|
|
options.settings = os.environ['DJANGO_SETTINGS_MODULE']
|
2010-10-09 22:44:54 +08:00
|
|
|
|
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
|
|
|
if options.liveserver is not None:
|
|
|
|
os.environ['DJANGO_LIVE_TEST_SERVER_ADDRESS'] = options.liveserver
|
|
|
|
|
2013-02-26 01:14:42 +08:00
|
|
|
if options.selenium:
|
|
|
|
os.environ['DJANGO_SELENIUM_TESTS'] = '1'
|
2013-02-24 00:10:48 +08:00
|
|
|
|
2010-10-09 22:44:54 +08:00
|
|
|
if options.bisect:
|
|
|
|
bisect_tests(options.bisect, options, args)
|
|
|
|
elif options.pair:
|
|
|
|
paired_tests(options.pair, options, args)
|
|
|
|
else:
|
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
|
|
|
failures = django_tests(int(options.verbosity), options.interactive,
|
|
|
|
options.failfast, args)
|
2010-10-09 22:44:54 +08:00
|
|
|
if failures:
|
|
|
|
sys.exit(bool(failures))
|