78 lines
2.3 KiB
Python
78 lines
2.3 KiB
Python
"""
|
|
This config file extends the test environment configuration
|
|
so that we can run the lettuce acceptance tests.
|
|
This is used in the django-admin call as acceptance.py
|
|
contains random seeding, causing django-admin to create a random collection
|
|
"""
|
|
|
|
# We intentionally define lots of variables that aren't used, and
|
|
# want to import all variables from base settings files
|
|
# pylint: disable=W0401, W0614
|
|
|
|
from .test import *
|
|
|
|
# You need to start the server in debug mode,
|
|
# otherwise the browser will not render the pages correctly
|
|
DEBUG = True
|
|
|
|
# Disable warnings for acceptance tests, to make the logs readable
|
|
import logging
|
|
logging.disable(logging.ERROR)
|
|
import os
|
|
import random
|
|
|
|
MODULESTORE_OPTIONS = {
|
|
'default_class': 'xmodule.raw_module.RawDescriptor',
|
|
'host': 'localhost',
|
|
'db': 'acceptance_xmodule',
|
|
'collection': 'acceptance_modulestore',
|
|
'fs_root': TEST_ROOT / "data",
|
|
'render_template': 'mitxmako.shortcuts.render_to_string',
|
|
}
|
|
|
|
MODULESTORE = {
|
|
'default': {
|
|
'ENGINE': 'xmodule.modulestore.draft.DraftModuleStore',
|
|
'OPTIONS': MODULESTORE_OPTIONS
|
|
},
|
|
'direct': {
|
|
'ENGINE': 'xmodule.modulestore.mongo.MongoModuleStore',
|
|
'OPTIONS': MODULESTORE_OPTIONS
|
|
},
|
|
'draft': {
|
|
'ENGINE': 'xmodule.modulestore.draft.DraftModuleStore',
|
|
'OPTIONS': MODULESTORE_OPTIONS
|
|
}
|
|
}
|
|
|
|
CONTENTSTORE = {
|
|
'ENGINE': 'xmodule.contentstore.mongo.MongoContentStore',
|
|
'OPTIONS': {
|
|
'host': 'localhost',
|
|
'db': 'acceptance_xcontent',
|
|
},
|
|
# allow for additional options that can be keyed on a name, e.g. 'trashcan'
|
|
'ADDITIONAL_OPTIONS': {
|
|
'trashcan': {
|
|
'bucket': 'trash_fs'
|
|
}
|
|
}
|
|
}
|
|
|
|
# Set this up so that rake lms[acceptance] and running the
|
|
# 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',
|
|
'NAME': TEST_ROOT / "db" / "test_mitx.db",
|
|
'TEST_NAME': TEST_ROOT / "db" / "test_mitx.db",
|
|
}
|
|
}
|
|
|
|
# Include the lettuce app for acceptance testing, including the 'harvest' django-admin command
|
|
INSTALLED_APPS += ('lettuce.django',)
|
|
LETTUCE_APPS = ('contentstore',)
|
|
LETTUCE_SERVER_PORT = random.randint(1024, 65535)
|
|
LETTUCE_BROWSER = 'chrome'
|