test.py 12 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
from util.db import NoOpMigrationModules
27
from openedx.core.lib.derived import derive_settings
28

29
# import settings from LMS for consistent behavior with CMS
30
# pylint: disable=unused-import
31 32 33 34 35 36 37
from lms.envs.test import (
    WIKI_ENABLED,
    PLATFORM_NAME,
    SITE_NAME,
    DEFAULT_FILE_STORAGE,
    MEDIA_ROOT,
    MEDIA_URL,
38
    COMPREHENSIVE_THEME_DIRS,
39
    JWT_AUTH,
40
    REGISTRATION_EXTRA_FIELDS,
41
)
42

43 44 45 46 47 48
# 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]

49 50 51
TEST_ROOT = path('test_root')

# Want static files in the same dir for running on jenkins.
52
STATIC_ROOT = TEST_ROOT / "staticfiles"
53 54
INSTALLED_APPS = [app for app in INSTALLED_APPS if app != 'webpack_loader']
INSTALLED_APPS.append('openedx.tests.util.webpack_loader')
55
WEBPACK_LOADER['DEFAULT']['STATS_FILE'] = STATIC_ROOT / "webpack-stats.json"
56

57
GITHUB_REPO_ROOT = TEST_ROOT / "data"
58
DATA_DIR = TEST_ROOT / "data"
59 60
COMMON_TEST_DATA_ROOT = COMMON_ROOT / "test" / "data"

Carson Gee committed
61
# For testing "push to lms"
62
FEATURES['ENABLE_EXPORT_GIT'] = True
Carson Gee committed
63 64
GIT_REPO_EXPORT_DIR = TEST_ROOT / "export_course_repos"

65 66 67 68 69 70 71 72 73 74
# 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)
]
75

76 77 78 79
# 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
80
STATICFILES_STORAGE = 'pipeline.storage.NonPackagingPipelineStorage'
81 82
STATIC_URL = "/static/"

83 84 85 86 87 88
# 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
89
    },
90 91
    doc_store_settings={
        'db': 'test_xmodule',
92 93 94
        'host': MONGO_HOST,
        'port': MONGO_PORT_NUM,
        'collection': 'test_modulestore{0}'.format(THIS_UUID),
95
    },
96
)
97

98 99
CONTENTSTORE = {
    'ENGINE': 'xmodule.contentstore.mongo.MongoContentStore',
100
    'DOC_STORE_CONFIG': {
101
        'host': MONGO_HOST,
102
        'db': 'test_xcontent',
103
        'port': MONGO_PORT_NUM,
104
        'collection': 'dont_trip',
105 106 107 108 109 110
    },
    # allow for additional options that can be keyed on a name, e.g. 'trashcan'
    'ADDITIONAL_OPTIONS': {
        'trashcan': {
            'bucket': 'trash_fs'
        }
111
    }
112 113 114 115 116
}

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.sqlite3',
117
        'NAME': TEST_ROOT / "db" / "cms.db",
118
        'ATOMIC_REQUESTS': True,
119
    },
120 121
}

122 123 124 125
if os.environ.get('DISABLE_MIGRATIONS'):
    # Create tables directly from apps' models. This can be removed once we upgrade
    # to Django 1.9, which allows setting MIGRATION_MODULES to None in order to skip migrations.
    MIGRATION_MODULES = NoOpMigrationModules()
126

cahrens committed
127
LMS_BASE = "localhost:8000"
128
LMS_ROOT_URL = "http://{}".format(LMS_BASE)
129 130
FEATURES['PREVIEW_LMS_BASE'] = "preview.localhost"

cahrens committed
131

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

    'mongo_metadata_inheritance': {
        'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
156
        'LOCATION': os.path.join(tempfile.gettempdir(), 'mongo_metadata_inheritance'),
157 158
        'TIMEOUT': 300,
        'KEY_FUNCTION': 'util.memcache.safe_key',
159 160 161 162 163
    },
    'loc_cache': {
        'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
        'LOCATION': 'edx_location_mem_cache',
    },
164 165 166
    'course_structure_cache': {
        'BACKEND': 'django.core.cache.backends.dummy.DummyCache',
    },
