a0a85dd176
Fix tempest jobs to properly use tempest-horizon as tempest-plugin in job configuration. Flake8 3.8.0 fixed a few bugs so that additional issues are marked, fix these. Co-Authored-By: Andreas Jaeger <aj@suse.com> Change-Id: I2aca3286ea2cc1ade567087786781952489d6efa
276 lines
8.3 KiB
Python
276 lines
8.3 KiB
Python
# 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 tempfile
|
|
|
|
from horizon.test.settings import * # noqa: F403,H303
|
|
from horizon.utils.escape import monkeypatch_escape
|
|
from horizon.utils import secret_key
|
|
|
|
from openstack_dashboard import enabled
|
|
from openstack_dashboard import exceptions
|
|
from openstack_dashboard import theme_settings
|
|
from openstack_dashboard.utils import settings as settings_utils
|
|
|
|
# this is used to protect from client XSS attacks, but it's worth
|
|
# enabling in our test setup to find any issues it might cause
|
|
monkeypatch_escape()
|
|
|
|
# Load default values
|
|
from openstack_dashboard.defaults import * # noqa: E402,F403,H303
|
|
|
|
WEBROOT = '/'
|
|
|
|
# The following need to Set explicitly
|
|
# as they defaults to None in openstack_dashboard.defaults.
|
|
# TODO(amotoki): Move them to a common function.
|
|
LOGIN_URL = '/auth/login/'
|
|
LOGOUT_URL = '/auth/logout/'
|
|
LOGIN_ERROR = '/auth/error/'
|
|
LOGIN_REDIRECT_URL = '/'
|
|
MEDIA_URL = '/media/'
|
|
STATIC_URL = '/static/'
|
|
|
|
TEST_DIR = os.path.dirname(os.path.abspath(__file__))
|
|
ROOT_PATH = os.path.abspath(os.path.join(TEST_DIR, ".."))
|
|
MEDIA_ROOT = os.path.abspath(os.path.join(ROOT_PATH, '..', 'media'))
|
|
STATIC_ROOT = os.path.abspath(os.path.join(ROOT_PATH, '..', 'static'))
|
|
|
|
SECRET_KEY = secret_key.generate_or_read_from_file(
|
|
os.path.join(tempfile.gettempdir(), '.secret_key_store'))
|
|
ROOT_URLCONF = 'openstack_dashboard.test.urls'
|
|
|
|
TEMPLATES[0]['DIRS'] = [
|
|
os.path.join(TEST_DIR, 'templates')
|
|
]
|
|
|
|
TEMPLATES[0]['OPTIONS']['context_processors'].append(
|
|
'openstack_dashboard.context_processors.openstack'
|
|
)
|
|
|
|
AVAILABLE_THEMES, SELECTABLE_THEMES, DEFAULT_THEME = \
|
|
theme_settings.get_available_themes(AVAILABLE_THEMES, 'default', None)
|
|
|
|
COMPRESS_OFFLINE = False
|
|
|
|
INSTALLED_APPS = (
|
|
'django.contrib.contenttypes',
|
|
'django.contrib.auth',
|
|
'django.contrib.sessions',
|
|
'django.contrib.staticfiles',
|
|
'django.contrib.messages',
|
|
'django.contrib.humanize',
|
|
'openstack_auth',
|
|
'compressor',
|
|
'horizon',
|
|
'openstack_dashboard',
|
|
)
|
|
|
|
AUTHENTICATION_BACKENDS = ('openstack_auth.backend.KeystoneBackend',)
|
|
|
|
SITE_BRANDING = 'OpenStack'
|
|
|
|
HORIZON_CONFIG = {
|
|
"password_validator": {
|
|
"regex": '^.{8,18}$',
|
|
"help_text": "Password must be between 8 and 18 characters."
|
|
},
|
|
'user_home': None,
|
|
'help_url': "https://docs.openstack.org/",
|
|
'exceptions': {'recoverable': exceptions.RECOVERABLE,
|
|
'not_found': exceptions.NOT_FOUND,
|
|
'unauthorized': exceptions.UNAUTHORIZED},
|
|
'angular_modules': [],
|
|
'js_files': [],
|
|
}
|
|
|
|
# Use the legacy panel so unit tests are still run.
|
|
# We need to set False for panels whose default implementation
|
|
# is Angular-based.
|
|
ANGULAR_FEATURES['images_panel'] = False
|
|
ANGULAR_FEATURES['key_pairs_panel'] = False
|
|
ANGULAR_FEATURES['roles_panel'] = False
|
|
|
|
STATICFILES_DIRS = settings_utils.get_xstatic_dirs(
|
|
settings_utils.BASE_XSTATIC_MODULES, HORIZON_CONFIG
|
|
)
|
|
|
|
INSTALLED_APPS = list(INSTALLED_APPS) # Make sure it's mutable
|
|
settings_utils.update_dashboards(
|
|
[
|
|
enabled,
|
|
],
|
|
HORIZON_CONFIG,
|
|
INSTALLED_APPS,
|
|
)
|
|
|
|
settings_utils.find_static_files(HORIZON_CONFIG, AVAILABLE_THEMES,
|
|
THEME_COLLECTION_DIR, ROOT_PATH)
|
|
|
|
IMAGES_ALLOW_LOCATION = True
|
|
|
|
AVAILABLE_REGIONS = [
|
|
('http://localhost/identity/v3', 'local'),
|
|
('http://remote/identity/v3', 'remote'),
|
|
]
|
|
|
|
OPENSTACK_KEYSTONE_URL = "http://localhost/identity/v3"
|
|
|
|
OPENSTACK_KEYSTONE_MULTIDOMAIN_SUPPORT = True
|
|
OPENSTACK_KEYSTONE_DEFAULT_DOMAIN = 'test_domain'
|
|
OPENSTACK_KEYSTONE_FEDERATION_MANAGEMENT = True
|
|
|
|
OPENSTACK_CINDER_FEATURES['enable_backup'] = True
|
|
|
|
OPENSTACK_NEUTRON_NETWORK['enable_router'] = True
|
|
# network quota is Enabled in specific tests only
|
|
OPENSTACK_NEUTRON_NETWORK['enable_quotas'] = False
|
|
OPENSTACK_NEUTRON_NETWORK['enable_distributed_router'] = False
|
|
|
|
OPENSTACK_HYPERVISOR_FEATURES['can_set_password'] = True
|
|
|
|
LOGGING['loggers'].update(
|
|
{
|
|
'openstack_dashboard': {
|
|
'handlers': ['test'],
|
|
'propagate': False,
|
|
},
|
|
'openstack_auth': {
|
|
'handlers': ['test'],
|
|
'propagate': False,
|
|
},
|
|
'novaclient': {
|
|
'handlers': ['test'],
|
|
'propagate': False,
|
|
},
|
|
'keystoneclient': {
|
|
'handlers': ['test'],
|
|
'propagate': False,
|
|
},
|
|
'glanceclient': {
|
|
'handlers': ['test'],
|
|
'propagate': False,
|
|
},
|
|
'neutronclient': {
|
|
'handlers': ['test'],
|
|
'propagate': False,
|
|
},
|
|
'oslo_policy': {
|
|
'handlers': ['test'],
|
|
'propagate': False,
|
|
},
|
|
'stevedore': {
|
|
'handlers': ['test'],
|
|
'propagate': False,
|
|
},
|
|
'iso8601': {
|
|
'handlers': ['null'],
|
|
'propagate': False,
|
|
},
|
|
}
|
|
)
|
|
|
|
SECURITY_GROUP_RULES = {
|
|
'all_tcp': {
|
|
'name': 'ALL TCP',
|
|
'ip_protocol': 'tcp',
|
|
'from_port': '1',
|
|
'to_port': '65535',
|
|
},
|
|
'http': {
|
|
'name': 'HTTP',
|
|
'ip_protocol': 'tcp',
|
|
'from_port': '80',
|
|
'to_port': '80',
|
|
},
|
|
}
|
|
|
|
POLICY_FILES_PATH = os.path.join(ROOT_PATH, "conf")
|
|
POLICY_FILES = {
|
|
'identity': 'keystone_policy.json',
|
|
'compute': 'nova_policy.json'
|
|
}
|
|
# Tthe policy check is disabled by default in our test, and it is enabled
|
|
# when we would like to test the policy check feature itself.
|
|
POLICY_CHECK_FUNCTION = None
|
|
|
|
# The openstack_auth.user.Token object isn't JSON-serializable ATM
|
|
SESSION_SERIALIZER = 'django.contrib.sessions.serializers.PickleSerializer'
|
|
|
|
REST_API_SETTING_1 = 'foo'
|
|
REST_API_SETTING_2 = 'bar'
|
|
REST_API_SECURITY = 'SECURITY'
|
|
REST_API_REQUIRED_SETTINGS = ['REST_API_SETTING_1']
|
|
REST_API_ADDITIONAL_SETTINGS = ['REST_API_SETTING_2']
|
|
|
|
# --------------------
|
|
# Test-only settings
|
|
# --------------------
|
|
# TEST_GLOBAL_MOCKS_ON_PANELS: defines what and how methods should be
|
|
# mocked globally for unit tests and Selenium tests.
|
|
# 'method' is required. 'return_value' and 'side_effect'
|
|
# are optional and passed to mock.patch().
|
|
TEST_GLOBAL_MOCKS_ON_PANELS = {
|
|
'aggregates': {
|
|
'method': ('openstack_dashboard.dashboards.admin'
|
|
'.aggregates.panel.Aggregates.can_access'),
|
|
'return_value': True,
|
|
},
|
|
'domains': {
|
|
'method': ('openstack_dashboard.dashboards.identity'
|
|
'.domains.panel.Domains.can_access'),
|
|
'return_value': True,
|
|
},
|
|
'qos': {
|
|
'method': ('openstack_dashboard.dashboards.project'
|
|
'.network_qos.panel.NetworkQoS.can_access'),
|
|
'return_value': True,
|
|
},
|
|
'rbac_policies': {
|
|
'method': ('openstack_dashboard.dashboards.admin'
|
|
'.rbac_policies.panel.RBACPolicies.can_access'),
|
|
'return_value': True,
|
|
},
|
|
'server_groups': {
|
|
'method': ('openstack_dashboard.dashboards.project'
|
|
'.server_groups.panel.ServerGroups.can_access'),
|
|
'return_value': True,
|
|
},
|
|
'trunk-project': {
|
|
'method': ('openstack_dashboard.dashboards.project'
|
|
'.trunks.panel.Trunks.can_access'),
|
|
'return_value': True,
|
|
},
|
|
'trunk-admin': {
|
|
'method': ('openstack_dashboard.dashboards.admin'
|
|
'.trunks.panel.Trunks.can_access'),
|
|
'return_value': True,
|
|
},
|
|
'volume_groups': {
|
|
'method': ('openstack_dashboard.dashboards.project'
|
|
'.volume_groups.panel.VolumeGroups.allowed'),
|
|
'return_value': True,
|
|
},
|
|
'vg_snapshots': {
|
|
'method': ('openstack_dashboard.dashboards.project'
|
|
'.vg_snapshots.panel.GroupSnapshots.allowed'),
|
|
'return_value': True,
|
|
},
|
|
'application_credentials': {
|
|
'method': ('openstack_dashboard.dashboards.identity'
|
|
'.application_credentials.panel'
|
|
'.ApplicationCredentialsPanel.can_access'),
|
|
'return_value': True,
|
|
},
|
|
}
|