summaryrefslogtreecommitdiff
path: root/cinderclient/tests/unit/v3/test_shell.py
diff options
context:
space:
mode:
Diffstat (limited to 'cinderclient/tests/unit/v3/test_shell.py')
-rw-r--r--cinderclient/tests/unit/v3/test_shell.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/cinderclient/tests/unit/v3/test_shell.py b/cinderclient/tests/unit/v3/test_shell.py
index ae15587..cdc70e9 100644
--- a/cinderclient/tests/unit/v3/test_shell.py
+++ b/cinderclient/tests/unit/v3/test_shell.py
@@ -51,6 +51,7 @@ from cinderclient import client
from cinderclient import exceptions
from cinderclient import shell
from cinderclient import utils as cinderclient_utils
+from cinderclient.v3 import attachments
from cinderclient.v3 import volume_snapshots
from cinderclient.v3 import volumes
@@ -336,6 +337,21 @@ class ShellTest(utils.TestCase):
self.run_command(command)
self.assert_called('GET', '/attachments%s' % expected)
+ @mock.patch('cinderclient.utils.print_list')
+ @mock.patch.object(cinderclient.v3.attachments.VolumeAttachmentManager,
+ 'list')
+ def test_attachment_list_setattr(self, mock_list, mock_print):
+ command = '--os-volume-api-version 3.27 attachment-list '
+ fake_attachment = [attachments.VolumeAttachment(mock.ANY, attachment)
+ for attachment in fakes.fake_attachment_list['attachments']]
+ mock_list.return_value = fake_attachment
+ self.run_command(command)
+ for attach in fake_attachment:
+ setattr(attach, 'server_id', getattr(attach, 'instance'))
+ columns = ['ID', 'Volume ID', 'Status', 'Server ID']
+ mock_print.assert_called_once_with(fake_attachment, columns,
+ sortby_index=0)
+
def test_revert_to_snapshot(self):
original = cinderclient_utils.find_resource