test.py 5.39 KB
Newer Older
1 2 3 4 5 6 7 8 9
"""
This config file runs the simplest dev environment using sqlite, and db-based
sessions. Assumes structure:

/envroot/
        /db   # This is where it'll write the database file
        /mitx # The location of this repo
        /log  # Where we're going to write log files
"""
10
from .common import *
11
import os
12
from path import path
13

14 15 16 17
# can't test start dates with this True, but on the other hand,
# can test everything else :)
MITX_FEATURES['DISABLE_START_DATES'] = True

18 19 20
# Until we have discussion actually working in test mode, just turn it off
MITX_FEATURES['ENABLE_DISCUSSION_SERVICE'] = False

21 22 23 24
# Need wiki for courseware views to work. TODO (vshnayder): shouldn't need it.
WIKI_ENABLED = True

# Makes the tests run much faster...
Calen Pennington committed
25
SOUTH_TESTS_MIGRATE = False   # To disable migrations and use syncdb instead
26

27
# Nose Test Runner
28
INSTALLED_APPS += ('django_nose',)
Victor Shnayder committed
29

30 31 32
TEST_RUNNER = 'django_nose.NoseTestSuiteRunner'

# Local Directories
33
TEST_ROOT = path("test_root")
34
# Want static files in the same dir for running on jenkins.
35
STATIC_ROOT = TEST_ROOT / "staticfiles"
36

37 38
STATUS_MESSAGE_PATH = TEST_ROOT / "status_message.json"

39
COURSES_ROOT = TEST_ROOT / "data"
40 41
DATA_DIR = COURSES_ROOT

42
COMMON_TEST_DATA_ROOT = COMMON_ROOT / "test" / "data"
43 44 45
# Where the content data is checked out.  This may not exist on jenkins.
GITHUB_REPO_ROOT = ENV_ROOT / "data"

46

47
XQUEUE_INTERFACE = {
48
    "url": "http://sandbox-xqueue.edx.org",
49
    "django_auth": {
50 51
        "username": "lms",
        "password": "***REMOVED***"
52 53
    },
    "basic_auth": ('anant', 'agarwal'),
54
}
Calen Pennington committed
55
XQUEUE_WAITTIME_BETWEEN_REQUESTS = 5   # seconds
56

Victor Shnayder committed
57 58 59

# Don't rely on a real staff grading backend
MOCK_STAFF_GRADING = True
60
MOCK_PEER_GRADING = True
61

62 63
# TODO (cpennington): We need to figure out how envs/test.py can inject things
# into common.py so that we don't have to repeat this sort of thing
64 65 66 67 68 69 70 71 72 73
STATICFILES_DIRS = [
    COMMON_ROOT / "static",
    PROJECT_ROOT / "static",
]
STATICFILES_DIRS += [
    (course_dir, COMMON_TEST_DATA_ROOT / course_dir)
    for course_dir in os.listdir(COMMON_TEST_DATA_ROOT)
    if os.path.isdir(COMMON_TEST_DATA_ROOT / course_dir)
]

74
# point tests at the test courses by default
David Ormsbee committed
75

76 77 78 79 80 81 82 83 84
MODULESTORE = {
    'default': {
        'ENGINE': 'xmodule.modulestore.xml.XMLModuleStore',
        'OPTIONS': {
            'data_dir': COMMON_TEST_DATA_ROOT,
            'default_class': 'xmodule.hidden_module.HiddenDescriptor',
        }
    }
}
85 86


87 88
DATABASES = {
    'default': {
89
        'ENGINE': 'django.db.backends.sqlite3',
90
        'NAME': TEST_ROOT / 'db' / 'mitx.db'
91 92
    },

93 94 95
}

CACHES = {
Victor Shnayder committed
96
    # This is the cache used for most things.
97 98 99
    # In staging/prod envs, the sessions also live here.
    'default': {
        'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
100 101
        'LOCATION': 'mitx_loc_mem_cache',
        'KEY_FUNCTION': 'util.memcache.safe_key',
102 103 104 105 106 107 108 109 110 111 112
    },

    # The general cache is what you get if you use our util.cache. It's used for
    # things like caching the course.xml file for different A/B test groups.
    # We set it to be a DummyCache to force reloading of course.xml in dev.
    # In staging environments, we would grab VERSION from data uploaded by the
    # push process.
    'general': {
        'BACKEND': 'django.core.cache.backends.dummy.DummyCache',
        'KEY_PREFIX': 'general',
        'VERSION': 4,
113
        'KEY_FUNCTION': 'util.memcache.safe_key',
114 115 116 117 118 119 120
    },

    'mongo_metadata_inheritance': {
        'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
        'LOCATION': '/var/tmp/mongo_metadata_inheritance',
        'TIMEOUT': 300,
        'KEY_FUNCTION': 'util.memcache.safe_key',
Calen Pennington committed
121
    }
122 123 124 125 126
}

# Dummy secret key for dev
SECRET_KEY = '85920908f28904ed733fe576320db18cabd7b6cd'

127 128 129
################################## OPENID ######################################
MITX_FEATURES['AUTH_USE_OPENID'] = True
MITX_FEATURES['AUTH_USE_OPENID_PROVIDER'] = True
130 131 132 133

OPENID_CREATE_USERS = False
OPENID_UPDATE_DETAILS_FROM_SREG = True
OPENID_USE_AS_ADMIN_LOGIN = False
134 135
OPENID_PROVIDER_TRUSTED_ROOTS = ['*']

136 137 138
INSTALLED_APPS += ('external_auth',)
INSTALLED_APPS += ('django_openid_auth',)

139
############################ STATIC FILES #############################
140
DEFAULT_FILE_STORAGE = 'django.core.files.storage.FileSystemStorage'
141
MEDIA_ROOT = TEST_ROOT / "uploads"
142 143
MEDIA_URL = "/static/uploads/"
STATICFILES_DIRS.append(("uploads", MEDIA_ROOT))
144 145 146 147 148 149 150 151 152 153 154

new_staticfiles_dirs = []
# Strip out any static files that aren't in the repository root
# so that the tests can run with only the mitx directory checked out
for static_dir in STATICFILES_DIRS:
    # Handle both tuples and non-tuple directory definitions
    try:
        _, data_dir = static_dir
    except ValueError:
        data_dir = static_dir

155
    if data_dir.startswith(REPO_ROOT):
156 157 158
        new_staticfiles_dirs.append(static_dir)
STATICFILES_DIRS = new_staticfiles_dirs

159 160 161 162 163
FILE_UPLOAD_TEMP_DIR = PROJECT_ROOT / "uploads"
FILE_UPLOAD_HANDLERS = (
    'django.core.files.uploadhandler.MemoryFileUploadHandler',
    'django.core.files.uploadhandler.TemporaryFileUploadHandler',
)
164 165 166 167 168 169 170 171 172 173 174 175

################### Make tests faster

#http://slacy.com/blog/2012/04/make-your-tests-faster-in-django-1-4/
PASSWORD_HASHERS = (
    # 'django.contrib.auth.hashers.PBKDF2PasswordHasher',
    # 'django.contrib.auth.hashers.PBKDF2SHA1PasswordHasher',
    # 'django.contrib.auth.hashers.BCryptPasswordHasher',
    'django.contrib.auth.hashers.SHA1PasswordHasher',
    'django.contrib.auth.hashers.MD5PasswordHasher',
    # 'django.contrib.auth.hashers.CryptPasswordHasher',
)