![Miguel Lavalle](/assets/img/avatar_default.png)
As discussed in the neutron_ci meeting [1] the QA team would like to move the tempest tests for the stadium projects from their repos to repos specific to being tempest plugins. This is the first part of a two stage move, by copying over the tempest tests to the neutron-tempest-plugin repo [2] rather than spawning new repos to be separate. [1] http://eavesdrop.openstack.org/meetings/neutron_ci/2019/neutron_ci.2019-03-12-16.01.log.html#l-94 [2] https://etherpad.openstack.org/p/neutron_stadium_move_to_tempest_plugin_repo Needed-By: https://review.opendev.org/#/c/695834 Change-Id: Icbeaf8fd8543c4cbd9a7dadbe4467d88023c4b47
71 lines
2.4 KiB
Python
71 lines
2.4 KiB
Python
# Copyright 2012 OpenStack Foundation
|
|
# Copyright 2016 Hewlett Packard Enterprise Development Company
|
|
# 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.
|
|
|
|
from neutron_tempest_plugin.api import clients as manager
|
|
from neutron_tempest_plugin import config
|
|
from neutron_tempest_plugin.services.network.json import network_client
|
|
|
|
|
|
CONF = config.CONF
|
|
|
|
|
|
class NetworkClient(network_client.NetworkClientJSON):
|
|
|
|
def pluralize(self, resource_name):
|
|
|
|
resource_plural_map = {
|
|
'ikepolicy': 'ikepolicies',
|
|
'ipsecpolicy': 'ipsecpolicies'
|
|
}
|
|
|
|
if resource_name in resource_plural_map:
|
|
return resource_plural_map.get(resource_name)
|
|
|
|
return super(NetworkClient, self).pluralize(resource_name)
|
|
|
|
def get_uri(self, plural_name):
|
|
# get service prefix from resource name
|
|
|
|
service_resource_prefix_list = [
|
|
'vpnservices',
|
|
'ikepolicies',
|
|
'ipsecpolicies',
|
|
'ipsec_site_connections',
|
|
'endpoint_groups',
|
|
]
|
|
|
|
if plural_name in service_resource_prefix_list:
|
|
plural_name = plural_name.replace("_", "-")
|
|
service_prefix = 'vpn'
|
|
uri = '%s/%s/%s' % (self.uri_prefix, service_prefix,
|
|
plural_name)
|
|
return uri
|
|
|
|
return super(NetworkClient, self).get_uri(plural_name)
|
|
|
|
|
|
class Manager(manager.Manager):
|
|
def __init__(self, credentials=None, service=None):
|
|
super(Manager, self).__init__(credentials=credentials)
|
|
self.network_client = NetworkClient(
|
|
self.auth_provider,
|
|
CONF.network.catalog_type,
|
|
CONF.network.region or CONF.identity.region,
|
|
endpoint_type=CONF.network.endpoint_type,
|
|
build_interval=CONF.network.build_interval,
|
|
build_timeout=CONF.network.build_timeout,
|
|
**self.default_params)
|