acceptance.py 4.06 KB
Newer Older
1
"""
Calen Pennington committed
2
This config file extends the test environment configuration
3 4
so that we can run the lettuce acceptance tests.
"""
5 6 7 8 9

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

10
from .test import *
11
from lms.envs.sauce import *
12 13 14 15 16

# You need to start the server in debug mode,
# otherwise the browser will not render the pages correctly
DEBUG = True

17
# Output Django logs to a file
18
import logging
19 20
logging.basicConfig(filename=TEST_ROOT / "log" / "cms_acceptance.log", level=logging.ERROR)

21 22 23 24 25
import os


def seed():
    return os.getppid()
26

27 28 29 30 31 32 33 34 35 36
# Suppress error message "Cannot determine primary key of logged in user"
# from track.middleware that gets triggered when using an auto_auth workflow
# This is an ERROR level warning so we need to set the threshold at CRITICAL
logging.getLogger('track.middleware').setLevel(logging.CRITICAL)

# Suppress warning message "Cannot find corresponding link for name: <foo>"
# from edxmako.shortcuts. We have no appropriate pages in the platform to
# use, so these are not set up for TOS and PRIVACY
logging.getLogger('edxmako.shortcuts').setLevel(logging.ERROR)

37 38 39 40 41
update_module_store_settings(
    MODULESTORE,
    doc_store_settings={
        'db': 'acceptance_xmodule',
        'collection': 'acceptance_modulestore_%s' % seed(),
42
    },
43 44 45
    module_store_options={
        'default_class': 'xmodule.raw_module.RawDescriptor',
        'fs_root': TEST_ROOT / "data",
46
    }
47
)
48 49 50

CONTENTSTORE = {
    'ENGINE': 'xmodule.contentstore.mongo.MongoContentStore',
51
    'DOC_STORE_CONFIG': {
52
        'host': 'localhost',
53
        'db': 'acceptance_xcontent_%s' % seed(),
54 55 56 57 58 59 60 61 62
    },
    # allow for additional options that can be keyed on a name, e.g. 'trashcan'
    'ADDITIONAL_OPTIONS': {
        'trashcan': {
            'bucket': 'trash_fs'
        }
    }
}

Calen Pennington committed
63
# Set this up so that rake lms[acceptance] and running the
64 65 66 67 68
# harvest command both use the same (test) database
# which they can flush without messing up your dev db
DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.sqlite3',
69 70
        'NAME': TEST_ROOT / "db" / "test_edx.db",
        'TEST_NAME': TEST_ROOT / "db" / "test_edx.db"
71 72 73
    }
}

74 75 76 77 78 79
# Enable asset pipeline
# Our fork of django-pipeline uses `PIPELINE` instead of `PIPELINE_ENABLED`
# PipelineFinder is explained here: http://django-pipeline.readthedocs.org/en/1.1.24/storages.html
PIPELINE = True
STATICFILES_FINDERS += ('pipeline.finders.PipelineFinder', )

80
# Use the auto_auth workflow for creating users and logging them in
81
FEATURES['AUTOMATIC_AUTH_FOR_TESTING'] = True
82

83 84 85 86 87 88
# Forums are disabled in test.py to speed up unit tests, but we do not have
# per-test control for lettuce acceptance tests.
# If you are writing an acceptance test that needs the discussion service enabled,
# do not write it in lettuce, but instead write it using bok-choy.
# DO NOT CHANGE THIS SETTING HERE.
FEATURES['ENABLE_DISCUSSION_SERVICE'] = False
89

90 91 92 93 94
# HACK
# Setting this flag to false causes imports to not load correctly in the lettuce python files
# We do not yet understand why this occurs. Setting this to true is a stopgap measure
USE_I18N = True

95 96 97
# Include the lettuce app for acceptance testing, including the 'harvest' django-admin command
INSTALLED_APPS += ('lettuce.django',)
LETTUCE_APPS = ('contentstore',)
98
LETTUCE_BROWSER = os.environ.get('LETTUCE_BROWSER', 'chrome')
99

100 101 102 103 104 105 106 107
# Where to run: local, saucelabs, or grid
LETTUCE_SELENIUM_CLIENT = os.environ.get('LETTUCE_SELENIUM_CLIENT', 'local')

SELENIUM_GRID = {
    'URL': 'http://127.0.0.1:4444/wd/hub',
    'BROWSER': LETTUCE_BROWSER,
}

108 109 110
#####################################################################
# Lastly, see if the developer has any local overrides.
try:
111
    from .private import *  # pylint: disable=F0401
112 113
except ImportError:
    pass
114

115
# Point the URL used to test YouTube availability to our stub YouTube server
116
YOUTUBE['API'] = "127.0.0.1:{0}/get_youtube_api/".format(YOUTUBE_PORT)
117 118
YOUTUBE['TEST_URL'] = "127.0.0.1:{0}/test_youtube/".format(YOUTUBE_PORT)
YOUTUBE['TEXT_API']['url'] = "127.0.0.1:{0}/test_transcripts_youtube/".format(YOUTUBE_PORT)