test.py 7.24 KB
Newer Older
1 2 3 4 5 6
"""
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
7
        /edx-platform  # The location of this repo
8 9
        /log  # Where we're going to write log files
"""
10 11 12 13 14

# We intentionally define lots of variables that aren't used, and
# want to import all variables from base settings files
# pylint: disable=W0401, W0614

15 16
from .common import *
import os
17
from path import path
18
from warnings import filterwarnings, simplefilter
19
from uuid import uuid4
20

21
# import settings from LMS for consistent behavior with CMS
22
from lms.envs.test import (WIKI_ENABLED, PLATFORM_NAME, SITE_NAME)
23

24 25 26
# Nose Test Runner
TEST_RUNNER = 'django_nose.NoseTestSuiteRunner'

27 28 29 30 31 32 33 34 35
_system = 'cms'
_report_dir = REPO_ROOT / 'reports' / _system
_report_dir.makedirs_p()

NOSE_ARGS = [
    '--id-file', REPO_ROOT / '.testids' / _system / 'noseids',
    '--xunit-file', _report_dir / 'nosetests.xml',
]

36 37 38
TEST_ROOT = path('test_root')

# Want static files in the same dir for running on jenkins.
39
STATIC_ROOT = TEST_ROOT / "staticfiles"
40

41
GITHUB_REPO_ROOT = TEST_ROOT / "data"
42 43
COMMON_TEST_DATA_ROOT = COMMON_ROOT / "test" / "data"

Carson Gee committed
44
# For testing "push to lms"
45
FEATURES['ENABLE_EXPORT_GIT'] = True
Carson Gee committed
46 47
GIT_REPO_EXPORT_DIR = TEST_ROOT / "export_course_repos"

48
# Makes the tests run much faster...
49
SOUTH_TESTS_MIGRATE = False  # To disable migrations and use syncdb instead
50

51 52 53 54 55 56 57 58 59 60
# 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
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)
]
61

62 63 64 65
# Add split as another store for testing
MODULESTORE['default']['OPTIONS']['stores'].append(
    {
        'NAME': 'split',
66
        'ENGINE': 'xmodule.modulestore.split_mongo.split_draft.DraftVersioningModuleStore',
67
        'DOC_STORE_CONFIG': DOC_STORE_CONFIG,
68 69 70
        'OPTIONS': {
            'render_template': 'edxmako.shortcuts.render_to_string',
        }
71
    },
72 73 74 75 76 77 78
)
# Update module store settings per defaults for tests
update_module_store_settings(
    MODULESTORE,
    module_store_options={
        'default_class': 'xmodule.raw_module.RawDescriptor',
        'fs_root': TEST_ROOT / "data",
Chris Dodge committed
79
    },
80 81 82
    doc_store_settings={
        'db': 'test_xmodule',
        'collection': 'test_modulestore{0}'.format(uuid4().hex[:5]),
83
    },
84
)
85

86 87
CONTENTSTORE = {
    'ENGINE': 'xmodule.contentstore.mongo.MongoContentStore',
88
    'DOC_STORE_CONFIG': {
89
        'host': 'localhost',
90
        'db': 'test_xcontent',
91
        'collection': 'dont_trip',
92 93 94 95 96 97
    },
    # allow for additional options that can be keyed on a name, e.g. 'trashcan'
    'ADDITIONAL_OPTIONS': {
        'trashcan': {
            'bucket': 'trash_fs'
        }
98
    }
99 100 101 102 103
}

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.sqlite3',
104
        'NAME': TEST_ROOT / "db" / "cms.db",
105
    },
106 107
}

cahrens committed
108
LMS_BASE = "localhost:8000"
109
FEATURES['PREVIEW_LMS_BASE'] = "preview"
cahrens committed
110

