When Tempest is used in customer site, often we are required to provide a testcase list including testcase names and descriptions. Now no this kind of doc is available, so we can add descriptions with the format of doc string for every testcase, so later we can generata such a testcase description list. There are hundreds of testcases missing descriptions, so we can add them gradually, and limit the modified files in one patch for the convenience of reviewing. Change-Id: Ib0df766d305ab2583d284d4c0aed32e7685eb595 partially-implements: blueprint testcase-description
56 lines
2.2 KiB
Python
56 lines
2.2 KiB
Python
# Copyright(c)2015 NTT corp. 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 tempest.api.object_storage import test_container_sync
|
|
from tempest.common import utils
|
|
from tempest import config
|
|
from tempest.lib import decorators
|
|
|
|
CONF = config.CONF
|
|
|
|
|
|
# This test can be quite long to run due to its
|
|
# dependency on container-sync process running interval.
|
|
# You can obviously reduce the container-sync interval in the
|
|
# container-server configuration.
|
|
|
|
|
|
class ContainerSyncMiddlewareTest(test_container_sync.ContainerSyncTest):
|
|
"""Test containers synchronization specifying realm and cluster"""
|
|
|
|
@classmethod
|
|
def resource_setup(cls):
|
|
super(ContainerSyncMiddlewareTest, cls).resource_setup()
|
|
|
|
# Set container-sync-realms.conf info
|
|
cls.realm_name = CONF.object_storage.realm_name
|
|
cls.key = 'sync_key'
|
|
cls.cluster_name = CONF.object_storage.cluster_name
|
|
|
|
@decorators.attr(type='slow')
|
|
@decorators.idempotent_id('ea4645a1-d147-4976-82f7-e5a7a3065f80')
|
|
@utils.requires_ext(extension='container_sync', service='object')
|
|
def test_container_synchronization(self):
|
|
"""Test container synchronization specifying realm and cluster"""
|
|
def make_headers(cont, cont_client):
|
|
# tell first container to synchronize to a second
|
|
account_name = cont_client.base_url.split('/')[-1]
|
|
|
|
headers = {'X-Container-Sync-Key': "%s" % (self.key),
|
|
'X-Container-Sync-To': "//%s/%s/%s/%s" %
|
|
(self.realm_name, self.cluster_name,
|
|
str(account_name), str(cont))}
|
|
return headers
|
|
self._test_container_synchronization(make_headers)
|