80ee3ddad8
This patch remove the dependence of some services to check for the catalog and supported versions on constant SERVICE_VERSIONS. It also remove this constant since it's no longer required. In order to do that, four new methods were added in Service: get_supported_versions, get_catalog, get_feature_name and get_unversioned_service_name that should be implemented by each service that requires this check. Right now, the only services that uses are image, identity and volume. Story: 2002787 Task: 22729 Change-Id: Ia41b7131dd1c1e76974ad4605566fd531572b974
76 lines
2.4 KiB
Python
76 lines
2.4 KiB
Python
# Copyright 2013, 2016, 2018 Red Hat, Inc.
|
|
# All Rights Reserved.
|
|
#
|
|
# 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 logging
|
|
import os
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
# Get the current tempest workspace path
|
|
TEMPEST_WORKSPACE = os.getcwd()
|
|
|
|
DEPLOYER_INPUT = os.path.join(os.path.expanduser("~"),
|
|
"tempest-deployer-input.conf")
|
|
DEFAULT_IMAGE = ("http://download.cirros-cloud.net/0.3.5/"
|
|
"cirros-0.3.5-x86_64-disk.img")
|
|
DEFAULT_IMAGE_FORMAT = 'qcow2'
|
|
|
|
# The dict holds the credentials, which are not supposed to be printed
|
|
# to a tempest.conf when --test-accounts CLI parameter is used.
|
|
ALL_CREDENTIALS_KEYS = {
|
|
"auth.admin_username": [],
|
|
"auth.admin_password": [],
|
|
"auth.admin_project_name": [],
|
|
"auth.admin_domain_name": [],
|
|
"identity.username": [],
|
|
"identity.password": [],
|
|
"identity.project_name": [],
|
|
"identity.alt_username": [],
|
|
"identity.alt_password": [],
|
|
"identity.alt_project_name": [],
|
|
"identity.admin_domain_name": [],
|
|
}
|
|
|
|
# services and their codenames
|
|
SERVICE_NAMES = {
|
|
'baremetal': 'ironic',
|
|
'compute': 'nova',
|
|
'database': 'trove',
|
|
'data-processing': 'sahara',
|
|
'image': 'glance',
|
|
'network': 'neutron',
|
|
'object-store': 'swift',
|
|
'orchestration': 'heat',
|
|
'share': 'manila',
|
|
'telemetry': 'ceilometer',
|
|
'volume': 'cinder',
|
|
'messaging': 'zaqar',
|
|
'metric': 'gnocchi',
|
|
'event': 'panko',
|
|
'workflowv2': 'mistral',
|
|
'load-balancer': 'octavia',
|
|
}
|
|
|
|
# Keep track of where the extensions are saved for that service.
|
|
# This is necessary because the configuration file is inconsistent - it uses
|
|
# different option names for service extension depending on the service.
|
|
SERVICE_EXTENSION_KEY = {
|
|
'compute': 'api_extensions',
|
|
'object-store': 'discoverable_apis',
|
|
'network': 'api_extensions',
|
|
'volumev3': 'api_extensions',
|
|
'identity': 'api_extensions'
|
|
}
|