111
CACHES = {
Calen Pennington committed
112
    # This is the cache used for most things. Askbot will not work without a
113 114 115 116
    # functioning cache -- it relies on caching to load its settings in places.
    # In staging/prod envs, the sessions also live here.
    'default': {
        'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
117
        'LOCATION': 'edx_loc_mem_cache',
118 119 120 121 122 123 124 125 126 127 128 129 130
        'KEY_FUNCTION': 'util.memcache.safe_key',
    },

    # 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,
        'KEY_FUNCTION': 'util.memcache.safe_key',
131 132 133 134 135 136 137
    },

    'mongo_metadata_inheritance': {
        'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
        'LOCATION': '/var/tmp/mongo_metadata_inheritance',
        'TIMEOUT': 300,
        'KEY_FUNCTION': 'util.memcache.safe_key',
138 139 140 141 142 143
    },
    'loc_cache': {
        'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
        'LOCATION': 'edx_location_mem_cache',
    },

144
}
145

146 147 148
# Add external_auth to Installed apps for testing
INSTALLED_APPS += ('external_auth', )

Diana Huang committed
149 150 151
# hide ratelimit warnings while running tests
filterwarnings('ignore', message='No request passed to the backend, unable to rate-limit')

152 153 154 155
# Ignore deprecation warnings (so we don't clutter Jenkins builds/production)
# https://docs.python.org/2/library/warnings.html#the-warnings-filter
simplefilter('ignore')  # Change to "default" to see the first instance of each hit
                        # or "error" to convert all into errors
156

157 158 159 160 161 162
################################# CELERY ######################################

CELERY_ALWAYS_EAGER = True
CELERY_RESULT_BACKEND = 'cache'
BROKER_TRANSPORT = 'memory'

163 164 165 166 167 168 169 170 171

########################### Server Ports ###################################

# These ports are carefully chosen so that if the browser needs to
# access them, they will be available through the SauceLabs SSH tunnel
LETTUCE_SERVER_PORT = 8003
XQUEUE_PORT = 8040
YOUTUBE_PORT = 8031
LTI_PORT = 8765
172
VIDEO_SOURCE_PORT = 8777
173 174


175
################### Make tests faster
Don Mitchell committed
176
# http://slacy.com/blog/2012/04/make-your-tests-faster-in-django-1-4/
177 178 179
PASSWORD_HASHERS = (
    'django.contrib.auth.hashers.SHA1PasswordHasher',
    'django.contrib.auth.hashers.MD5PasswordHasher',
180
)
181

182 183
# dummy segment-io key
SEGMENT_IO_KEY = '***REMOVED***'
184

185
FEATURES['ENABLE_SERVICE_STATUS'] = True
Adam Palay committed
186

187
# This is to disable a test under the common directory that will not pass when run under CMS
188
FEATURES['DISABLE_RESET_EMAIL_TEST'] = True
189 190 191

# Toggles embargo on for testing
FEATURES['EMBARGO'] = True
192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219

# set up some testing for microsites
MICROSITE_CONFIGURATION = {
    "test_microsite": {
        "domain_prefix": "testmicrosite",
        "university": "test_microsite",
        "platform_name": "Test Microsite",
        "logo_image_url": "test_microsite/images/header-logo.png",
        "email_from_address": "test_microsite@edx.org",
        "payment_support_email": "test_microsite@edx.org",
        "ENABLE_MKTG_SITE": False,
        "SITE_NAME": "test_microsite.localhost",
        "course_org_filter": "TestMicrositeX",
        "course_about_show_social_links": False,
        "css_overrides_file": "test_microsite/css/test_microsite.css",
        "show_partners": False,
        "show_homepage_promo_video": False,
        "course_index_overlay_text": "This is a Test Microsite Overlay Text.",
        "course_index_overlay_logo_file": "test_microsite/images/header-logo.png",
        "homepage_overlay_html": "<h1>This is a Test Microsite Overlay HTML</h1>"
    },
    "default": {
        "university": "default_university",
        "domain_prefix": "www",
    }
}
MICROSITE_ROOT_DIR = COMMON_ROOT / 'test' / 'test_microsites'
FEATURES['USE_MICROSITES'] = True
220 221 222 223

# For consistency in user-experience, keep the value of this setting in sync with
# the one in lms/envs/test.py
FEATURES['ENABLE_DISCUSSION_SERVICE'] = False