django-constance/tests/settings.py

112 lines
3.4 KiB
Python
Raw Normal View History

from datetime import date
from datetime import datetime
from datetime import time
from datetime import timedelta
2010-09-03 12:38:43 +00:00
from decimal import Decimal
SECRET_KEY = 'cheese'
MIDDLEWARE = (
2014-11-21 15:37:12 +00:00
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
)
DATABASE_ENGINE = 'sqlite3'
2010-08-25 12:55:01 +00:00
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': ':memory:',
},
'secondary': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': ':memory:',
},
2010-08-25 12:55:01 +00:00
}
INSTALLED_APPS = (
'django.contrib.admin',
2013-04-12 16:04:01 +00:00
'django.contrib.staticfiles',
'django.contrib.auth',
'django.contrib.contenttypes',
2010-11-12 14:06:59 +00:00
'django.contrib.sessions',
'django.contrib.messages',
2010-08-25 12:55:01 +00:00
'constance',
'constance.backends.database',
2010-08-25 12:55:01 +00:00
)
ROOT_URLCONF = 'tests.urls'
2010-11-12 14:06:59 +00:00
2014-11-25 21:19:52 +00:00
CONSTANCE_REDIS_CONNECTION_CLASS = 'tests.redis_mockup.Connection'
2010-08-25 13:08:07 +00:00
2015-06-14 15:25:56 +00:00
CONSTANCE_ADDITIONAL_FIELDS = {
2016-09-14 17:21:16 +00:00
'yes_no_null_select': [
'django.forms.fields.ChoiceField',
{'widget': 'django.forms.Select', 'choices': ((None, '-----'), ('yes', 'Yes'), ('no', 'No'))},
2016-09-14 17:21:16 +00:00
],
# note this intentionally uses a tuple so that we can test immutable
'email': ('django.forms.fields.EmailField',),
'array': ['django.forms.fields.CharField', {'widget': 'django.forms.Textarea'}],
'json': ['django.forms.fields.CharField', {'widget': 'django.forms.Textarea'}],
}
2015-06-14 15:25:56 +00:00
USE_TZ = True
2010-08-25 13:08:07 +00:00
CONSTANCE_CONFIG = {
'INT_VALUE': (1, 'some int'),
'BOOL_VALUE': (True, 'true or false'),
'STRING_VALUE': ('Hello world', 'greetings'),
2010-09-03 12:38:43 +00:00
'DECIMAL_VALUE': (Decimal('0.1'), 'the first release version'),
'DATETIME_VALUE': (datetime(2010, 8, 23, 11, 29, 24), 'time of the first commit'),
2010-09-03 12:38:43 +00:00
'FLOAT_VALUE': (3.1415926536, 'PI'),
2014-11-21 15:37:12 +00:00
'DATE_VALUE': (date(2010, 12, 24), 'Merry Chrismas'),
'TIME_VALUE': (time(23, 59, 59), 'And happy New Year'),
'TIMEDELTA_VALUE': (timedelta(days=1, hours=2, minutes=3), 'Interval'),
2015-06-14 15:25:56 +00:00
'CHOICE_VALUE': ('yes', 'select yes or no', 'yes_no_null_select'),
'LINEBREAK_VALUE': ('Spam spam', 'eggs\neggs'),
'EMAIL_VALUE': ('test@example.com', 'An email', 'email'),
'LIST_VALUE': ([1, '1', date(2019, 1, 1)], 'A list', 'array'),
'JSON_VALUE': (
{
'key': 'value',
'key2': 2,
'key3': [1, 2, 3],
'key4': {'key': 'value'},
'key5': date(2019, 1, 1),
'key6': None,
},
'A JSON object',
'json',
),
2010-08-25 13:08:07 +00:00
}
DEBUG = True
2013-04-12 16:17:42 +00:00
2013-04-12 16:20:04 +00:00
STATIC_ROOT = './static/'
2013-04-12 16:17:42 +00:00
STATIC_URL = '/static/'
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.template.context_processors.debug',
'django.template.context_processors.i18n',
'django.template.context_processors.request',
'django.template.context_processors.static',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
'constance.context_processors.config',
],
},
},
]