f6bc6fa7bc
Tempest assumes a default share type already created to work. This means, if a default share type is not created and not specified in the conf file, tempest tests fail. A workaround is to create a share type as part of the environment setup for all the tests that need it. This patch set does that. Change-Id: I15880e400df30918762ebd7304244b4a27200168 Closes-Bug: #1743472
194 lines
8.1 KiB
Python
194 lines
8.1 KiB
Python
# Copyright 2016 Andrew Kerr
|
|
# 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 import config
|
|
from tempest.lib.common.utils import data_utils
|
|
import testtools
|
|
from testtools import testcase as tc
|
|
|
|
from manila_tempest_tests.common import constants
|
|
from manila_tempest_tests.tests.api import base
|
|
|
|
CONF = config.CONF
|
|
|
|
|
|
@testtools.skipUnless(
|
|
CONF.share.run_share_group_tests, 'Share Group tests disabled.')
|
|
@base.skip_if_microversion_lt(constants.MIN_SHARE_GROUP_MICROVERSION)
|
|
class ShareGroupsTest(base.BaseSharesAdminTest):
|
|
|
|
@classmethod
|
|
def resource_setup(cls):
|
|
super(ShareGroupsTest, cls).resource_setup()
|
|
# Create 2 share_types
|
|
cls.share_type = cls._create_share_type()
|
|
cls.share_type_id = cls.share_type['id']
|
|
|
|
cls.share_type2 = cls._create_share_type()
|
|
cls.share_type_id2 = cls.share_type2['id']
|
|
|
|
# Create a share group type
|
|
name = data_utils.rand_name("unique_sgt_name")
|
|
cls.sg_type = cls.create_share_group_type(
|
|
name=name,
|
|
share_types=[cls.share_type_id, cls.share_type_id2],
|
|
cleanup_in_class=True,
|
|
version=constants.MIN_SHARE_GROUP_MICROVERSION)
|
|
cls.sg_type_id = cls.sg_type['id']
|
|
|
|
@tc.attr(base.TAG_POSITIVE, base.TAG_API_WITH_BACKEND)
|
|
def test_create_share_group_with_single_share_type_min(self):
|
|
share_group = self.create_share_group(
|
|
share_group_type_id=self.sg_type_id,
|
|
cleanup_in_class=False,
|
|
share_type_ids=[self.share_type_id],
|
|
version=constants.MIN_SHARE_GROUP_MICROVERSION)
|
|
|
|
keys = set(share_group.keys())
|
|
self.assertTrue(
|
|
constants.SHARE_GROUP_DETAIL_REQUIRED_KEYS.issubset(keys),
|
|
'At least one expected element missing from share group '
|
|
'response. Expected %(expected)s, got %(actual)s.' % {
|
|
"expected": constants.SHARE_GROUP_DETAIL_REQUIRED_KEYS,
|
|
"actual": keys})
|
|
|
|
actual_sg_type = share_group['share_group_type_id']
|
|
expected_sg_type = self.sg_type_id
|
|
self.assertEqual(
|
|
expected_sg_type, actual_sg_type,
|
|
'Incorrect share group type applied to share group '
|
|
'%s. Expected %s, got %s' % (
|
|
share_group['id'], expected_sg_type, actual_sg_type))
|
|
|
|
actual_share_types = share_group['share_types']
|
|
expected_share_types = [self.share_type_id]
|
|
self.assertEqual(
|
|
sorted(expected_share_types),
|
|
sorted(actual_share_types),
|
|
'Incorrect share types applied to share group %s. '
|
|
'Expected %s, got %s' % (
|
|
share_group['id'], expected_share_types, actual_share_types))
|
|
|
|
@tc.attr(base.TAG_POSITIVE, base.TAG_API_WITH_BACKEND)
|
|
def test_create_share_group_with_multiple_share_types_min(self):
|
|
share_group = self.create_share_group(
|
|
share_group_type_id=self.sg_type_id,
|
|
cleanup_in_class=False,
|
|
share_type_ids=[self.share_type_id, self.share_type_id2],
|
|
version=constants.MIN_SHARE_GROUP_MICROVERSION)
|
|
|
|
keys = set(share_group.keys())
|
|
self.assertTrue(
|
|
constants.SHARE_GROUP_DETAIL_REQUIRED_KEYS.issubset(keys),
|
|
'At least one expected element missing from share group '
|
|
'response. Expected %(expected)s, got %(actual)s.' % {
|
|
"expected": constants.SHARE_GROUP_DETAIL_REQUIRED_KEYS,
|
|
"actual": keys})
|
|
|
|
actual_sg_type = share_group['share_group_type_id']
|
|
expected_sg_type = self.sg_type_id
|
|
self.assertEqual(
|
|
expected_sg_type, actual_sg_type,
|
|
'Incorrect share group type applied to share group %s. '
|
|
'Expected %s, got %s' % (
|
|
share_group['id'], expected_sg_type, actual_sg_type))
|
|
|
|
actual_share_types = share_group['share_types']
|
|
expected_share_types = [self.share_type_id, self.share_type_id2]
|
|
self.assertEqual(
|
|
sorted(expected_share_types),
|
|
sorted(actual_share_types),
|
|
'Incorrect share types applied to share group %s. '
|
|
'Expected %s, got %s' % (
|
|
share_group['id'], expected_share_types, actual_share_types))
|
|
|
|
@testtools.skipUnless(
|
|
CONF.share.default_share_type_name, "Only if defaults are defined.")
|
|
@tc.attr(base.TAG_POSITIVE, base.TAG_API_WITH_BACKEND)
|
|
def test_default_share_group_type_applied(self):
|
|
default_type = self.shares_v2_client.get_default_share_group_type()
|
|
default_share_types = default_type['share_types']
|
|
|
|
share_group = self.create_share_group(
|
|
cleanup_in_class=False,
|
|
share_type_ids=default_share_types,
|
|
version=constants.MIN_SHARE_GROUP_MICROVERSION)
|
|
|
|
keys = set(share_group.keys())
|
|
self.assertTrue(
|
|
constants.SHARE_GROUP_DETAIL_REQUIRED_KEYS.issubset(keys),
|
|
'At least one expected element missing from share group '
|
|
'response. Expected %(expected)s, got %(actual)s.' % {
|
|
"expected": constants.SHARE_GROUP_DETAIL_REQUIRED_KEYS,
|
|
"actual": keys})
|
|
|
|
actual_sg_type = share_group['share_group_type_id']
|
|
expected_sg_type = default_type['id']
|
|
self.assertEqual(
|
|
expected_sg_type, actual_sg_type,
|
|
'Incorrect share group type applied to share group %s. '
|
|
'Expected %s, got %s' % (
|
|
share_group['id'], expected_sg_type, actual_sg_type))
|
|
|
|
@testtools.skipUnless(
|
|
CONF.share.multitenancy_enabled, "Only for multitenancy.")
|
|
@tc.attr(base.TAG_POSITIVE, base.TAG_API_WITH_BACKEND)
|
|
def test_create_sg_from_snapshot_verify_share_server_information_min(self):
|
|
# Create a share group
|
|
orig_sg = self.create_share_group(
|
|
share_group_type_id=self.sg_type_id,
|
|
cleanup_in_class=False,
|
|
share_type_ids=[self.share_type_id],
|
|
version=constants.MIN_SHARE_GROUP_MICROVERSION)
|
|
|
|
# Get latest share group information
|
|
orig_sg = self.shares_v2_client.get_share_group(
|
|
orig_sg['id'], version=constants.MIN_SHARE_GROUP_MICROVERSION)
|
|
|
|
# Assert share server information
|
|
self.assertIsNotNone(orig_sg['share_network_id'])
|
|
self.assertIsNotNone(orig_sg['share_server_id'])
|
|
|
|
sg_snapshot = self.create_share_group_snapshot_wait_for_active(
|
|
orig_sg['id'], cleanup_in_class=False,
|
|
version=constants.MIN_SHARE_GROUP_MICROVERSION)
|
|
new_sg = self.create_share_group(
|
|
share_group_type_id=self.sg_type_id,
|
|
cleanup_in_class=False,
|
|
version=constants.MIN_SHARE_GROUP_MICROVERSION,
|
|
source_share_group_snapshot_id=sg_snapshot['id'])
|
|
|
|
# Assert share server information
|
|
self.assertEqual(
|
|
orig_sg['share_network_id'], new_sg['share_network_id'])
|
|
self.assertEqual(
|
|
orig_sg['share_server_id'], new_sg['share_server_id'])
|
|
|
|
@tc.attr(base.TAG_POSITIVE, base.TAG_API_WITH_BACKEND)
|
|
def test_create_sg_with_sg_type_but_without_any_group_specs(self):
|
|
# Create share group type not specifying any group specs
|
|
sg_type = self.create_share_group_type(
|
|
name=data_utils.rand_name("tempest-manila"),
|
|
share_types=[self.share_type_id],
|
|
group_specs={},
|
|
cleanup_in_class=False)
|
|
|
|
# Create share group, it should be created always, because we do not
|
|
# restrict choice anyhow.
|
|
self.create_share_group(
|
|
share_type_ids=[self.share_type_id],
|
|
share_group_type_id=sg_type['id'],
|
|
cleanup_in_class=False)
|