Merge "Handle 403 forbidden on download"
This commit is contained in:
@@ -283,7 +283,7 @@ def import_versioned_module(version, submodule=None):
|
||||
|
||||
def exit(msg='', exit_code=1):
|
||||
if msg:
|
||||
print(encodeutils.safe_decode(msg), file=sys.stderr)
|
||||
print_err(msg)
|
||||
sys.exit(exit_code)
|
||||
|
||||
|
||||
|
@@ -872,6 +872,15 @@ class TestController(testtools.TestCase):
|
||||
body = self.controller.data('image_id')
|
||||
self.assertIsNone(body)
|
||||
|
||||
def test_download_forbidden(self):
|
||||
self.controller.http_client.get = mock.Mock(
|
||||
side_effect=exc.HTTPForbidden())
|
||||
try:
|
||||
self.controller.data('image_id')
|
||||
self.fail('No forbidden exception raised.')
|
||||
except exc.HTTPForbidden:
|
||||
pass
|
||||
|
||||
def test_update_replace_prop(self):
|
||||
image_id = '3a4560a1-e585-443e-9b39-553b46ec92d1'
|
||||
params = {'name': 'pong'}
|
||||
|
@@ -653,6 +653,36 @@ class ShellV2Test(testtools.TestCase):
|
||||
self.assert_exits_with_msg(func=test_shell.do_image_delete,
|
||||
func_args=args)
|
||||
|
||||
@mock.patch.object(utils, 'print_err')
|
||||
def test_do_image_download_with_forbidden_id(self, mocked_print_err):
|
||||
args = self._make_args({'id': 'IMG-01', 'file': None,
|
||||
'progress': False})
|
||||
with mock.patch.object(self.gc.images, 'data') as mocked_data:
|
||||
mocked_data.side_effect = exc.HTTPForbidden
|
||||
try:
|
||||
test_shell.do_image_download(self.gc, args)
|
||||
self.fail('Exit not called')
|
||||
except SystemExit:
|
||||
pass
|
||||
|
||||
self.assertEqual(1, mocked_data.call_count)
|
||||
self.assertEqual(1, mocked_print_err.call_count)
|
||||
|
||||
@mock.patch.object(utils, 'print_err')
|
||||
def test_do_image_download_with_500(self, mocked_print_err):
|
||||
args = self._make_args({'id': 'IMG-01', 'file': None,
|
||||
'progress': False})
|
||||
with mock.patch.object(self.gc.images, 'data') as mocked_data:
|
||||
mocked_data.side_effect = exc.HTTPInternalServerError
|
||||
try:
|
||||
test_shell.do_image_download(self.gc, args)
|
||||
self.fail('Exit not called')
|
||||
except SystemExit:
|
||||
pass
|
||||
|
||||
self.assertEqual(1, mocked_data.call_count)
|
||||
self.assertEqual(1, mocked_print_err.call_count)
|
||||
|
||||
def test_do_member_list(self):
|
||||
args = self._make_args({'image_id': 'IMG-01'})
|
||||
with mock.patch.object(self.gc.image_members, 'list') as mocked_list:
|
||||
|
@@ -276,7 +276,12 @@ def do_explain(gc, args):
|
||||
help=_('Show download progress bar.'))
|
||||
def do_image_download(gc, args):
|
||||
"""Download a specific image."""
|
||||
body = gc.images.data(args.id)
|
||||
try:
|
||||
body = gc.images.data(args.id)
|
||||
except (exc.HTTPForbidden, exc.HTTPException) as e:
|
||||
msg = "Unable to download image '%s'. (%s)" % (args.id, e)
|
||||
utils.exit(msg)
|
||||
|
||||
if body is None:
|
||||
msg = ('Image %s has no data.' % args.id)
|
||||
utils.exit(msg)
|
||||
|
Reference in New Issue
Block a user