Files
aodh/ceilometer/tests/test_utils.py
Eoghan Glynn 2e8fa7c48f Allowed nested resource metadata in POST'd samples
Fixes bug 1302664

Previously, posting samples with nested metadata caused the mongo
driver to fail on the embedded period in a metadata key.

Now, we explicitly unwind the flattened resource metadata before
publishing the sample.

Change-Id: Ibb0980afc880218962328a9b7fe792015d58d1d2
2014-04-08 14:07:42 +01:00

134 lines
4.9 KiB
Python

# -*- encoding: utf-8 -*-
#
# Copyright © 2012 New Dream Network, LLC (DreamHost)
# Copyright (c) 2013 OpenStack Foundation
#
# Author: Doug Hellmann <doug.hellmann@dreamhost.com>
# All Rights Reserved.
#
# 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/utils.py
"""
import datetime
import decimal
from ceilometer.openstack.common import test
from ceilometer import utils
class TestUtils(test.BaseTestCase):
def test_datetime_to_decimal(self):
expected = 1356093296.12
utc_datetime = datetime.datetime.utcfromtimestamp(expected)
actual = utils.dt_to_decimal(utc_datetime)
self.assertEqual(expected, float(actual))
def test_decimal_to_datetime(self):
expected = 1356093296.12
dexpected = decimal.Decimal(str(expected)) # Python 2.6 wants str()
expected_datetime = datetime.datetime.utcfromtimestamp(expected)
actual_datetime = utils.decimal_to_dt(dexpected)
self.assertEqual(expected_datetime, actual_datetime)
def test_recursive_keypairs(self):
data = {'a': 'A', 'b': 'B',
'nested': {'a': 'A', 'b': 'B'}}
pairs = list(utils.recursive_keypairs(data))
self.assertEqual([('a', 'A'), ('b', 'B'),
('nested:a', 'A'), ('nested:b', 'B')],
pairs)
def test_recursive_keypairs_with_separator(self):
data = {'a': 'A',
'b': 'B',
'nested': {'a': 'A',
'b': 'B',
},
}
separator = '.'
pairs = list(utils.recursive_keypairs(data, separator))
self.assertEqual([('a', 'A'),
('b', 'B'),
('nested.a', 'A'),
('nested.b', 'B')],
pairs)
def test_recursive_keypairs_with_list_of_dict(self):
small = 1
big = 1 << 64
expected = [('a', 'A'),
('b', 'B'),
('nested:list', ['{%d: 99, %dL: 42}' % (small, big)])]
# the keys 1 and 1<<64 cause a hash collision on 64bit platforms
for nested in [{small: 99, big: 42}, {big: 42, small: 99}]:
data = {'a': 'A',
'b': 'B',
'nested': {'list': [nested]}}
pairs = list(utils.recursive_keypairs(data))
self.assertEqual(expected, pairs)
def test_restore_nesting_unested(self):
metadata = {'a': 'A', 'b': 'B'}
unwound = utils.restore_nesting(metadata)
self.assertIs(metadata, unwound)
def test_restore_nesting(self):
metadata = {'a': 'A', 'b': 'B',
'nested:a': 'A',
'nested:b': 'B',
'nested:twice:c': 'C',
'nested:twice:d': 'D',
'embedded:e': 'E'}
unwound = utils.restore_nesting(metadata)
expected = {'a': 'A', 'b': 'B',
'nested': {'a': 'A', 'b': 'B',
'twice': {'c': 'C', 'd': 'D'}},
'embedded': {'e': 'E'}}
self.assertEqual(expected, unwound)
self.assertIsNot(metadata, unwound)
def test_restore_nesting_with_separator(self):
metadata = {'a': 'A', 'b': 'B',
'nested.a': 'A',
'nested.b': 'B',
'nested.twice.c': 'C',
'nested.twice.d': 'D',
'embedded.e': 'E'}
unwound = utils.restore_nesting(metadata, separator='.')
expected = {'a': 'A', 'b': 'B',
'nested': {'a': 'A', 'b': 'B',
'twice': {'c': 'C', 'd': 'D'}},
'embedded': {'e': 'E'}}
self.assertEqual(expected, unwound)
self.assertIsNot(metadata, unwound)
def test_decimal_to_dt_with_none_parameter(self):
self.assertIsNone(utils.decimal_to_dt(None))
def test_dict_to_kv(self):
data = {'a': 'A',
'b': 'B',
'nested': {'a': 'A',
'b': 'B',
},
'nested2': [{'c': 'A'}, {'c': 'B'}]
}
pairs = list(utils.dict_to_keyval(data))
self.assertEqual([('a', 'A'), ('b', 'B'),
('nested2[0].c', 'A'),
('nested2[1].c', 'B'),
('nested.a', 'A'),
('nested.b', 'B')],
pairs)