2005-07-29 23:15:40 +08:00
#!/usr/bin/env python
2011-08-12 16:43:52 +08:00
import os
import shutil
import subprocess
import sys
import tempfile
2005-07-29 23:15:40 +08:00
2011-10-14 05:34:56 +08:00
from django import contrib
2007-09-14 17:55:17 +08:00
2007-05-20 11:51:21 +08:00
CONTRIB_DIR_NAME = ' django.contrib '
2006-05-02 09:31:56 +08:00
MODEL_TESTS_DIR_NAME = ' modeltests '
2006-06-20 13:29:19 +08:00
REGRESSION_TESTS_DIR_NAME = ' regressiontests '
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
2011-08-12 16:43:52 +08:00
RUNTESTS_DIR = os . path . dirname ( __file__ )
2007-05-20 11:51:21 +08:00
CONTRIB_DIR = os . path . dirname ( contrib . __file__ )
2011-08-12 16:43:52 +08:00
MODEL_TEST_DIR = os . path . join ( RUNTESTS_DIR , MODEL_TESTS_DIR_NAME )
REGRESSION_TEST_DIR = os . path . join ( RUNTESTS_DIR , REGRESSION_TESTS_DIR_NAME )
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
2010-04-15 02:17:44 +08:00
REGRESSION_SUBDIRS_TO_SKIP = [ ' locale ' ]
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 ' ,
2006-06-17 02:58:45 +08:00
' django.contrib.comments ' ,
' django.contrib.admin ' ,
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 ' ,
2011-06-09 21:13:19 +08:00
' regressiontests.staticfiles_tests ' ,
' regressiontests.staticfiles_tests.apps.test ' ,
' regressiontests.staticfiles_tests.apps.no_label ' ,
2006-05-27 05:28:12 +08:00
]
2010-12-22 07:42:12 +08:00
def geodjango ( settings ) :
# All databases must have spatial backends to run GeoDjango tests.
spatial_dbs = [ name for name , db_dict in settings . DATABASES . items ( )
if db_dict [ ' ENGINE ' ] . startswith ( ' django.contrib.gis ' ) ]
return len ( spatial_dbs ) == len ( settings . DATABASES )
2011-01-21 23:55:27 +08:00
def get_test_modules ( ) :
modules = [ ]
2007-05-20 11:51:21 +08:00
for loc , dirpath in ( MODEL_TESTS_DIR_NAME , MODEL_TEST_DIR ) , ( REGRESSION_TESTS_DIR_NAME , REGRESSION_TEST_DIR ) , ( CONTRIB_DIR_NAME , CONTRIB_DIR ) :
2006-06-20 22:27:44 +08:00
for f in os . listdir ( dirpath ) :
2011-08-23 12:25:07 +08:00
if ( f . startswith ( ' __init__ ' ) or
f . startswith ( ' . ' ) or
f . startswith ( ' sql ' ) or
os . path . basename ( f ) in REGRESSION_SUBDIRS_TO_SKIP ) :
2006-06-20 15:12:45 +08:00
continue
2011-01-21 23:55:27 +08:00
modules . append ( ( loc , f ) )
return modules
2005-07-30 06:35:54 +08:00
2010-10-09 22:44:54 +08:00
def setup ( verbosity , test_labels ) :
2006-08-27 21:59:47 +08:00
from django . conf import settings
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 ,
' USE_I18N ' : settings . USE_I18N ,
' LOGIN_URL ' : settings . LOGIN_URL ,
' LANGUAGE_CODE ' : settings . LANGUAGE_CODE ,
' MIDDLEWARE_CLASSES ' : settings . MIDDLEWARE_CLASSES ,
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 ) , )
2006-12-15 14:06:52 +08:00
settings . USE_I18N = True
2007-10-22 01:26:32 +08:00
settings . LANGUAGE_CODE = ' en '
2007-12-17 18:31:20 +08:00
settings . LOGIN_URL = ' /accounts/login/ '
2007-02-10 12:01:19 +08:00
settings . MIDDLEWARE_CLASSES = (
' django.contrib.sessions.middleware.SessionMiddleware ' ,
' django.contrib.auth.middleware.AuthenticationMiddleware ' ,
2009-12-10 00:57:23 +08:00
' django.contrib.messages.middleware.MessageMiddleware ' ,
2007-02-10 12:01:19 +08:00
' django.middleware.common.CommonMiddleware ' ,
)
2007-12-02 05:58:51 +08:00
settings . SITE_ID = 1
2009-03-24 05:07:02 +08:00
# For testing comment-utils, we require the MANAGERS attribute
# to be set, so that a test email is sent out which we catch
# in our tests.
settings . MANAGERS = ( " admin@djangoproject.com " , )
2006-12-15 14:06:52 +08:00
# Load all the ALWAYS_INSTALLED_APPS.
# (This import statement is intentionally delayed until after we
# access settings because of the USE_I18N dependency.)
from django . db . models . loading import get_apps , load_app
2006-08-27 21:59:47 +08:00
get_apps ( )
2006-12-15 14:06:52 +08:00
2007-02-10 12:01:19 +08:00
# Load all the test model apps.
2010-08-20 23:03:11 +08:00
test_labels_set = set ( [ label . split ( ' . ' ) [ 0 ] for label in test_labels ] )
2011-01-21 23:55:27 +08:00
test_modules = get_test_modules ( )
2010-12-22 07:42:12 +08:00
# If GeoDjango, then we'll want to add in the test applications
# that are a part of its test suite.
if geodjango ( settings ) :
from django . contrib . gis . tests import geo_apps
2011-01-21 23:55:27 +08:00
test_modules . extend ( geo_apps ( runtests = True ) )
for module_dir , module_name in test_modules :
module_label = ' . ' . join ( [ module_dir , module_name ] )
# if the module was named on the command line, or
# no modules were named (i.e., run all), import
# this module and add it to the list to test.
if not test_labels or module_name in test_labels_set :
2010-08-20 23:03:11 +08:00
if verbosity > = 2 :
2011-01-21 23:55:27 +08:00
print " Importing application %s " % module_name
mod = load_app ( module_label )
2010-08-20 23:03:11 +08:00
if mod :
2011-01-21 23:55:27 +08:00
if module_label not in settings . INSTALLED_APPS :
settings . INSTALLED_APPS . append ( module_label )
2006-08-27 21:59:47 +08:00
2010-10-09 22:44:54 +08:00
return state
def teardown ( state ) :
from django . conf import settings
2011-08-12 16:43:52 +08:00
# Removing the temporary TEMP_DIR
shutil . rmtree ( TEMP_DIR )
2010-10-09 22:44:54 +08:00
# Restore the old settings.
for key , value in state . items ( ) :
setattr ( settings , key , value )
def django_tests ( verbosity , interactive , failfast , test_labels ) :
from django . conf import settings
state = setup ( verbosity , test_labels )
2006-08-27 21:59:47 +08:00
extra_tests = [ ]
2008-10-02 20:57:13 +08:00
2010-12-22 07:42:12 +08:00
# If GeoDjango is used, add it's tests that aren't a part of
# an application (e.g., GEOS, GDAL, Distance objects).
if geodjango ( settings ) :
from django . contrib . gis . tests import geodjango_suite
extra_tests . append ( geodjango_suite ( apps = False ) )
2006-08-27 21:59:47 +08:00
# Run the test suite, including the extra validation tests.
2009-02-28 12:46:38 +08:00
from django . test . utils import get_runner
if not hasattr ( settings , ' TEST_RUNNER ' ) :
2010-01-18 23:11:01 +08:00
settings . TEST_RUNNER = ' django.test.simple.DjangoTestSuiteRunner '
TestRunner = get_runner ( settings )
2011-04-02 16:44:47 +08:00
test_runner = TestRunner ( verbosity = verbosity , interactive = interactive , failfast = failfast )
failures = test_runner . run_tests ( test_labels , 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 )
if not test_labels :
# Get the full list of test labels to use for bisection
from django . db . models . loading import get_apps
test_labels = [ app . __name__ . split ( ' . ' ) [ - 2 ] for app in get_apps ( ) ]
print ' ***** Bisecting test suite: ' , ' ' . join ( test_labels )
# 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
2011-01-27 08:00:20 +08:00
subprocess_args = [ sys . executable , __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 :
midpoint = len ( test_labels ) / 2
test_labels_a = test_labels [ : midpoint ] + [ bisection_label ]
test_labels_b = test_labels [ midpoint : ] + [ bisection_label ]
print ' ***** Pass %d a: Running the first half of the test suite ' % iteration
print ' ***** Test labels: ' , ' ' . join ( test_labels_a )
failures_a = subprocess . call ( subprocess_args + test_labels_a )
print ' ***** Pass %d b: Running the second half of the test suite ' % iteration
print ' ***** Test labels: ' , ' ' . join ( test_labels_b )
print
failures_b = subprocess . call ( subprocess_args + test_labels_b )
if failures_a and not failures_b :
print " ***** Problem found in first half. Bisecting again... "
iteration = iteration + 1
test_labels = test_labels_a [ : - 1 ]
elif failures_b and not failures_a :
print " ***** Problem found in second half. Bisecting again... "
iteration = iteration + 1
test_labels = test_labels_b [ : - 1 ]
elif failures_a and failures_b :
print " ***** Multiple sources of failure found "
break
else :
print " ***** No source of failure found... try pair execution (--pair) "
break
if len ( test_labels ) == 1 :
print " ***** Source of error: " , test_labels [ 0 ]
teardown ( state )
def paired_tests ( paired_test , options , test_labels ) :
state = setup ( int ( options . verbosity ) , test_labels )
if not test_labels :
print " "
# Get the full list of test labels to use for bisection
from django . db . models . loading import get_apps
test_labels = [ app . __name__ . split ( ' . ' ) [ - 2 ] for app in get_apps ( ) ]
print ' ***** Trying paired execution '
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
2011-01-27 08:00:20 +08:00
subprocess_args = [ sys . executable , __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 ) :
print ' ***** %d of %d : Check test pairing with %s ' % ( i + 1 , len ( test_labels ) , label )
failures = subprocess . call ( subprocess_args + [ label , paired_test ] )
if failures :
print ' ***** Found problem pair with ' , label
return
print ' ***** No problem pair found '
teardown ( state )
2006-12-15 14:06:52 +08:00
2005-07-29 23:15:40 +08:00
if __name__ == " __main__ " :
from optparse import OptionParser
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 )
2010-08-07 14:58:14 +08:00
parser . add_option ( ' -v ' , ' --verbosity ' , action = ' store ' , dest = ' verbosity ' , default = ' 1 ' ,
type = ' choice ' , choices = [ ' 0 ' , ' 1 ' , ' 2 ' , ' 3 ' ] ,
2006-12-15 14:06:52 +08:00
help = ' Verbosity level; 0=minimal output, 1=normal output, 2=all output ' )
2007-07-23 20:14:32 +08:00
parser . add_option ( ' --noinput ' , action = ' store_false ' , dest = ' interactive ' , default = True ,
help = ' Tells Django to NOT prompt the user for input of any kind. ' )
2009-12-14 00:24:36 +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. ' )
2005-08-10 23:36:16 +08:00
parser . add_option ( ' --settings ' ,
2006-01-02 02:37:33 +08:00
help = ' Python path to settings module, e.g. " myproject.settings " . If this isn \' t provided, the DJANGO_SETTINGS_MODULE environment variable will be used. ' )
2010-10-09 22:44:54 +08:00
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. " )
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
2007-02-27 06:34:56 +08:00
elif " DJANGO_SETTINGS_MODULE " not in os . environ :
parser . error ( " DJANGO_SETTINGS_MODULE is not set in the environment. "
" Set it or use --settings. " )
2011-01-27 08:00:20 +08:00
else :
options . settings = os . environ [ ' DJANGO_SETTINGS_MODULE ' ]
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 :
failures = django_tests ( int ( options . verbosity ) , options . interactive , options . failfast , args )
if failures :
sys . exit ( bool ( failures ) )