167
}
168

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

172 173
# 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
174 175
# Change to "default" to see the first instance of each hit
# or "error" to convert all into errors
176
simplefilter('ignore')
177

178 179 180
################################# CELERY ######################################

CELERY_ALWAYS_EAGER = True
Feanil Patel committed
181
CELERY_RESULT_BACKEND = 'djcelery.backends.cache:CacheBackend'
182

183 184
CLEAR_REQUEST_CACHE_ON_TASK_COMPLETION = False

185 186 187 188 189 190 191 192
########################### 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
193
VIDEO_SOURCE_PORT = 8777
194 195


196
################### Make tests faster
Don Mitchell committed
197
# http://slacy.com/blog/2012/04/make-your-tests-faster-in-django-1-4/
198
PASSWORD_HASHERS = [
199 200
    'django.contrib.auth.hashers.SHA1PasswordHasher',
    'django.contrib.auth.hashers.MD5PasswordHasher',
201
]
202

203
# No segment key
204
CMS_SEGMENT_KEY = None
205

206
FEATURES['ENABLE_SERVICE_STATUS'] = True
Adam Palay committed
207

208 209
# Toggles embargo on for testing
FEATURES['EMBARGO'] = True
210 211

# set up some testing for microsites
212
FEATURES['USE_MICROSITES'] = True
213
MICROSITE_ROOT_DIR = COMMON_ROOT / 'test' / 'test_sites'
214
MICROSITE_CONFIGURATION = {
215 216 217 218 219 220 221
    "test_site": {
        "domain_prefix": "test-site",
        "university": "test_site",
        "platform_name": "Test Site",
        "logo_image_url": "test_site/images/header-logo.png",
        "email_from_address": "test_site@edx.org",
        "payment_support_email": "test_site@edx.org",
222
        "ENABLE_MKTG_SITE": False,
223 224
        "SITE_NAME": "test_site.localhost",
        "course_org_filter": "TestSiteX",
225
        "course_about_show_social_links": False,
226
        "css_overrides_file": "test_site/css/test_site.css",
227 228
        "show_partners": False,
        "show_homepage_promo_video": False,
229 230 231
        "course_index_overlay_text": "This is a Test Site Overlay Text.",
        "course_index_overlay_logo_file": "test_site/images/header-logo.png",
        "homepage_overlay_html": "<h1>This is a Test Site Overlay HTML</h1>",
232 233 234 235 236
        "ALWAYS_REDIRECT_HOMEPAGE_TO_DASHBOARD_FOR_AUTHENTICATED_USER": False,
        "COURSE_CATALOG_VISIBILITY_PERMISSION": "see_in_catalog",
        "COURSE_ABOUT_VISIBILITY_PERMISSION": "see_about_page",
        "ENABLE_SHOPPING_CART": True,
        "ENABLE_PAID_COURSE_REGISTRATION": True,
237
        "SESSION_COOKIE_DOMAIN": "test_site.localhost",
238
        "urls": {
239 240 241
            'ABOUT': 'test-site/about',
            'PRIVACY': 'test-site/privacy',
            'TOS_AND_HONOR': 'test-site/tos-and-honor',
242 243
        },
    },
244
    "site_with_logistration": {
245 246 247
        "domain_prefix": "logistration",
        "university": "logistration",
        "platform_name": "Test logistration",
248 249 250
        "logo_image_url": "test_site/images/header-logo.png",
        "email_from_address": "test_site@edx.org",
        "payment_support_email": "test_site@edx.org",
251 252
        "ENABLE_MKTG_SITE": False,
        "ENABLE_COMBINED_LOGIN_REGISTRATION": True,
253
        "SITE_NAME": "test_site.localhost",
254 255
        "course_org_filter": "LogistrationX",
        "course_about_show_social_links": False,
256
        "css_overrides_file": "test_site/css/test_site.css",
257 258 259
        "show_partners": False,
        "show_homepage_promo_video": False,
        "course_index_overlay_text": "Logistration.",
260
        "course_index_overlay_logo_file": "test_site/images/header-logo.png",
261 262 263 264 265 266 267
        "homepage_overlay_html": "<h1>This is a Logistration HTML</h1>",
        "ALWAYS_REDIRECT_HOMEPAGE_TO_DASHBOARD_FOR_AUTHENTICATED_USER": False,
        "COURSE_CATALOG_VISIBILITY_PERMISSION": "see_in_catalog",
        "COURSE_ABOUT_VISIBILITY_PERMISSION": "see_about_page",
        "ENABLE_SHOPPING_CART": True,
        "ENABLE_PAID_COURSE_REGISTRATION": True,
        "SESSION_COOKIE_DOMAIN": "test_logistration.localhost",
268 269 270 271 272 273
    },
    "default": {
        "university": "default_university",
        "domain_prefix": "www",
    }
}
274
MICROSITE_TEST_HOSTNAME = 'test-site.testserver'
275
MICROSITE_LOGISTRATION_HOSTNAME = 'logistration.testserver'
276

