
Some novaclient resources now have a "human_id" property which requires a call to a bound method on the manager. Thereby we need to instantiate the managers in the test data rather than simply passing the class. Fixes bug 958857. There's also some cleanup on the test settings here, to remove some outdated settings and to use an in-memory database instead of a file on disk. Change-Id: I1331e4ae5658b45d01b8247623554c5c43f67578
139 lines
4.0 KiB
Python
139 lines
4.0 KiB
Python
# vim: tabstop=4 shiftwidth=4 softtabstop=4
|
|
|
|
# Copyright 2012 United States Government as represented by the
|
|
# Administrator of the National Aeronautics and Space Administration.
|
|
# All Rights Reserved.
|
|
#
|
|
# Copyright 2012 Nebula, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
import os
|
|
import socket
|
|
|
|
socket.setdefaulttimeout(1)
|
|
|
|
ROOT_PATH = os.path.dirname(os.path.abspath(__file__))
|
|
DEBUG = True
|
|
TESTSERVER = 'http://testserver'
|
|
|
|
DATABASES = {'default': {'ENGINE': 'django.db.backends.sqlite3'}}
|
|
|
|
INSTALLED_APPS = (
|
|
'django.contrib.sessions',
|
|
'django.contrib.messages',
|
|
'django_nose',
|
|
'horizon',
|
|
'horizon.tests',
|
|
'horizon.dashboards.nova',
|
|
'horizon.dashboards.syspanel',
|
|
'horizon.dashboards.settings')
|
|
|
|
MIDDLEWARE_CLASSES = (
|
|
'django.middleware.common.CommonMiddleware',
|
|
'django.middleware.csrf.CsrfViewMiddleware',
|
|
'django.contrib.sessions.middleware.SessionMiddleware',
|
|
'django.contrib.messages.middleware.MessageMiddleware',
|
|
'django.middleware.doc.XViewMiddleware',
|
|
'django.middleware.locale.LocaleMiddleware',
|
|
'horizon.middleware.HorizonMiddleware')
|
|
|
|
TEMPLATE_CONTEXT_PROCESSORS = (
|
|
'django.core.context_processors.debug',
|
|
'django.core.context_processors.i18n',
|
|
'django.core.context_processors.request',
|
|
'django.core.context_processors.media',
|
|
'django.core.context_processors.static',
|
|
'django.contrib.messages.context_processors.messages',
|
|
'horizon.context_processors.horizon')
|
|
|
|
MESSAGE_STORAGE = 'django.contrib.messages.storage.cookie.CookieStorage'
|
|
|
|
ROOT_URLCONF = 'horizon.tests.testurls'
|
|
TEMPLATE_DIRS = (os.path.join(ROOT_PATH, 'tests', 'templates'))
|
|
SITE_ID = 1
|
|
SITE_BRANDING = 'OpenStack'
|
|
SITE_NAME = 'openstack'
|
|
|
|
TEST_RUNNER = 'django_nose.NoseTestSuiteRunner'
|
|
NOSE_ARGS = ['--nocapture',
|
|
'--cover-package=horizon',
|
|
'--cover-inclusive']
|
|
# For nose-selenium integration
|
|
LIVE_SERVER_PORT = 8000
|
|
|
|
EMAIL_BACKEND = 'django.core.mail.backends.locmem.EmailBackend'
|
|
SESSION_ENGINE = 'django.contrib.sessions.backends.cache'
|
|
|
|
HORIZON_CONFIG = {
|
|
'dashboards': ('nova', 'syspanel', 'settings',),
|
|
'default_dashboard': 'nova',
|
|
"password_validator": {
|
|
"regex": '.{6,}',
|
|
"help_text": "Your password must be at least 6 characters long."
|
|
},
|
|
}
|
|
|
|
AVAILABLE_REGIONS = [
|
|
('http://localhost:5000/v2.0', 'local'),
|
|
('http://remote:5000/v2.0', 'remote'),
|
|
]
|
|
|
|
OPENSTACK_ADDRESS = "localhost"
|
|
OPENSTACK_ADMIN_TOKEN = "openstack"
|
|
OPENSTACK_KEYSTONE_URL = "http://%s:5000/v2.0" % OPENSTACK_ADDRESS
|
|
OPENSTACK_KEYSTONE_DEFAULT_ROLE = "Member"
|
|
|
|
OPENSTACK_KEYSTONE_BACKEND = {
|
|
'name': 'native',
|
|
'can_edit_user': True
|
|
}
|
|
|
|
# Silence logging output during tests.
|
|
LOGGING = {
|
|
'version': 1,
|
|
'disable_existing_loggers': False,
|
|
'handlers': {
|
|
'null': {
|
|
'level': 'DEBUG',
|
|
'class': 'django.utils.log.NullHandler',
|
|
},
|
|
},
|
|
'loggers': {
|
|
'django.db.backends': {
|
|
'handlers': ['null'],
|
|
'propagate': False,
|
|
},
|
|
'horizon': {
|
|
'handlers': ['null'],
|
|
'propagate': False,
|
|
},
|
|
'novaclient': {
|
|
'handlers': ['null'],
|
|
'propagate': False,
|
|
},
|
|
'keystoneclient': {
|
|
'handlers': ['null'],
|
|
'propagate': False,
|
|
},
|
|
'quantum': {
|
|
'handlers': ['null'],
|
|
'propagate': False,
|
|
},
|
|
'nose.plugins.manager': {
|
|
'handlers': ['null'],
|
|
'propagate': False,
|
|
}
|
|
}
|
|
}
|