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

# We intentionally define lots of variables that aren't used, and
# want to import all variables from base settings files
14
# pylint: disable=wildcard-import, unused-wildcard-import
15

16 17 18 19 20
# Pylint gets confused by path.py instances, which report themselves as class
# objects. As a result, pylint applies the wrong regex in validating names,
# and throws spurious errors. Therefore, we disable invalid-name checking.
# pylint: disable=invalid-name

21 22
from .common import *
import os
23
from path import Path as path
24
from warnings import filterwarnings, simplefilter
25
from uuid import uuid4
26

27
# import settings from LMS for consistent behavior with CMS
28
# pylint: disable=unused-import
29 30 31 32 33 34 35 36 37 38 39
from lms.envs.test import (
    WIKI_ENABLED,
    PLATFORM_NAME,
    SITE_NAME,
    DEFAULT_FILE_STORAGE,
    MEDIA_ROOT,
    MEDIA_URL,
    # This is practically unused but needed by the oauth2_provider package, which
    # some tests in common/ rely on.
    OAUTH_OIDC_ISSUER,
)
40

41 42 43 44 45 46
# mongo connection settings
MONGO_PORT_NUM = int(os.environ.get('EDXAPP_TEST_MONGO_PORT', '27017'))
MONGO_HOST = os.environ.get('EDXAPP_TEST_MONGO_HOST', 'localhost')

THIS_UUID = uuid4().hex[:5]

47 48 49
# Nose Test Runner
TEST_RUNNER = 'django_nose.NoseTestSuiteRunner'

50 51 52 53 54 55
_SYSTEM = 'cms'

_REPORT_DIR = REPO_ROOT / 'reports' / _SYSTEM
_REPORT_DIR.makedirs_p()
_NOSEID_DIR = REPO_ROOT / '.testids' / _SYSTEM
_NOSEID_DIR.makedirs_p()
56 57

NOSE_ARGS = [
58 59
    '--id-file', _NOSEID_DIR / 'noseids',
    '--xunit-file', _REPORT_DIR / 'nosetests.xml',
60 61
]

62 63 64
TEST_ROOT = path('test_root')

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

67
GITHUB_REPO_ROOT = TEST_ROOT / "data"
68
DATA_DIR = TEST_ROOT / "data"
69 70
COMMON_TEST_DATA_ROOT = COMMON_ROOT / "test" / "data"

Carson Gee committed
71
# For testing "push to lms"
72
FEATURES['ENABLE_EXPORT_GIT'] = True
Carson Gee committed
73 74
GIT_REPO_EXPORT_DIR = TEST_ROOT / "export_course_repos"

75
# Makes the tests run much faster...
76
SOUTH_TESTS_MIGRATE = False  # To disable migrations and use syncdb instead
77

78 79 80 81 82 83 84 85 86 87
# 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)
]
88

89 90 91 92
# Avoid having to run collectstatic before the unit test suite
# If we don't add these settings, then Django templates that can't
# find pipelined assets will raise a ValueError.
# http://stackoverflow.com/questions/12816941/unit-testing-with-django-pipeline
93
STATICFILES_STORAGE = 'pipeline.storage.NonPackagingPipelineStorage'
94
STATIC_URL = "/static/"
95
PIPELINE_ENABLED = False
96

97 98 99 100 101 102
# 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
103
    },
104 105
    doc_store_settings={
        'db': 'test_xmodule',
106 107 108
        'host': MONGO_HOST,
        'port': MONGO_PORT_NUM,
        'collection': 'test_modulestore{0}'.format(THIS_UUID),
109
    },
110
)
111

112 113
CONTENTSTORE = {
    'ENGINE': 'xmodule.contentstore.mongo.MongoContentStore',
114
    'DOC_STORE_CONFIG': {
115
        'host': MONGO_HOST,
116
        'db': 'test_xcontent',
117
        'port': MONGO_PORT_NUM,
118
        'collection': 'dont_trip',
119 120 121 122 123 124
    },
    # allow for additional options that can be keyed on a name, e.g. 'trashcan'
    'ADDITIONAL_OPTIONS': {
        'trashcan': {
            'bucket': 'trash_fs'
        }
125
    }
126 127 128 129 130
}

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.sqlite3',
131
        'NAME': TEST_ROOT / "db" / "cms.db",
