1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
|
"""
A standalone test runner script, configuring the minimum settings
required for tests to execute.
Re-use at your own risk: many Django applications will require full
settings and/or templates in order to execute their tests.
"""
import os
import sys
from django.utils.crypto import get_random_string
APP_DIR = os.path.abspath(os.path.dirname(__file__))
# Minimum settings required for django-contact-form to work.
SETTINGS_DICT = {
"BASE_DIR": APP_DIR,
"INSTALLED_APPS": (
"django_contact_form",
"django.contrib.auth",
"django.contrib.contenttypes",
"django.contrib.sites",
),
"ROOT_URLCONF": "django_contact_form.urls",
"DATABASES": {
"default": {
"ENGINE": "django.db.backends.sqlite3",
"NAME": os.path.join(APP_DIR, "db.sqlite3"),
}
},
"MIDDLEWARE": (
"django.middleware.common.CommonMiddleware",
"django.middleware.csrf.CsrfViewMiddleware",
),
"SITE_ID": 1,
"DEFAULT_FROM_EMAIL": "contact@example.com",
"MANAGERS": [("Manager", "noreply@example.com")],
"SECRET_KEY": get_random_string(12),
"TEMPLATES": [
{
"BACKEND": "django.template.backends.django.DjangoTemplates",
"DIRS": [os.path.join(APP_DIR, "tests/templates")],
"OPTIONS": {
"context_processors": [
"django.contrib.auth.context_processors.auth",
"django.template.context_processors.debug",
"django.template.context_processors.i18n",
"django.template.context_processors.media",
"django.template.context_processors.static",
"django.template.context_processors.tz",
"django.contrib.messages.context_processors.messages",
]
},
}
],
}
def run_tests():
# Making Django run this way is a two-step process. First, call
# settings.configure() to give Django settings to work with:
from django.conf import settings
settings.configure(**SETTINGS_DICT)
# Then, call django.setup() to initialize the application cache
# and other bits:
import django
django.setup()
# Now we instantiate a test runner...
from django.test.utils import get_runner
TestRunner = get_runner(settings)
# And then we run tests and return the results.
test_runner = TestRunner(verbosity=2, interactive=True)
failures = test_runner.run_tests(["tests"])
sys.exit(bool(failures))
if __name__ == "__main__":
run_tests()
|