ee15891b5d
Share instance show query need additional key 'updated_at'. Related-Bug: #1965122 Depends-On: Ia69f3615d82e0044e3e9f81556dc8355637ef146 Change-Id: I1dbeee78c864067b8618b76a2929a112bef148e1
130 lines
5.5 KiB
Python
130 lines
5.5 KiB
Python
# Copyright 2015 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.
|
|
|
|
import ddt
|
|
from tempest.lib import decorators
|
|
from testtools import testcase as tc
|
|
|
|
from manila_tempest_tests.tests.api import base
|
|
from manila_tempest_tests import utils
|
|
|
|
|
|
@ddt.ddt
|
|
class ShareInstancesTest(base.BaseSharesAdminTest):
|
|
|
|
@classmethod
|
|
def resource_setup(cls):
|
|
super(ShareInstancesTest, cls).resource_setup()
|
|
# create share type
|
|
cls.share_type = cls.create_share_type()
|
|
cls.share_type_id = cls.share_type['id']
|
|
# create share
|
|
cls.share = cls.create_share(share_type_id=cls.share_type_id)
|
|
|
|
@decorators.idempotent_id('b5211759-17ab-4806-a58c-c65bc8a06087')
|
|
@tc.attr(base.TAG_POSITIVE, base.TAG_API_WITH_BACKEND)
|
|
def test_get_instances_of_share_v2_3(self):
|
|
"""Test that we get only the 1 share instance back for the share."""
|
|
share_instances = self.shares_v2_client.get_instances_of_share(
|
|
self.share['id'], version='2.3'
|
|
)['share_instances']
|
|
|
|
self.assertEqual(1, len(share_instances),
|
|
'Too many share instances found; expected 1, '
|
|
'found %s' % len(share_instances))
|
|
|
|
si = share_instances[0]
|
|
self.assertEqual(self.share['id'], si['share_id'],
|
|
'Share instance %s has incorrect share id value; '
|
|
'expected %s, got %s.' % (si['id'],
|
|
self.share['id'],
|
|
si['share_id']))
|
|
|
|
@decorators.idempotent_id('b2d8ccba-5973-4e72-b3df-52555ce40b4f')
|
|
@tc.attr(base.TAG_POSITIVE, base.TAG_API_WITH_BACKEND)
|
|
def test_list_share_instances_v2_3(self):
|
|
"""Test that we list the share instance back."""
|
|
share_instances = self.shares_v2_client.list_share_instances(
|
|
version='2.3'
|
|
)['share_instances']
|
|
|
|
share_ids = [si['share_id'] for si in share_instances]
|
|
|
|
msg = 'Share instance for share %s was not found.' % self.share['id']
|
|
self.assertIn(self.share['id'], share_ids, msg)
|
|
|
|
@decorators.idempotent_id('d4b2544a-96ce-41ed-8b8e-e46ceef91462')
|
|
@tc.attr(base.TAG_POSITIVE, base.TAG_API_WITH_BACKEND)
|
|
@ddt.data('2.3', '2.9', '2.10', '2.30', '2.54')
|
|
def test_get_share_instance(self, version):
|
|
"""Test that we get the proper keys back for the instance."""
|
|
utils.check_skip_if_microversion_not_supported(version)
|
|
|
|
share_instances = self.shares_v2_client.get_instances_of_share(
|
|
self.share['id'], version=version,
|
|
)['share_instances']
|
|
|
|
si = self.shares_v2_client.get_share_instance(
|
|
share_instances[0]['id'], version=version)['share_instance']
|
|
|
|
expected_keys = [
|
|
'host', 'share_id', 'id', 'share_network_id', 'status',
|
|
'availability_zone', 'share_server_id', 'created_at',
|
|
]
|
|
if utils.is_microversion_lt(version, '2.9'):
|
|
expected_keys.extend(["export_location", "export_locations"])
|
|
if utils.is_microversion_ge(version, '2.10'):
|
|
expected_keys.append("access_rules_status")
|
|
if utils.is_microversion_ge(version, '2.11'):
|
|
expected_keys.append("replica_state")
|
|
if utils.is_microversion_ge(version, '2.22'):
|
|
expected_keys.append("share_type_id")
|
|
if utils.is_microversion_ge(version, '2.30'):
|
|
expected_keys.append("cast_rules_to_readonly")
|
|
if utils.is_microversion_ge(version, '2.54'):
|
|
expected_keys.append("progress")
|
|
if utils.is_microversion_ge(version, '2.71'):
|
|
expected_keys.append("updated_at")
|
|
expected_keys = sorted(expected_keys)
|
|
actual_keys = sorted(si.keys())
|
|
self.assertEqual(expected_keys, actual_keys,
|
|
'Share instance %s returned incorrect keys; '
|
|
'expected %s, got %s.' % (
|
|
si['id'], expected_keys, actual_keys))
|
|
|
|
@ddt.data('path', 'id')
|
|
@decorators.idempotent_id('c27b415d-341c-42f0-a269-2c94f69fbee1')
|
|
@tc.attr(base.TAG_POSITIVE, base.TAG_API_WITH_BACKEND)
|
|
@utils.skip_if_microversion_not_supported("2.35")
|
|
def test_list_share_instances_with_export_location_path_and_id(
|
|
self, export_location_type):
|
|
share_instances_except = (
|
|
self.shares_v2_client.get_instances_of_share(
|
|
self.share['id']))['share_instances']
|
|
export_locations = (
|
|
self.shares_v2_client.list_share_instance_export_locations(
|
|
share_instances_except[0]['id']))['export_locations']
|
|
|
|
filters = {
|
|
'export_location_' + export_location_type:
|
|
export_locations[0][export_location_type],
|
|
}
|
|
share_instances = self.shares_v2_client.list_share_instances(
|
|
params=filters)['share_instances']
|
|
|
|
self.assertEqual(1, len(share_instances))
|
|
self.assertEqual(share_instances_except[0]['id'],
|
|
share_instances[0]['id'])
|