132
    },
133 134
}

cahrens committed
135
LMS_BASE = "localhost:8000"
136
FEATURES['PREVIEW_LMS_BASE'] = "preview"
cahrens committed
137

138
CACHES = {
Calen Pennington committed
139
    # This is the cache used for most things. Askbot will not work without a
140 141 142 143
    # 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',
144
        'LOCATION': 'edx_loc_mem_cache',
145 146 147 148 149 150 151 152 153 154 155 156 157
        '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',
158 159 160 161
    },

    'mongo_metadata_inheritance': {
        'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
162
        'LOCATION': os.path.join(tempfile.gettempdir(), 'mongo_metadata_inheritance'),
163 164
        'TIMEOUT': 300,
        'KEY_FUNCTION': 'util.memcache.safe_key',
165 166 167 168 169
    },
    'loc_cache': {
        'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
        'LOCATION': 'edx_location_mem_cache',
    },
170 171 172
    'course_structure_cache': {
        'BACKEND': 'django.core.cache.backends.dummy.DummyCache',
    },
173
}
174

175 176 177
# Add external_auth to Installed apps for testing
INSTALLED_APPS += ('external_auth', )

178
# Add milestones to Installed apps for testing
utkjad committed
179
INSTALLED_APPS += ('milestones', 'openedx.core.djangoapps.call_stack_manager')
180

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

184 185
# Ignore deprecation warnings (so we don't clutter Jenkins builds/production)
# https://docs.python.org/2/library/warnings.html#the-warnings-filter
David Baumgold committed
186 187
# Change to "default" to see the first instance of each hit
# or "error" to convert all into errors
188
simplefilter('ignore')
189

190 191 192
################################# CELERY ######################################

CELERY_ALWAYS_EAGER = True
Feanil Patel committed
193
CELERY_RESULT_BACKEND = 'djcelery.backends.cache:CacheBackend'
194 195 196 197 198 199 200 201 202

########################### 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
203
VIDEO_SOURCE_PORT = 8777
204 205


206
################### Make tests faster
Don Mitchell committed
207
# http://slacy.com/blog/2012/04/make-your-tests-faster-in-django-1-4/
208 209 210
PASSWORD_HASHERS = (
    'django.contrib.auth.hashers.SHA1PasswordHasher',
    'django.contrib.auth.hashers.MD5PasswordHasher',
211
)
212

213 214
# dummy segment-io key
SEGMENT_IO_KEY = '***REMOVED***'
215

216
FEATURES['ENABLE_SERVICE_STATUS'] = True
Adam Palay committed
217

218 219
# Toggles embargo on for testing
FEATURES['EMBARGO'] = True
220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247

# 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
248 249 250 251

# 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
252

253 254 255
# Enable a parental consent age limit for testing
PARENTAL_CONSENT_AGE_LIMIT = 13

256 257
# Enable content libraries code for the tests
FEATURES['ENABLE_CONTENT_LIBRARIES'] = True
258 259

FEATURES['ENABLE_EDXNOTES'] = True
260 261 262 263 264 265 266

# MILESTONES
FEATURES['MILESTONES_APP'] = True

# ENTRANCE EXAMS
FEATURES['ENTRANCE_EXAMS'] = True
ENTRANCE_EXAM_MIN_SCORE_PCT = 50
267 268 269 270

VIDEO_CDN_URL = {
    'CN': 'http://api.xuetangx.com/edx/video?s3_url='
}
271 272 273

# Courseware Search Index
FEATURES['ENABLE_COURSEWARE_INDEX'] = True
274
FEATURES['ENABLE_LIBRARY_INDEX'] = True
275
SEARCH_ENGINE = "search.tests.mock_search_engine.MockSearchEngine"
276

277 278 279 280

# teams feature
FEATURES['ENABLE_TEAMS'] = True

281 282
# Dummy secret key for dev/test
SECRET_KEY = '85920908f28904ed733fe576320db18cabd7b6cd'