277 278
TEST_THEME = COMMON_ROOT / "test" / "test-theme"

279 280 281
# 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
282

283 284 285
# Enable a parental consent age limit for testing
PARENTAL_CONSENT_AGE_LIMIT = 13

286 287
# Enable content libraries code for the tests
FEATURES['ENABLE_CONTENT_LIBRARIES'] = True
288 289

FEATURES['ENABLE_EDXNOTES'] = True
290 291 292 293 294 295 296

# MILESTONES
FEATURES['MILESTONES_APP'] = True

# ENTRANCE EXAMS
FEATURES['ENTRANCE_EXAMS'] = True
ENTRANCE_EXAM_MIN_SCORE_PCT = 50
297 298 299 300

VIDEO_CDN_URL = {
    'CN': 'http://api.xuetangx.com/edx/video?s3_url='
}
301 302 303

# Courseware Search Index
FEATURES['ENABLE_COURSEWARE_INDEX'] = True
304
FEATURES['ENABLE_LIBRARY_INDEX'] = True
305
SEARCH_ENGINE = "search.tests.mock_search_engine.MockSearchEngine"
306

307
FEATURES['ENABLE_ENROLLMENT_TRACK_USER_PARTITION'] = True
308

309 310 311
########################## AUTHOR PERMISSION #######################
FEATURES['ENABLE_CREATOR_GROUP'] = False

312 313 314
# teams feature
FEATURES['ENABLE_TEAMS'] = True

315 316
# Dummy secret key for dev/test
SECRET_KEY = '85920908f28904ed733fe576320db18cabd7b6cd'
Giovanni Di Milia committed
317 318

######### custom courses #########
319
INSTALLED_APPS.append('openedx.core.djangoapps.ccxcon.apps.CCXConnectorConfig')
Giovanni Di Milia committed
320
FEATURES['CUSTOM_COURSES_EDX'] = True
321

322
# API access management -- needed for simple-history to run.
323
INSTALLED_APPS.append('openedx.core.djangoapps.api_admin')
324 325 326

########################## VIDEO IMAGE STORAGE ############################
VIDEO_IMAGE_SETTINGS = dict(
327 328
    VIDEO_IMAGE_MAX_BYTES=2 * 1024 * 1024,    # 2 MB
    VIDEO_IMAGE_MIN_BYTES=2 * 1024,       # 2 KB
329 330 331 332
    STORAGE_KWARGS=dict(
        location=MEDIA_ROOT,
        base_url=MEDIA_URL,
    ),
muhammad-ammar committed
333
    DIRECTORY_PREFIX='video-images/',
334 335
)
VIDEO_IMAGE_DEFAULT_FILENAME = 'default_video_image.png'
336 337 338 339 340 341 342 343 344 345

########################## VIDEO TRANSCRIPTS STORAGE ############################
VIDEO_TRANSCRIPTS_SETTINGS = dict(
    VIDEO_TRANSCRIPTS_MAX_BYTES=3 * 1024 * 1024,    # 3 MB
    STORAGE_KWARGS=dict(
        location=MEDIA_ROOT,
        base_url=MEDIA_URL,
    ),
    DIRECTORY_PREFIX='video-transcripts/',
)
346 347 348 349

########################## Derive Any Derived Settings  #######################

derive_settings(__name__)