
This is a squashed commit of work done by Doug and myself. Thanks Doug! Author: Angus Salkeld <asalkeld@redhat.com> Add a Statistics class Note this is a bit different to the spec (http://wiki.openstack.org/Ceilometer/blueprints/APIv2) As wsme doen't really like different types been returned from the same method. I have: GET /v2/meters/<meter> - raw samples GET /v2/meters/<meter>/statistics - for the stats Make the error reporting better for invalid fields Try and protect from passing in the wrong arguments into the db api Also get_resources() takes start/stop_timestamp not start/stop. Fix most of the duration test cases (overlapping ones are still broken) Add some log messages to warn of unimplemented queries Fix the start/end timestamp passed into calc_duration() Make the query op default to 'eq' Fix v2 event list paths Remove v2 list projects tests Re-Add the duration Implement get_meter_statistics() for sqlalchemy. Add tests for get_meter_statistics() Fix the latest pep8 1.4 issues Author: Doug Hellmann <doug.hellmann@dreamhost.com> fixme comment Fix duration calculation fix event listing tests remove obsolete list tests update resource listing tests remove obsolete list tests fix max statistics tests for projects fix max tests for resource queries fix tests for stats using project filter Fix sum tests for resource queries Fix the statistics calculation in the mongo driver to handle getting no data back from the query. Update the queries in the test code. enable logging for wsme in the tests to help with debugging always include all query fields to keep values aligned only include the start and end timestamp keywords wanted by the EventFilter update url used in acl tests update tests for listing meters convert prints to logging calls and add a few todo/fixme notes add some debugging and error checking to _query_to_kwargs add q argument to get_json() to make it easier to pass queries to the service do not stub out controller we have deleted fix whitespace issues to make pep8 happy Change-Id: I1b9a4c26fb8cc74ae1a002f93b84db05d0b20192 Blueprint: api-aggregate-average Blueprint: api-server-pecan-wsme
247 lines
8.8 KiB
Python
247 lines
8.8 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.
|
|
"""Test listing resources.
|
|
"""
|
|
|
|
import datetime
|
|
import logging
|
|
|
|
from ceilometer.collector import meter
|
|
from ceilometer import counter
|
|
from ceilometer.openstack.common import cfg
|
|
|
|
from .base import FunctionalTest
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
|
|
class TestListResources(FunctionalTest):
|
|
|
|
SOURCE_DATA = {'test_list_resources': {}}
|
|
|
|
def test_empty(self):
|
|
data = self.get_json('/resources')
|
|
self.assertEquals([], data)
|
|
|
|
def test_instances(self):
|
|
counter1 = counter.Counter(
|
|
'instance',
|
|
'cumulative',
|
|
'',
|
|
1,
|
|
'user-id',
|
|
'project-id',
|
|
'resource-id',
|
|
timestamp=datetime.datetime(2012, 7, 2, 10, 40),
|
|
resource_metadata={'display_name': 'test-server',
|
|
'tag': 'self.counter',
|
|
}
|
|
)
|
|
msg = meter.meter_message_from_counter(counter1,
|
|
cfg.CONF.metering_secret,
|
|
'test',
|
|
)
|
|
self.conn.record_metering_data(msg)
|
|
|
|
counter2 = counter.Counter(
|
|
'instance',
|
|
'cumulative',
|
|
'',
|
|
1,
|
|
'user-id',
|
|
'project-id',
|
|
'resource-id-alternate',
|
|
timestamp=datetime.datetime(2012, 7, 2, 10, 41),
|
|
resource_metadata={'display_name': 'test-server',
|
|
'tag': 'self.counter2',
|
|
}
|
|
)
|
|
msg2 = meter.meter_message_from_counter(counter2,
|
|
cfg.CONF.metering_secret,
|
|
'test',
|
|
)
|
|
self.conn.record_metering_data(msg2)
|
|
|
|
data = self.get_json('/resources')
|
|
self.assertEquals(2, len(data))
|
|
|
|
def test_with_source(self):
|
|
counter1 = counter.Counter(
|
|
'instance',
|
|
'cumulative',
|
|
'',
|
|
1,
|
|
'user-id',
|
|
'project-id',
|
|
'resource-id',
|
|
timestamp=datetime.datetime(2012, 7, 2, 10, 40),
|
|
resource_metadata={'display_name': 'test-server',
|
|
'tag': 'self.counter',
|
|
}
|
|
)
|
|
msg = meter.meter_message_from_counter(counter1,
|
|
cfg.CONF.metering_secret,
|
|
'test_list_resources',
|
|
)
|
|
self.conn.record_metering_data(msg)
|
|
|
|
counter2 = counter.Counter(
|
|
'instance',
|
|
'cumulative',
|
|
'',
|
|
1,
|
|
'user-id2',
|
|
'project-id',
|
|
'resource-id-alternate',
|
|
timestamp=datetime.datetime(2012, 7, 2, 10, 41),
|
|
resource_metadata={'display_name': 'test-server',
|
|
'tag': 'self.counter2',
|
|
}
|
|
)
|
|
msg2 = meter.meter_message_from_counter(counter2,
|
|
cfg.CONF.metering_secret,
|
|
'not-test',
|
|
)
|
|
self.conn.record_metering_data(msg2)
|
|
|
|
data = self.get_json('/resources', q=[{'field': 'source',
|
|
'value': 'test_list_resources',
|
|
}])
|
|
ids = [r['resource_id'] for r in data]
|
|
self.assertEquals(['resource-id'], ids)
|
|
|
|
def test_with_user(self):
|
|
counter1 = counter.Counter(
|
|
'instance',
|
|
'cumulative',
|
|
'',
|
|
1,
|
|
'user-id',
|
|
'project-id',
|
|
'resource-id',
|
|
timestamp=datetime.datetime(2012, 7, 2, 10, 40),
|
|
resource_metadata={'display_name': 'test-server',
|
|
'tag': 'self.counter',
|
|
}
|
|
)
|
|
msg = meter.meter_message_from_counter(counter1,
|
|
cfg.CONF.metering_secret,
|
|
'test_list_resources',
|
|
)
|
|
self.conn.record_metering_data(msg)
|
|
|
|
counter2 = counter.Counter(
|
|
'instance',
|
|
'cumulative',
|
|
'',
|
|
1,
|
|
'user-id2',
|
|
'project-id',
|
|
'resource-id-alternate',
|
|
timestamp=datetime.datetime(2012, 7, 2, 10, 41),
|
|
resource_metadata={'display_name': 'test-server',
|
|
'tag': 'self.counter2',
|
|
}
|
|
)
|
|
msg2 = meter.meter_message_from_counter(counter2,
|
|
cfg.CONF.metering_secret,
|
|
'not-test',
|
|
)
|
|
self.conn.record_metering_data(msg2)
|
|
|
|
data = self.get_json('/resources', q=[{'field': 'user_id',
|
|
'value': 'user-id',
|
|
}])
|
|
ids = [r['resource_id'] for r in data]
|
|
self.assertEquals(['resource-id'], ids)
|
|
|
|
def test_with_project(self):
|
|
counter1 = counter.Counter(
|
|
'instance',
|
|
'cumulative',
|
|
'',
|
|
1,
|
|
'user-id',
|
|
'project-id',
|
|
'resource-id',
|
|
timestamp=datetime.datetime(2012, 7, 2, 10, 40),
|
|
resource_metadata={'display_name': 'test-server',
|
|
'tag': 'self.counter',
|
|
}
|
|
)
|
|
msg = meter.meter_message_from_counter(counter1,
|
|
cfg.CONF.metering_secret,
|
|
'test_list_resources',
|
|
)
|
|
self.conn.record_metering_data(msg)
|
|
|
|
counter2 = counter.Counter(
|
|
'instance',
|
|
'cumulative',
|
|
'',
|
|
1,
|
|
'user-id2',
|
|
'project-id2',
|
|
'resource-id-alternate',
|
|
timestamp=datetime.datetime(2012, 7, 2, 10, 41),
|
|
resource_metadata={'display_name': 'test-server',
|
|
'tag': 'self.counter2',
|
|
}
|
|
)
|
|
msg2 = meter.meter_message_from_counter(counter2,
|
|
cfg.CONF.metering_secret,
|
|
'not-test',
|
|
)
|
|
self.conn.record_metering_data(msg2)
|
|
|
|
data = self.get_json('/resources', q=[{'field': 'project_id',
|
|
'value': 'project-id',
|
|
}])
|
|
ids = [r['resource_id'] for r in data]
|
|
self.assertEquals(['resource-id'], ids)
|
|
|
|
def test_metadata(self):
|
|
counter1 = counter.Counter(
|
|
'instance',
|
|
'cumulative',
|
|
'',
|
|
1,
|
|
'user-id',
|
|
'project-id',
|
|
'resource-id',
|
|
timestamp=datetime.datetime(2012, 7, 2, 10, 40),
|
|
resource_metadata={'display_name': 'test-server',
|
|
'tag': 'self.counter',
|
|
'ignored_dict': {'key': 'value'},
|
|
'ignored_list': ['not-returned'],
|
|
}
|
|
)
|
|
msg = meter.meter_message_from_counter(counter1,
|
|
cfg.CONF.metering_secret,
|
|
'test',
|
|
)
|
|
self.conn.record_metering_data(msg)
|
|
|
|
data = self.get_json('/resources')
|
|
metadata = data[0]['metadata']
|
|
self.assertEqual(
|
|
list(sorted(metadata.iteritems())),
|
|
[('display_name', 'test-server'),
|
|
('tag', 'self.counter'),
|
|
])
|