fix resource_metadata failure missing image data
When image metadata is missing kernel and ramdisk causes exception. Fixes bug 1197180 Change-Id: Iefb3ac8e92c273ddfff28fe848d2e7b0e6406321
This commit is contained in:
parent
af8643c678
commit
e66e849cdd
@ -55,38 +55,44 @@ class Client(object):
|
|||||||
no_cache=True)
|
no_cache=True)
|
||||||
|
|
||||||
def _with_flavor_and_image(self, instances):
|
def _with_flavor_and_image(self, instances):
|
||||||
flavor_attrs = ['name', 'vcpus', 'ram', 'disk']
|
|
||||||
for instance in instances:
|
for instance in instances:
|
||||||
fid = instance.flavor['id']
|
self._with_flavor(instance)
|
||||||
try:
|
self._with_image(instance)
|
||||||
flavor = self.nova_client.flavors.get(fid)
|
|
||||||
except novaclient.exceptions.NotFound:
|
|
||||||
flavor = None
|
|
||||||
|
|
||||||
for attr in flavor_attrs:
|
|
||||||
try:
|
|
||||||
instance.flavor[attr] = getattr(flavor, attr)
|
|
||||||
except (KeyError, AttributeError):
|
|
||||||
if attr == 'name':
|
|
||||||
instance.flavor['name'] = 'unknown-id-%s' % fid
|
|
||||||
|
|
||||||
iid = instance.image['id']
|
|
||||||
try:
|
|
||||||
image = self.nova_client.images.get(iid)
|
|
||||||
except novaclient.exceptions.NotFound:
|
|
||||||
image = None
|
|
||||||
|
|
||||||
try:
|
|
||||||
image_meta = getattr(image, 'metadata')
|
|
||||||
except (KeyError, AttributeError):
|
|
||||||
instance.image['name'] = 'unknown-id-%s' % iid
|
|
||||||
else:
|
|
||||||
instance.image['name'] = getattr(image, 'name')
|
|
||||||
instance.kernel_id = image_meta['kernel_id']
|
|
||||||
instance.ramdisk_id = image_meta['ramdisk_id']
|
|
||||||
|
|
||||||
return instances
|
return instances
|
||||||
|
|
||||||
|
def _with_flavor(self, instance):
|
||||||
|
fid = instance.flavor['id']
|
||||||
|
try:
|
||||||
|
flavor = self.nova_client.flavors.get(fid)
|
||||||
|
except novaclient.exceptions.NotFound:
|
||||||
|
flavor = None
|
||||||
|
|
||||||
|
attr_defaults = [('name', 'unknown-id-%s' % fid),
|
||||||
|
('vcpus', 0), ('ram', 0), ('disk', 0)]
|
||||||
|
for attr, default in attr_defaults:
|
||||||
|
if not flavor:
|
||||||
|
instance.flavor[attr] = default
|
||||||
|
continue
|
||||||
|
instance.flavor[attr] = getattr(flavor, attr, default)
|
||||||
|
|
||||||
|
def _with_image(self, instance):
|
||||||
|
iid = instance.image['id']
|
||||||
|
try:
|
||||||
|
image = self.nova_client.images.get(iid)
|
||||||
|
except novaclient.exceptions.NotFound:
|
||||||
|
instance.image['name'] = 'unknown-id-%s' % iid
|
||||||
|
instance.kernel_id = None
|
||||||
|
instance.ramdisk_id = None
|
||||||
|
return
|
||||||
|
|
||||||
|
instance.image['name'] = getattr(image, 'name')
|
||||||
|
image_metadata = getattr(image, 'metadata', None)
|
||||||
|
|
||||||
|
for attr in ['kernel_id', 'ramdisk_id']:
|
||||||
|
ameta = image_metadata.get(attr, None) if image_metadata else None
|
||||||
|
setattr(instance, attr, ameta)
|
||||||
|
|
||||||
@logged
|
@logged
|
||||||
def instance_get_all_by_host(self, hostname):
|
def instance_get_all_by_host(self, hostname):
|
||||||
"""Returns list of instances on particular host."""
|
"""Returns list of instances on particular host."""
|
||||||
|
@ -19,6 +19,7 @@
|
|||||||
|
|
||||||
import mock
|
import mock
|
||||||
|
|
||||||
|
import novaclient
|
||||||
from ceilometer.tests import base
|
from ceilometer.tests import base
|
||||||
from ceilometer import nova_client
|
from ceilometer import nova_client
|
||||||
|
|
||||||
@ -28,6 +29,9 @@ class TestNovaClient(base.TestCase):
|
|||||||
def setUp(self):
|
def setUp(self):
|
||||||
super(TestNovaClient, self).setUp()
|
super(TestNovaClient, self).setUp()
|
||||||
self.nv = nova_client.Client()
|
self.nv = nova_client.Client()
|
||||||
|
self.stubs.Set(self.nv.nova_client.flavors, 'get',
|
||||||
|
self.fake_flavors_get)
|
||||||
|
self.stubs.Set(self.nv.nova_client.images, 'get', self.fake_images_get)
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def fake_flavors_get(*args, **kwargs):
|
def fake_flavors_get(*args, **kwargs):
|
||||||
@ -38,23 +42,27 @@ class TestNovaClient(base.TestCase):
|
|||||||
elif a.id == 2:
|
elif a.id == 2:
|
||||||
a.name = 'm1.large'
|
a.name = 'm1.large'
|
||||||
else:
|
else:
|
||||||
return None
|
raise novaclient.exceptions.NotFound('foobar')
|
||||||
return a
|
return a
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def fake_images_get(*args, **kwargs):
|
def fake_images_get(*args, **kwargs):
|
||||||
a = mock.MagicMock()
|
a = mock.MagicMock()
|
||||||
a.id = args[0]
|
a.id = args[0]
|
||||||
if a.id == 1:
|
image_details = {
|
||||||
a.name = 'ubuntu-12.04-x86'
|
1: ('ubuntu-12.04-x86', dict(kernel_id=11, ramdisk_id=21)),
|
||||||
a.metadata = {'kernel_id': 11,
|
2: ('centos-5.4-x64', dict(kernel_id=12, ramdisk_id=22)),
|
||||||
'ramdisk_id': 21}
|
3: ('rhel-6-x64', None),
|
||||||
elif a.id == 2:
|
4: ('rhel-6-x64', dict()),
|
||||||
a.name = 'centos-5.4-x64'
|
5: ('rhel-6-x64', dict(kernel_id=11)),
|
||||||
a.metadata = {'kernel_id': 12,
|
6: ('rhel-6-x64', dict(ramdisk_id=21))
|
||||||
'ramdisk_id': 22}
|
}
|
||||||
|
|
||||||
|
if a.id in image_details:
|
||||||
|
a.name = image_details[a.id][0]
|
||||||
|
a.metadata = image_details[a.id][1]
|
||||||
else:
|
else:
|
||||||
return None
|
raise novaclient.exceptions.NotFound('foobar')
|
||||||
|
|
||||||
return a
|
return a
|
||||||
|
|
||||||
@ -77,12 +85,8 @@ class TestNovaClient(base.TestCase):
|
|||||||
return [a]
|
return [a]
|
||||||
|
|
||||||
def test_instance_get_all_by_host(self):
|
def test_instance_get_all_by_host(self):
|
||||||
self.stubs.Set(self.nv.nova_client.flavors, 'get',
|
|
||||||
self.fake_flavors_get)
|
|
||||||
self.stubs.Set(self.nv.nova_client.servers, 'list',
|
self.stubs.Set(self.nv.nova_client.servers, 'list',
|
||||||
self.fake_servers_list)
|
self.fake_servers_list)
|
||||||
self.stubs.Set(self.nv.nova_client.images, 'get',
|
|
||||||
self.fake_images_get)
|
|
||||||
|
|
||||||
instances = self.nv.instance_get_all_by_host('foobar')
|
instances = self.nv.instance_get_all_by_host('foobar')
|
||||||
self.assertEqual(len(instances), 1)
|
self.assertEqual(len(instances), 1)
|
||||||
@ -100,12 +104,8 @@ class TestNovaClient(base.TestCase):
|
|||||||
return [a]
|
return [a]
|
||||||
|
|
||||||
def test_instance_get_all_by_host_unknown_flavor(self):
|
def test_instance_get_all_by_host_unknown_flavor(self):
|
||||||
self.stubs.Set(self.nv.nova_client.flavors, 'get',
|
|
||||||
self.fake_flavors_get)
|
|
||||||
self.stubs.Set(self.nv.nova_client.servers, 'list',
|
self.stubs.Set(self.nv.nova_client.servers, 'list',
|
||||||
self.fake_servers_list_unknown_flavor)
|
self.fake_servers_list_unknown_flavor)
|
||||||
self.stubs.Set(self.nv.nova_client.images, 'get',
|
|
||||||
self.fake_images_get)
|
|
||||||
|
|
||||||
instances = self.nv.instance_get_all_by_host('foobar')
|
instances = self.nv.instance_get_all_by_host('foobar')
|
||||||
self.assertEqual(len(instances), 1)
|
self.assertEqual(len(instances), 1)
|
||||||
@ -119,14 +119,75 @@ class TestNovaClient(base.TestCase):
|
|||||||
a.image = {'id': 666}
|
a.image = {'id': 666}
|
||||||
return [a]
|
return [a]
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
def fake_servers_list_image_missing_metadata(*args, **kwargs):
|
||||||
|
a = mock.MagicMock()
|
||||||
|
a.id = 42
|
||||||
|
a.flavor = {'id': 1}
|
||||||
|
a.image = {'id': args[0]}
|
||||||
|
return [a]
|
||||||
|
|
||||||
def test_instance_get_all_by_host_unknown_image(self):
|
def test_instance_get_all_by_host_unknown_image(self):
|
||||||
self.stubs.Set(self.nv.nova_client.flavors, 'get',
|
|
||||||
self.fake_flavors_get)
|
|
||||||
self.stubs.Set(self.nv.nova_client.servers, 'list',
|
self.stubs.Set(self.nv.nova_client.servers, 'list',
|
||||||
self.fake_servers_list_unknown_image)
|
self.fake_servers_list_unknown_image)
|
||||||
self.stubs.Set(self.nv.nova_client.images, 'get',
|
|
||||||
self.fake_images_get)
|
|
||||||
|
|
||||||
instances = self.nv.instance_get_all_by_host('foobar')
|
instances = self.nv.instance_get_all_by_host('foobar')
|
||||||
self.assertEqual(len(instances), 1)
|
self.assertEqual(len(instances), 1)
|
||||||
self.assertEqual(instances[0].image['name'], 'unknown-id-666')
|
self.assertEqual(instances[0].image['name'], 'unknown-id-666')
|
||||||
|
|
||||||
|
def test_with_flavor_and_image(self):
|
||||||
|
results = self.nv._with_flavor_and_image(self.fake_servers_list())
|
||||||
|
instance = results[0]
|
||||||
|
self.assertEqual(instance.image['name'], 'ubuntu-12.04-x86')
|
||||||
|
self.assertEqual(instance.flavor['name'], 'm1.tiny')
|
||||||
|
self.assertEqual(instance.kernel_id, 11)
|
||||||
|
self.assertEqual(instance.ramdisk_id, 21)
|
||||||
|
|
||||||
|
def test_with_flavor_and_image_unknown_image(self):
|
||||||
|
instances = self.fake_servers_list_unknown_image()
|
||||||
|
results = self.nv._with_flavor_and_image(instances)
|
||||||
|
instance = results[0]
|
||||||
|
self.assertEqual(instance.image['name'], 'unknown-id-666')
|
||||||
|
self.assertNotEqual(instance.flavor['name'], 'unknown-id-666')
|
||||||
|
self.assertIsNone(instance.kernel_id)
|
||||||
|
self.assertIsNone(instance.ramdisk_id)
|
||||||
|
|
||||||
|
def test_with_flavor_and_image_unknown_flavor(self):
|
||||||
|
instances = self.fake_servers_list_unknown_flavor()
|
||||||
|
results = self.nv._with_flavor_and_image(instances)
|
||||||
|
instance = results[0]
|
||||||
|
self.assertEqual(instance.flavor['name'], 'unknown-id-666')
|
||||||
|
self.assertEqual(instance.flavor['vcpus'], 0)
|
||||||
|
self.assertEqual(instance.flavor['ram'], 0)
|
||||||
|
self.assertEqual(instance.flavor['disk'], 0)
|
||||||
|
self.assertNotEqual(instance.image['name'], 'unknown-id-666')
|
||||||
|
self.assertEqual(instance.kernel_id, 11)
|
||||||
|
self.assertEqual(instance.ramdisk_id, 21)
|
||||||
|
|
||||||
|
def test_with_flavor_and_image_none_metadata(self):
|
||||||
|
instances = self.fake_servers_list_image_missing_metadata(3)
|
||||||
|
results = self.nv._with_flavor_and_image(instances)
|
||||||
|
instance = results[0]
|
||||||
|
self.assertIsNone(instance.kernel_id)
|
||||||
|
self.assertIsNone(instance.ramdisk_id)
|
||||||
|
|
||||||
|
def test_with_flavor_and_image_missing_metadata(self):
|
||||||
|
instances = self.fake_servers_list_image_missing_metadata(4)
|
||||||
|
results = self.nv._with_flavor_and_image(instances)
|
||||||
|
instance = results[0]
|
||||||
|
self.assertIsNone(instance.kernel_id)
|
||||||
|
self.assertIsNone(instance.ramdisk_id)
|
||||||
|
|
||||||
|
def test_with_flavor_and_image_missing_ramdisk(self):
|
||||||
|
instances = self.fake_servers_list_image_missing_metadata(5)
|
||||||
|
results = self.nv._with_flavor_and_image(instances)
|
||||||
|
instance = results[0]
|
||||||
|
self.assertEqual(instance.kernel_id, 11)
|
||||||
|
self.assertIsNone(instance.ramdisk_id)
|
||||||
|
|
||||||
|
def test_with_flavor_and_image_missing_kernel(self):
|
||||||
|
instances = self.fake_servers_list_image_missing_metadata(6)
|
||||||
|
results = self.nv._with_flavor_and_image(instances)
|
||||||
|
instance = results[0]
|
||||||
|
self.assertIsNone(instance.kernel_id)
|
||||||
|
self.assertEqual(instance.ramdisk_id, 21)
|
||||||
|
Loading…
Reference in New Issue
Block a user