Merge "Support error handling for delete commands in volume v1"
This commit is contained in:
commit
f5c09fe246
@ -13,7 +13,10 @@
|
|||||||
# under the License.
|
# under the License.
|
||||||
#
|
#
|
||||||
|
|
||||||
|
import copy
|
||||||
import mock
|
import mock
|
||||||
|
import random
|
||||||
|
import uuid
|
||||||
|
|
||||||
from openstackclient.tests.unit import fakes
|
from openstackclient.tests.unit import fakes
|
||||||
from openstackclient.tests.unit.identity.v2_0 import fakes as identity_fakes
|
from openstackclient.tests.unit.identity.v2_0 import fakes as identity_fakes
|
||||||
@ -234,6 +237,159 @@ class FakeService(object):
|
|||||||
return mock.MagicMock(side_effect=services)
|
return mock.MagicMock(side_effect=services)
|
||||||
|
|
||||||
|
|
||||||
|
class FakeQos(object):
|
||||||
|
"""Fake one or more Qos specification."""
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
def create_one_qos(attrs=None):
|
||||||
|
"""Create a fake Qos specification.
|
||||||
|
|
||||||
|
:param Dictionary attrs:
|
||||||
|
A dictionary with all attributes
|
||||||
|
:return:
|
||||||
|
A FakeResource object with id, name, consumer, etc.
|
||||||
|
"""
|
||||||
|
attrs = attrs or {}
|
||||||
|
|
||||||
|
# Set default attributes.
|
||||||
|
qos_info = {
|
||||||
|
"id": 'qos-id-' + uuid.uuid4().hex,
|
||||||
|
"name": 'qos-name-' + uuid.uuid4().hex,
|
||||||
|
"consumer": 'front-end',
|
||||||
|
"specs": {"foo": "bar", "iops": "9001"},
|
||||||
|
}
|
||||||
|
|
||||||
|
# Overwrite default attributes.
|
||||||
|
qos_info.update(attrs)
|
||||||
|
|
||||||
|
qos = fakes.FakeResource(
|
||||||
|
info=copy.deepcopy(qos_info),
|
||||||
|
loaded=True)
|
||||||
|
return qos
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
def create_qoses(attrs=None, count=2):
|
||||||
|
"""Create multiple fake Qos specifications.
|
||||||
|
|
||||||
|
:param Dictionary attrs:
|
||||||
|
A dictionary with all attributes
|
||||||
|
:param int count:
|
||||||
|
The number of Qos specifications to fake
|
||||||
|
:return:
|
||||||
|
A list of FakeResource objects faking the Qos specifications
|
||||||
|
"""
|
||||||
|
qoses = []
|
||||||
|
for i in range(0, count):
|
||||||
|
qos = FakeQos.create_one_qos(attrs)
|
||||||
|
qoses.append(qos)
|
||||||
|
|
||||||
|
return qoses
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
def get_qoses(qoses=None, count=2):
|
||||||
|
"""Get an iterable MagicMock object with a list of faked qoses.
|
||||||
|
|
||||||
|
If qoses list is provided, then initialize the Mock object with the
|
||||||
|
list. Otherwise create one.
|
||||||
|
|
||||||
|
:param List volumes:
|
||||||
|
A list of FakeResource objects faking qoses
|
||||||
|
:param Integer count:
|
||||||
|
The number of qoses to be faked
|
||||||
|
:return
|
||||||
|
An iterable Mock object with side_effect set to a list of faked
|
||||||
|
qoses
|
||||||
|
"""
|
||||||
|
if qoses is None:
|
||||||
|
qoses = FakeQos.create_qoses(count)
|
||||||
|
|
||||||
|
return mock.MagicMock(side_effect=qoses)
|
||||||
|
|
||||||
|
|
||||||
|
class FakeVolume(object):
|
||||||
|
"""Fake one or more volumes."""
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
def create_one_volume(attrs=None):
|
||||||
|
"""Create a fake volume.
|
||||||
|
|
||||||
|
:param Dictionary attrs:
|
||||||
|
A dictionary with all attributes of volume
|
||||||
|
:return:
|
||||||
|
A FakeResource object with id, name, status, etc.
|
||||||
|
"""
|
||||||
|
attrs = attrs or {}
|
||||||
|
|
||||||
|
# Set default attribute
|
||||||
|
volume_info = {
|
||||||
|
'id': 'volume-id' + uuid.uuid4().hex,
|
||||||
|
'name': 'volume-name' + uuid.uuid4().hex,
|
||||||
|
'description': 'description' + uuid.uuid4().hex,
|
||||||
|
'status': random.choice(['available', 'in_use']),
|
||||||
|
'size': random.randint(1, 20),
|
||||||
|
'volume_type':
|
||||||
|
random.choice(['fake_lvmdriver-1', 'fake_lvmdriver-2']),
|
||||||
|
'bootable':
|
||||||
|
random.randint(0, 1),
|
||||||
|
'metadata': {
|
||||||
|
'key' + uuid.uuid4().hex: 'val' + uuid.uuid4().hex,
|
||||||
|
'key' + uuid.uuid4().hex: 'val' + uuid.uuid4().hex,
|
||||||
|
'key' + uuid.uuid4().hex: 'val' + uuid.uuid4().hex},
|
||||||
|
'snapshot_id': random.randint(1, 5),
|
||||||
|
'availability_zone': 'zone' + uuid.uuid4().hex,
|
||||||
|
'attachments': [{
|
||||||
|
'device': '/dev/' + uuid.uuid4().hex,
|
||||||
|
'server_id': uuid.uuid4().hex,
|
||||||
|
}, ],
|
||||||
|
}
|
||||||
|
|
||||||
|
# Overwrite default attributes if there are some attributes set
|
||||||
|
volume_info.update(attrs)
|
||||||
|
|
||||||
|
volume = fakes.FakeResource(
|
||||||
|
None,
|
||||||
|
volume_info,
|
||||||
|
loaded=True)
|
||||||
|
return volume
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
def create_volumes(attrs=None, count=2):
|
||||||
|
"""Create multiple fake volumes.
|
||||||
|
|
||||||
|
:param Dictionary attrs:
|
||||||
|
A dictionary with all attributes of volume
|
||||||
|
:param Integer count:
|
||||||
|
The number of volumes to be faked
|
||||||
|
:return:
|
||||||
|
A list of FakeResource objects
|
||||||
|
"""
|
||||||
|
volumes = []
|
||||||
|
for n in range(0, count):
|
||||||
|
volumes.append(FakeVolume.create_one_volume(attrs))
|
||||||
|
|
||||||
|
return volumes
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
def get_volumes(volumes=None, count=2):
|
||||||
|
"""Get an iterable MagicMock object with a list of faked volumes.
|
||||||
|
|
||||||
|
If volumes list is provided, then initialize the Mock object with the
|
||||||
|
list. Otherwise create one.
|
||||||
|
|
||||||
|
:param List volumes:
|
||||||
|
A list of FakeResource objects faking volumes
|
||||||
|
:param Integer count:
|
||||||
|
The number of volumes to be faked
|
||||||
|
:return
|
||||||
|
An iterable Mock object with side_effect set to a list of faked
|
||||||
|
volumes
|
||||||
|
"""
|
||||||
|
if volumes is None:
|
||||||
|
volumes = FakeVolume.create_volumes(count)
|
||||||
|
|
||||||
|
return mock.MagicMock(side_effect=volumes)
|
||||||
|
|
||||||
|
|
||||||
class FakeImagev1Client(object):
|
class FakeImagev1Client(object):
|
||||||
|
|
||||||
def __init__(self, **kwargs):
|
def __init__(self, **kwargs):
|
||||||
|
@ -14,7 +14,10 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
import copy
|
import copy
|
||||||
|
import mock
|
||||||
|
from mock import call
|
||||||
|
|
||||||
|
from osc_lib import exceptions
|
||||||
from osc_lib import utils
|
from osc_lib import utils
|
||||||
|
|
||||||
from openstackclient.tests.unit import fakes
|
from openstackclient.tests.unit import fakes
|
||||||
@ -188,62 +191,106 @@ class TestQosCreate(TestQos):
|
|||||||
|
|
||||||
class TestQosDelete(TestQos):
|
class TestQosDelete(TestQos):
|
||||||
|
|
||||||
|
qos_specs = volume_fakes.FakeQos.create_qoses(count=2)
|
||||||
|
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
super(TestQosDelete, self).setUp()
|
super(TestQosDelete, self).setUp()
|
||||||
|
|
||||||
self.qos_mock.get.return_value = fakes.FakeResource(
|
self.qos_mock.get = (
|
||||||
None,
|
volume_fakes.FakeQos.get_qoses(self.qos_specs))
|
||||||
copy.deepcopy(volume_fakes.QOS),
|
|
||||||
loaded=True,
|
|
||||||
)
|
|
||||||
|
|
||||||
# Get the command object to test
|
# Get the command object to test
|
||||||
self.cmd = qos_specs.DeleteQos(self.app, None)
|
self.cmd = qos_specs.DeleteQos(self.app, None)
|
||||||
|
|
||||||
def test_qos_delete_with_id(self):
|
def test_qos_delete_with_id(self):
|
||||||
arglist = [
|
arglist = [
|
||||||
volume_fakes.qos_id
|
self.qos_specs[0].id
|
||||||
]
|
]
|
||||||
verifylist = [
|
verifylist = [
|
||||||
('qos_specs', [volume_fakes.qos_id])
|
('qos_specs', [self.qos_specs[0].id])
|
||||||
]
|
]
|
||||||
parsed_args = self.check_parser(self.cmd, arglist, verifylist)
|
parsed_args = self.check_parser(self.cmd, arglist, verifylist)
|
||||||
|
|
||||||
result = self.cmd.take_action(parsed_args)
|
result = self.cmd.take_action(parsed_args)
|
||||||
|
|
||||||
self.qos_mock.delete.assert_called_with(volume_fakes.qos_id, False)
|
self.qos_mock.delete.assert_called_with(self.qos_specs[0].id, False)
|
||||||
self.assertIsNone(result)
|
self.assertIsNone(result)
|
||||||
|
|
||||||
def test_qos_delete_with_name(self):
|
def test_qos_delete_with_name(self):
|
||||||
arglist = [
|
arglist = [
|
||||||
volume_fakes.qos_name
|
self.qos_specs[0].name
|
||||||
]
|
]
|
||||||
verifylist = [
|
verifylist = [
|
||||||
('qos_specs', [volume_fakes.qos_name])
|
('qos_specs', [self.qos_specs[0].name])
|
||||||
]
|
]
|
||||||
parsed_args = self.check_parser(self.cmd, arglist, verifylist)
|
parsed_args = self.check_parser(self.cmd, arglist, verifylist)
|
||||||
|
|
||||||
result = self.cmd.take_action(parsed_args)
|
result = self.cmd.take_action(parsed_args)
|
||||||
|
|
||||||
self.qos_mock.delete.assert_called_with(volume_fakes.qos_id, False)
|
self.qos_mock.delete.assert_called_with(self.qos_specs[0].id, False)
|
||||||
self.assertIsNone(result)
|
self.assertIsNone(result)
|
||||||
|
|
||||||
def test_qos_delete_with_force(self):
|
def test_qos_delete_with_force(self):
|
||||||
arglist = [
|
arglist = [
|
||||||
'--force',
|
'--force',
|
||||||
volume_fakes.qos_id
|
self.qos_specs[0].id
|
||||||
]
|
]
|
||||||
verifylist = [
|
verifylist = [
|
||||||
('force', True),
|
('force', True),
|
||||||
('qos_specs', [volume_fakes.qos_id])
|
('qos_specs', [self.qos_specs[0].id])
|
||||||
]
|
]
|
||||||
parsed_args = self.check_parser(self.cmd, arglist, verifylist)
|
parsed_args = self.check_parser(self.cmd, arglist, verifylist)
|
||||||
|
|
||||||
result = self.cmd.take_action(parsed_args)
|
result = self.cmd.take_action(parsed_args)
|
||||||
|
|
||||||
self.qos_mock.delete.assert_called_with(volume_fakes.qos_id, True)
|
self.qos_mock.delete.assert_called_with(self.qos_specs[0].id, True)
|
||||||
self.assertIsNone(result)
|
self.assertIsNone(result)
|
||||||
|
|
||||||
|
def test_delete_multiple_qoses(self):
|
||||||
|
arglist = []
|
||||||
|
for q in self.qos_specs:
|
||||||
|
arglist.append(q.id)
|
||||||
|
verifylist = [
|
||||||
|
('qos_specs', arglist),
|
||||||
|
]
|
||||||
|
|
||||||
|
parsed_args = self.check_parser(self.cmd, arglist, verifylist)
|
||||||
|
result = self.cmd.take_action(parsed_args)
|
||||||
|
|
||||||
|
calls = []
|
||||||
|
for q in self.qos_specs:
|
||||||
|
calls.append(call(q.id, False))
|
||||||
|
self.qos_mock.delete.assert_has_calls(calls)
|
||||||
|
self.assertIsNone(result)
|
||||||
|
|
||||||
|
def test_delete_multiple_qoses_with_exception(self):
|
||||||
|
arglist = [
|
||||||
|
self.qos_specs[0].id,
|
||||||
|
'unexist_qos',
|
||||||
|
]
|
||||||
|
verifylist = [
|
||||||
|
('qos_specs', arglist),
|
||||||
|
]
|
||||||
|
|
||||||
|
parsed_args = self.check_parser(self.cmd, arglist, verifylist)
|
||||||
|
|
||||||
|
find_mock_result = [self.qos_specs[0], exceptions.CommandError]
|
||||||
|
with mock.patch.object(utils, 'find_resource',
|
||||||
|
side_effect=find_mock_result) as find_mock:
|
||||||
|
try:
|
||||||
|
self.cmd.take_action(parsed_args)
|
||||||
|
self.fail('CommandError should be raised.')
|
||||||
|
except exceptions.CommandError as e:
|
||||||
|
self.assertEqual(
|
||||||
|
'1 of 2 QoS specifications failed to delete.', str(e))
|
||||||
|
|
||||||
|
find_mock.assert_any_call(self.qos_mock, self.qos_specs[0].id)
|
||||||
|
find_mock.assert_any_call(self.qos_mock, 'unexist_qos')
|
||||||
|
|
||||||
|
self.assertEqual(2, find_mock.call_count)
|
||||||
|
self.qos_mock.delete.assert_called_once_with(
|
||||||
|
self.qos_specs[0].id, False
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
class TestQosDisassociate(TestQos):
|
class TestQosDisassociate(TestQos):
|
||||||
|
|
||||||
|
@ -15,6 +15,10 @@
|
|||||||
|
|
||||||
import copy
|
import copy
|
||||||
import mock
|
import mock
|
||||||
|
from mock import call
|
||||||
|
|
||||||
|
from osc_lib import exceptions
|
||||||
|
from osc_lib import utils
|
||||||
|
|
||||||
from openstackclient.tests.unit import fakes
|
from openstackclient.tests.unit import fakes
|
||||||
from openstackclient.tests.unit.identity.v2_0 import fakes as identity_fakes
|
from openstackclient.tests.unit.identity.v2_0 import fakes as identity_fakes
|
||||||
@ -43,6 +47,14 @@ class TestVolume(volume_fakes.TestVolumev1):
|
|||||||
self.images_mock = self.app.client_manager.image.images
|
self.images_mock = self.app.client_manager.image.images
|
||||||
self.images_mock.reset_mock()
|
self.images_mock.reset_mock()
|
||||||
|
|
||||||
|
def setup_volumes_mock(self, count):
|
||||||
|
volumes = volume_fakes.FakeVolume.create_volumes(count=count)
|
||||||
|
|
||||||
|
self.volumes_mock.get = volume_fakes.FakeVolume.get_volumes(
|
||||||
|
volumes,
|
||||||
|
0)
|
||||||
|
return volumes
|
||||||
|
|
||||||
|
|
||||||
# TODO(dtroyer): The volume create tests are incomplete, only the minimal
|
# TODO(dtroyer): The volume create tests are incomplete, only the minimal
|
||||||
# options and the options that require additional processing
|
# options and the options that require additional processing
|
||||||
@ -397,6 +409,97 @@ class TestVolumeCreate(TestVolume):
|
|||||||
self.assertEqual(self.datalist, data)
|
self.assertEqual(self.datalist, data)
|
||||||
|
|
||||||
|
|
||||||
|
class TestVolumeDelete(TestVolume):
|
||||||
|
|
||||||
|
def setUp(self):
|
||||||
|
super(TestVolumeDelete, self).setUp()
|
||||||
|
|
||||||
|
self.volumes_mock.delete.return_value = None
|
||||||
|
|
||||||
|
# Get the command object to mock
|
||||||
|
self.cmd = volume.DeleteVolume(self.app, None)
|
||||||
|
|
||||||
|
def test_volume_delete_one_volume(self):
|
||||||
|
volumes = self.setup_volumes_mock(count=1)
|
||||||
|
|
||||||
|
arglist = [
|
||||||
|
volumes[0].id
|
||||||
|
]
|
||||||
|
verifylist = [
|
||||||
|
("force", False),
|
||||||
|
("volumes", [volumes[0].id]),
|
||||||
|
]
|
||||||
|
parsed_args = self.check_parser(self.cmd, arglist, verifylist)
|
||||||
|
|
||||||
|
result = self.cmd.take_action(parsed_args)
|
||||||
|
|
||||||
|
self.volumes_mock.delete.assert_called_once_with(volumes[0].id)
|
||||||
|
self.assertIsNone(result)
|
||||||
|
|
||||||
|
def test_volume_delete_multi_volumes(self):
|
||||||
|
volumes = self.setup_volumes_mock(count=3)
|
||||||
|
|
||||||
|
arglist = [v.id for v in volumes]
|
||||||
|
verifylist = [
|
||||||
|
('force', False),
|
||||||
|
('volumes', arglist),
|
||||||
|
]
|
||||||
|
parsed_args = self.check_parser(self.cmd, arglist, verifylist)
|
||||||
|
|
||||||
|
result = self.cmd.take_action(parsed_args)
|
||||||
|
|
||||||
|
calls = [call(v.id) for v in volumes]
|
||||||
|
self.volumes_mock.delete.assert_has_calls(calls)
|
||||||
|
self.assertIsNone(result)
|
||||||
|
|
||||||
|
def test_volume_delete_multi_volumes_with_exception(self):
|
||||||
|
volumes = self.setup_volumes_mock(count=2)
|
||||||
|
|
||||||
|
arglist = [
|
||||||
|
volumes[0].id,
|
||||||
|
'unexist_volume',
|
||||||
|
]
|
||||||
|
verifylist = [
|
||||||
|
('force', False),
|
||||||
|
('volumes', arglist),
|
||||||
|
]
|
||||||
|
parsed_args = self.check_parser(self.cmd, arglist, verifylist)
|
||||||
|
|
||||||
|
find_mock_result = [volumes[0], exceptions.CommandError]
|
||||||
|
with mock.patch.object(utils, 'find_resource',
|
||||||
|
side_effect=find_mock_result) as find_mock:
|
||||||
|
try:
|
||||||
|
self.cmd.take_action(parsed_args)
|
||||||
|
self.fail('CommandError should be raised.')
|
||||||
|
except exceptions.CommandError as e:
|
||||||
|
self.assertEqual('1 of 2 volumes failed to delete.',
|
||||||
|
str(e))
|
||||||
|
|
||||||
|
find_mock.assert_any_call(self.volumes_mock, volumes[0].id)
|
||||||
|
find_mock.assert_any_call(self.volumes_mock, 'unexist_volume')
|
||||||
|
|
||||||
|
self.assertEqual(2, find_mock.call_count)
|
||||||
|
self.volumes_mock.delete.assert_called_once_with(volumes[0].id)
|
||||||
|
|
||||||
|
def test_volume_delete_with_force(self):
|
||||||
|
volumes = self.setup_volumes_mock(count=1)
|
||||||
|
|
||||||
|
arglist = [
|
||||||
|
'--force',
|
||||||
|
volumes[0].id,
|
||||||
|
]
|
||||||
|
verifylist = [
|
||||||
|
('force', True),
|
||||||
|
('volumes', [volumes[0].id]),
|
||||||
|
]
|
||||||
|
parsed_args = self.check_parser(self.cmd, arglist, verifylist)
|
||||||
|
|
||||||
|
result = self.cmd.take_action(parsed_args)
|
||||||
|
|
||||||
|
self.volumes_mock.force_delete.assert_called_once_with(volumes[0].id)
|
||||||
|
self.assertIsNone(result)
|
||||||
|
|
||||||
|
|
||||||
class TestVolumeList(TestVolume):
|
class TestVolumeList(TestVolume):
|
||||||
|
|
||||||
columns = (
|
columns = (
|
||||||
|
@ -19,12 +19,16 @@ import copy
|
|||||||
import logging
|
import logging
|
||||||
|
|
||||||
from osc_lib.command import command
|
from osc_lib.command import command
|
||||||
|
from osc_lib import exceptions
|
||||||
from osc_lib import utils
|
from osc_lib import utils
|
||||||
import six
|
import six
|
||||||
|
|
||||||
from openstackclient.i18n import _
|
from openstackclient.i18n import _
|
||||||
|
|
||||||
|
|
||||||
|
LOG = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
||||||
class CreateVolumeBackup(command.ShowOne):
|
class CreateVolumeBackup(command.ShowOne):
|
||||||
"""Create new volume backup"""
|
"""Create new volume backup"""
|
||||||
|
|
||||||
@ -100,10 +104,24 @@ class DeleteVolumeBackup(command.Command):
|
|||||||
|
|
||||||
def take_action(self, parsed_args):
|
def take_action(self, parsed_args):
|
||||||
volume_client = self.app.client_manager.volume
|
volume_client = self.app.client_manager.volume
|
||||||
for backup in parsed_args.backups:
|
result = 0
|
||||||
backup_id = utils.find_resource(volume_client.backups,
|
|
||||||
backup).id
|
for i in parsed_args.backups:
|
||||||
volume_client.backups.delete(backup_id)
|
try:
|
||||||
|
backup_id = utils.find_resource(
|
||||||
|
volume_client.backups, i).id
|
||||||
|
volume_client.backups.delete(backup_id)
|
||||||
|
except Exception as e:
|
||||||
|
result += 1
|
||||||
|
LOG.error(_("Failed to delete backup with "
|
||||||
|
"name or ID '%(backup)s': %(e)s"),
|
||||||
|
{'backup': i, 'e': e})
|
||||||
|
|
||||||
|
if result > 0:
|
||||||
|
total = len(parsed_args.backups)
|
||||||
|
msg = (_("%(result)s of %(total)s backups failed "
|
||||||
|
"to delete.") % {'result': result, 'total': total})
|
||||||
|
raise exceptions.CommandError(msg)
|
||||||
|
|
||||||
|
|
||||||
class DeleteBackup(DeleteVolumeBackup):
|
class DeleteBackup(DeleteVolumeBackup):
|
||||||
|
@ -15,14 +15,20 @@
|
|||||||
|
|
||||||
"""Volume v1 QoS action implementations"""
|
"""Volume v1 QoS action implementations"""
|
||||||
|
|
||||||
|
import logging
|
||||||
|
|
||||||
from osc_lib.cli import parseractions
|
from osc_lib.cli import parseractions
|
||||||
from osc_lib.command import command
|
from osc_lib.command import command
|
||||||
|
from osc_lib import exceptions
|
||||||
from osc_lib import utils
|
from osc_lib import utils
|
||||||
import six
|
import six
|
||||||
|
|
||||||
from openstackclient.i18n import _
|
from openstackclient.i18n import _
|
||||||
|
|
||||||
|
|
||||||
|
LOG = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
||||||
class AssociateQos(command.Command):
|
class AssociateQos(command.Command):
|
||||||
"""Associate a QoS specification to a volume type"""
|
"""Associate a QoS specification to a volume type"""
|
||||||
|
|
||||||
@ -113,9 +119,23 @@ class DeleteQos(command.Command):
|
|||||||
|
|
||||||
def take_action(self, parsed_args):
|
def take_action(self, parsed_args):
|
||||||
volume_client = self.app.client_manager.volume
|
volume_client = self.app.client_manager.volume
|
||||||
for qos in parsed_args.qos_specs:
|
result = 0
|
||||||
qos_spec = utils.find_resource(volume_client.qos_specs, qos)
|
|
||||||
volume_client.qos_specs.delete(qos_spec.id, parsed_args.force)
|
for i in parsed_args.qos_specs:
|
||||||
|
try:
|
||||||
|
qos_spec = utils.find_resource(volume_client.qos_specs, i)
|
||||||
|
volume_client.qos_specs.delete(qos_spec.id, parsed_args.force)
|
||||||
|
except Exception as e:
|
||||||
|
result += 1
|
||||||
|
LOG.error(_("Failed to delete QoS specification with "
|
||||||
|
"name or ID '%(qos)s': %(e)s"),
|
||||||
|
{'qos': i, 'e': e})
|
||||||
|
|
||||||
|
if result > 0:
|
||||||
|
total = len(parsed_args.qos_specs)
|
||||||
|
msg = (_("%(result)s of %(total)s QoS specifications failed"
|
||||||
|
" to delete.") % {'result': result, 'total': total})
|
||||||
|
raise exceptions.CommandError(msg)
|
||||||
|
|
||||||
|
|
||||||
class DisassociateQos(command.Command):
|
class DisassociateQos(command.Command):
|
||||||
|
@ -16,15 +16,20 @@
|
|||||||
"""Volume v1 Snapshot action implementations"""
|
"""Volume v1 Snapshot action implementations"""
|
||||||
|
|
||||||
import copy
|
import copy
|
||||||
|
import logging
|
||||||
|
|
||||||
from osc_lib.cli import parseractions
|
from osc_lib.cli import parseractions
|
||||||
from osc_lib.command import command
|
from osc_lib.command import command
|
||||||
|
from osc_lib import exceptions
|
||||||
from osc_lib import utils
|
from osc_lib import utils
|
||||||
import six
|
import six
|
||||||
|
|
||||||
from openstackclient.i18n import _
|
from openstackclient.i18n import _
|
||||||
|
|
||||||
|
|
||||||
|
LOG = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
||||||
class CreateSnapshot(command.ShowOne):
|
class CreateSnapshot(command.ShowOne):
|
||||||
"""Create new snapshot"""
|
"""Create new snapshot"""
|
||||||
|
|
||||||
@ -88,10 +93,24 @@ class DeleteSnapshot(command.Command):
|
|||||||
|
|
||||||
def take_action(self, parsed_args):
|
def take_action(self, parsed_args):
|
||||||
volume_client = self.app.client_manager.volume
|
volume_client = self.app.client_manager.volume
|
||||||
for snapshot in parsed_args.snapshots:
|
result = 0
|
||||||
snapshot_id = utils.find_resource(volume_client.volume_snapshots,
|
|
||||||
snapshot).id
|
for i in parsed_args.snapshots:
|
||||||
volume_client.volume_snapshots.delete(snapshot_id)
|
try:
|
||||||
|
snapshot_id = utils.find_resource(
|
||||||
|
volume_client.volume_snapshots, i).id
|
||||||
|
volume_client.volume_snapshots.delete(snapshot_id)
|
||||||
|
except Exception as e:
|
||||||
|
result += 1
|
||||||
|
LOG.error(_("Failed to delete snapshot with "
|
||||||
|
"name or ID '%(snapshot)s': %(e)s"),
|
||||||
|
{'snapshot': i, 'e': e})
|
||||||
|
|
||||||
|
if result > 0:
|
||||||
|
total = len(parsed_args.snapshots)
|
||||||
|
msg = (_("%(result)s of %(total)s snapshots failed "
|
||||||
|
"to delete.") % {'result': result, 'total': total})
|
||||||
|
raise exceptions.CommandError(msg)
|
||||||
|
|
||||||
|
|
||||||
class ListSnapshot(command.Lister):
|
class ListSnapshot(command.Lister):
|
||||||
|
@ -20,6 +20,7 @@ import logging
|
|||||||
|
|
||||||
from osc_lib.cli import parseractions
|
from osc_lib.cli import parseractions
|
||||||
from osc_lib.command import command
|
from osc_lib.command import command
|
||||||
|
from osc_lib import exceptions
|
||||||
from osc_lib import utils
|
from osc_lib import utils
|
||||||
import six
|
import six
|
||||||
|
|
||||||
@ -184,13 +185,27 @@ class DeleteVolume(command.Command):
|
|||||||
|
|
||||||
def take_action(self, parsed_args):
|
def take_action(self, parsed_args):
|
||||||
volume_client = self.app.client_manager.volume
|
volume_client = self.app.client_manager.volume
|
||||||
for volume in parsed_args.volumes:
|
result = 0
|
||||||
volume_obj = utils.find_resource(
|
|
||||||
volume_client.volumes, volume)
|
for i in parsed_args.volumes:
|
||||||
if parsed_args.force:
|
try:
|
||||||
volume_client.volumes.force_delete(volume_obj.id)
|
volume_obj = utils.find_resource(
|
||||||
else:
|
volume_client.volumes, i)
|
||||||
volume_client.volumes.delete(volume_obj.id)
|
if parsed_args.force:
|
||||||
|
volume_client.volumes.force_delete(volume_obj.id)
|
||||||
|
else:
|
||||||
|
volume_client.volumes.delete(volume_obj.id)
|
||||||
|
except Exception as e:
|
||||||
|
result += 1
|
||||||
|
LOG.error(_("Failed to delete volume with "
|
||||||
|
"name or ID '%(volume)s': %(e)s"),
|
||||||
|
{'volume': i, 'e': e})
|
||||||
|
|
||||||
|
if result > 0:
|
||||||
|
total = len(parsed_args.volumes)
|
||||||
|
msg = (_("%(result)s of %(total)s volumes failed "
|
||||||
|
"to delete.") % {'result': result, 'total': total})
|
||||||
|
raise exceptions.CommandError(msg)
|
||||||
|
|
||||||
|
|
||||||
class ListVolume(command.Lister):
|
class ListVolume(command.Lister):
|
||||||
|
Loading…
Reference in New Issue
Block a user