| # Copyright 2012 OpenStack Foundation |
| # 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.volume import base |
| from tempest.common import waiters |
| from tempest import config |
| from tempest.lib.common.utils import data_utils |
| from tempest.lib.common.utils import test_utils |
| from tempest.lib import decorators |
| from tempest.lib import exceptions |
| from tempest import test |
| |
| CONF = config.CONF |
| |
| |
| class VolumesV2ActionsTest(base.BaseVolumeTest): |
| |
| @classmethod |
| def setup_clients(cls): |
| super(VolumesV2ActionsTest, cls).setup_clients() |
| cls.client = cls.volumes_client |
| if CONF.service_available.glance: |
| # Check if glance v1 is available to determine which client to use. |
| if CONF.image_feature_enabled.api_v1: |
| cls.image_client = cls.os.image_client |
| elif CONF.image_feature_enabled.api_v2: |
| cls.image_client = cls.os.image_client_v2 |
| else: |
| raise exceptions.InvalidConfiguration( |
| 'Either api_v1 or api_v2 must be True in ' |
| '[image-feature-enabled].') |
| |
| @classmethod |
| def resource_setup(cls): |
| super(VolumesV2ActionsTest, cls).resource_setup() |
| |
| # Create a test shared volume for attach/detach tests |
| cls.volume = cls.create_volume() |
| |
| @decorators.idempotent_id('fff42874-7db5-4487-a8e1-ddda5fb5288d') |
| @test.attr(type='smoke') |
| @test.services('compute') |
| def test_attach_detach_volume_to_instance(self): |
| # Create a server |
| server = self.create_server(wait_until='ACTIVE') |
| # Volume is attached and detached successfully from an instance |
| self.client.attach_volume(self.volume['id'], |
| instance_uuid=server['id'], |
| mountpoint='/dev/%s' % |
| CONF.compute.volume_device_name) |
| waiters.wait_for_volume_resource_status(self.client, |
| self.volume['id'], 'in-use') |
| self.client.detach_volume(self.volume['id']) |
| waiters.wait_for_volume_resource_status(self.client, |
| self.volume['id'], 'available') |
| |
| @decorators.idempotent_id('63e21b4c-0a0c-41f6-bfc3-7c2816815599') |
| def test_volume_bootable(self): |
| # Verify that a volume bootable flag is retrieved |
| for bool_bootable in [True, False]: |
| self.client.set_bootable_volume(self.volume['id'], |
| bootable=bool_bootable) |
| fetched_volume = self.client.show_volume( |
| self.volume['id'])['volume'] |
| # Get Volume information |
| # NOTE(masayukig): 'bootable' is "true" or "false" in the current |
| # cinder implementation. So we need to cast boolean values to str |
| # and make it lower to compare here. |
| self.assertEqual(str(bool_bootable).lower(), |
| fetched_volume['bootable']) |
| |
| @decorators.idempotent_id('9516a2c8-9135-488c-8dd6-5677a7e5f371') |
| @test.services('compute') |
| def test_get_volume_attachment(self): |
| # Create a server |
| server = self.create_server(wait_until='ACTIVE') |
| # Verify that a volume's attachment information is retrieved |
| self.client.attach_volume(self.volume['id'], |
| instance_uuid=server['id'], |
| mountpoint='/dev/%s' % |
| CONF.compute.volume_device_name) |
| waiters.wait_for_volume_resource_status(self.client, self.volume['id'], |
| 'in-use') |
| self.addCleanup(waiters.wait_for_volume_resource_status, self.client, |
| self.volume['id'], 'available') |
| self.addCleanup(self.client.detach_volume, self.volume['id']) |
| volume = self.client.show_volume(self.volume['id'])['volume'] |
| self.assertIn('attachments', volume) |
| attachment = volume['attachments'][0] |
| |
| self.assertEqual('/dev/%s' % |
| CONF.compute.volume_device_name, |
| attachment['device']) |
| self.assertEqual(server['id'], attachment['server_id']) |
| self.assertEqual(self.volume['id'], attachment['id']) |
| self.assertEqual(self.volume['id'], attachment['volume_id']) |
| |
| @decorators.idempotent_id('d8f1ca95-3d5b-44a3-b8ca-909691c9532d') |
| @test.services('image') |
| def test_volume_upload(self): |
| # NOTE(gfidente): the volume uploaded in Glance comes from setUpClass, |
| # it is shared with the other tests. After it is uploaded in Glance, |
| # there is no way to delete it from Cinder, so we delete it from Glance |
| # using the Glance image_client and from Cinder via tearDownClass. |
| image_name = data_utils.rand_name(self.__class__.__name__ + '-Image') |
| body = self.client.upload_volume( |
| self.volume['id'], image_name=image_name, |
| disk_format=CONF.volume.disk_format)['os-volume_upload_image'] |
| image_id = body["image_id"] |
| self.addCleanup(test_utils.call_and_ignore_notfound_exc, |
| self.image_client.delete_image, |
| image_id) |
| waiters.wait_for_image_status(self.image_client, image_id, 'active') |
| waiters.wait_for_volume_resource_status(self.client, |
| self.volume['id'], 'available') |
| |
| @decorators.idempotent_id('92c4ef64-51b2-40c0-9f7e-4749fbaaba33') |
| def test_reserve_unreserve_volume(self): |
| # Mark volume as reserved. |
| body = self.client.reserve_volume(self.volume['id']) |
| # To get the volume info |
| body = self.client.show_volume(self.volume['id'])['volume'] |
| self.assertIn('attaching', body['status']) |
| # Unmark volume as reserved. |
| body = self.client.unreserve_volume(self.volume['id']) |
| # To get the volume info |
| body = self.client.show_volume(self.volume['id'])['volume'] |
| self.assertIn('available', body['status']) |
| |
| @decorators.idempotent_id('fff74e1e-5bd3-4b33-9ea9-24c103bc3f59') |
| def test_volume_readonly_update(self): |
| for readonly in [True, False]: |
| # Update volume readonly |
| self.client.update_volume_readonly(self.volume['id'], |
| readonly=readonly) |
| # Get Volume information |
| fetched_volume = self.client.show_volume( |
| self.volume['id'])['volume'] |
| # NOTE(masayukig): 'readonly' is "True" or "False" in the current |
| # cinder implementation. So we need to cast boolean values to str |
| # to compare here. |
| self.assertEqual(str(readonly), |
| fetched_volume['metadata']['readonly']) |
| |
| |
| class VolumesV1ActionsTest(VolumesV2ActionsTest): |
| _api_version = 1 |