58 lines
2.1 KiB
Python
58 lines
2.1 KiB
Python
# -*- encoding: utf-8 -*-
|
|
#
|
|
# Copyright © 2012 New Dream Network, LLC (DreamHost)
|
|
#
|
|
# Author: Doug Hellmann <doug.hellmann@dreamhost.com>
|
|
#
|
|
# 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.
|
|
"""Tests for ceilometer.compute.instance
|
|
"""
|
|
|
|
from nova import context
|
|
from nova import flags
|
|
from nova import test
|
|
from nova import db
|
|
|
|
from ceilometer.compute import instance
|
|
from ceilometer.agent import manager
|
|
|
|
|
|
class TestLocationMetadata(test.TestCase):
|
|
|
|
INSTANCE_PROPERTIES = {'display_name': 'display name',
|
|
'reservation_id': 'reservation id',
|
|
'architecture': 'x86_64',
|
|
'availability_zone': 'zone1',
|
|
'image_ref': 'image ref',
|
|
'image_ref_url': 'image ref url',
|
|
'kernel_id': 'kernel id',
|
|
'os_type': 'linux',
|
|
'ramdisk_id': 'ramdisk id',
|
|
'disk_gb': 10,
|
|
'ephemeral_gb': 7,
|
|
'memory_mb': 2048,
|
|
'root_gb': 3,
|
|
'vcpus': 1,
|
|
}
|
|
|
|
def setUp(self):
|
|
self.context = context.RequestContext('admin', 'admin', is_admin=True)
|
|
self.manager = manager.AgentManager()
|
|
super(TestLocationMetadata, self).setUp()
|
|
self.instance = db.instance_create(self.context, self.INSTANCE_PROPERTIES)
|
|
|
|
def test_metadata(self):
|
|
md = instance.get_metadata_from_dbobject(self.instance)
|
|
for name in self.INSTANCE_PROPERTIES.keys():
|
|
assert md[name] == self.INSTANCE_PROPERTIES[name]
|