cb8e7c1f8f
Moves everything OpenStack-specific (dashboards, apis, etc.) into the openstack_dashboard project, achieving a much cleaner separation between the project-specific code and the generic Horizon framework code. Change-Id: I7235b41d449b26c980668fc3eb4360b24508717b
86 lines
2.3 KiB
Python
86 lines
2.3 KiB
Python
import os
|
|
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
from horizon.test.settings import *
|
|
from horizon.utils.secret_key import generate_or_read_from_file
|
|
|
|
from openstack_dashboard.exceptions import UNAUTHORIZED, RECOVERABLE, NOT_FOUND
|
|
|
|
|
|
TEST_DIR = os.path.dirname(os.path.abspath(__file__))
|
|
ROOT_PATH = os.path.abspath(os.path.join(TEST_DIR, ".."))
|
|
|
|
SECRET_KEY = generate_or_read_from_file(os.path.join(TEST_DIR,
|
|
'.secret_key_store'))
|
|
ROOT_URLCONF = 'openstack_dashboard.urls'
|
|
TEMPLATE_DIRS = (
|
|
os.path.join(TEST_DIR, 'templates'),
|
|
#os.path.join(ROOT_PATH, 'templates'),
|
|
)
|
|
|
|
TEMPLATE_CONTEXT_PROCESSORS += (
|
|
'openstack_dashboard.context_processors.openstack',
|
|
)
|
|
|
|
INSTALLED_APPS = (
|
|
'django.contrib.sessions',
|
|
'django.contrib.staticfiles',
|
|
'django.contrib.messages',
|
|
'django.contrib.humanize',
|
|
'django_nose',
|
|
'openstack_auth',
|
|
'compressor',
|
|
'horizon',
|
|
'openstack_dashboard',
|
|
'openstack_dashboard.dashboards.project',
|
|
'openstack_dashboard.dashboards.admin',
|
|
'openstack_dashboard.dashboards.settings',
|
|
)
|
|
|
|
AUTHENTICATION_BACKENDS = ('openstack_auth.backend.KeystoneBackend',)
|
|
|
|
SITE_BRANDING = 'OpenStack'
|
|
|
|
HORIZON_CONFIG = {
|
|
'dashboards': ('project', 'admin', 'settings'),
|
|
'default_dashboard': 'project',
|
|
"password_validator": {
|
|
"regex": '^.{8,18}$',
|
|
"help_text": _("Password must be between 8 and 18 characters.")
|
|
},
|
|
'user_home': None,
|
|
'help_url': "http://docs.openstack.org",
|
|
'exceptions': {'recoverable': RECOVERABLE,
|
|
'not_found': NOT_FOUND,
|
|
'unauthorized': UNAUTHORIZED},
|
|
}
|
|
|
|
AVAILABLE_REGIONS = [
|
|
('http://localhost:5000/v2.0', 'local'),
|
|
('http://remote:5000/v2.0', 'remote'),
|
|
]
|
|
|
|
OPENSTACK_KEYSTONE_URL = "http://localhost:5000/v2.0"
|
|
OPENSTACK_KEYSTONE_DEFAULT_ROLE = "Member"
|
|
|
|
OPENSTACK_KEYSTONE_BACKEND = {
|
|
'name': 'native',
|
|
'can_edit_user': True
|
|
}
|
|
|
|
OPENSTACK_HYPERVISOR_FEATURES = {
|
|
'can_set_mount_point': True
|
|
}
|
|
|
|
LOGGING['loggers']['openstack_dashboard'] = {
|
|
'handlers': ['test'],
|
|
'propagate': False,
|
|
}
|
|
|
|
NOSE_ARGS = ['--nocapture',
|
|
'--nologcapture',
|
|
'--cover-package=openstack_dashboard',
|
|
'--cover-inclusive',
|
|
'--all-modules']
|