2014-05-22 17:38:41 -06:00
|
|
|
# Copyright 2013 Nebula Inc.
|
|
|
|
#
|
|
|
|
# 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 mock
|
|
|
|
|
2018-10-10 11:12:40 -05:00
|
|
|
from cinderclient.v3 import volume_snapshots
|
|
|
|
from cinderclient.v3 import volumes
|
2016-06-08 14:17:14 -05:00
|
|
|
from osc_lib import exceptions
|
2016-05-13 16:14:09 -05:00
|
|
|
from osc_lib import utils
|
2014-05-22 17:38:41 -06:00
|
|
|
|
2016-09-05 22:14:33 -07:00
|
|
|
from openstackclient.tests.unit import utils as test_utils
|
2014-08-07 11:14:00 +08:00
|
|
|
from openstackclient.volume import client # noqa
|
2014-05-22 17:38:41 -06:00
|
|
|
|
|
|
|
|
2015-04-13 16:47:49 -05:00
|
|
|
# Monkey patch for v1 cinderclient
|
|
|
|
# NOTE(dtroyer): Do here because openstackclient.volume.client
|
|
|
|
# doesn't do it until the client object is created now.
|
|
|
|
volumes.Volume.NAME_ATTR = 'display_name'
|
|
|
|
volume_snapshots.Snapshot.NAME_ATTR = 'display_name'
|
|
|
|
|
|
|
|
|
2014-05-22 17:38:41 -06:00
|
|
|
ID = '1after909'
|
|
|
|
NAME = 'PhilSpector'
|
|
|
|
|
|
|
|
|
|
|
|
class TestFindResourceVolumes(test_utils.TestCase):
|
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
super(TestFindResourceVolumes, self).setUp()
|
|
|
|
api = mock.Mock()
|
|
|
|
api.client = mock.Mock()
|
|
|
|
api.client.get = mock.Mock()
|
|
|
|
resp = mock.Mock()
|
|
|
|
body = {"volumes": [{"id": ID, 'display_name': NAME}]}
|
2016-07-07 22:41:07 -04:00
|
|
|
api.client.get.side_effect = [Exception("Not found"),
|
|
|
|
(resp, body)]
|
2014-05-22 17:38:41 -06:00
|
|
|
self.manager = volumes.VolumeManager(api)
|
|
|
|
|
|
|
|
def test_find(self):
|
|
|
|
result = utils.find_resource(self.manager, NAME)
|
|
|
|
self.assertEqual(ID, result.id)
|
|
|
|
self.assertEqual(NAME, result.display_name)
|
|
|
|
|
|
|
|
def test_not_find(self):
|
|
|
|
self.assertRaises(exceptions.CommandError, utils.find_resource,
|
|
|
|
self.manager, 'GeorgeMartin')
|
|
|
|
|
|
|
|
|
|
|
|
class TestFindResourceVolumeSnapshots(test_utils.TestCase):
|
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
super(TestFindResourceVolumeSnapshots, self).setUp()
|
|
|
|
api = mock.Mock()
|
|
|
|
api.client = mock.Mock()
|
|
|
|
api.client.get = mock.Mock()
|
|
|
|
resp = mock.Mock()
|
|
|
|
body = {"snapshots": [{"id": ID, 'display_name': NAME}]}
|
2016-07-07 22:41:07 -04:00
|
|
|
api.client.get.side_effect = [Exception("Not found"),
|
|
|
|
(resp, body)]
|
2014-05-22 17:38:41 -06:00
|
|
|
self.manager = volume_snapshots.SnapshotManager(api)
|
|
|
|
|
|
|
|
def test_find(self):
|
|
|
|
result = utils.find_resource(self.manager, NAME)
|
|
|
|
self.assertEqual(ID, result.id)
|
|
|
|
self.assertEqual(NAME, result.display_name)
|
|
|
|
|
|
|
|
def test_not_find(self):
|
|
|
|
self.assertRaises(exceptions.CommandError, utils.find_resource,
|
|
|
|
self.manager, 'GeorgeMartin')
|