Merge "Adds simple tenant usage support for the Nova V3 API"

This commit is contained in:
Jenkins 2014-01-06 07:40:30 +00:00 committed by Gerrit Code Review
commit 2a7caa8bdb
4 changed files with 73 additions and 7 deletions

View File

@ -18,16 +18,23 @@ from novaclient.tests.v1_1 import fakes
from novaclient.v1_1 import usage from novaclient.v1_1 import usage
cs = fakes.FakeClient()
class UsageTest(utils.TestCase): class UsageTest(utils.TestCase):
def setUp(self):
super(UsageTest, self).setUp()
self.cs = self._get_fake_client()
self.usage_type = self._get_usage_type()
def _get_fake_client(self):
return fakes.FakeClient()
def _get_usage_type(self):
return usage.Usage
def test_usage_list(self, detailed=False): def test_usage_list(self, detailed=False):
now = datetime.datetime.now() now = datetime.datetime.now()
usages = cs.usage.list(now, now, detailed) usages = self.cs.usage.list(now, now, detailed)
cs.assert_called('GET', self.cs.assert_called('GET',
"/os-simple-tenant-usage?" + "/os-simple-tenant-usage?" +
("start=%s&" % now.isoformat()) + ("start=%s&" % now.isoformat()) +
("end=%s&" % now.isoformat()) + ("end=%s&" % now.isoformat()) +
@ -39,9 +46,9 @@ class UsageTest(utils.TestCase):
def test_usage_get(self): def test_usage_get(self):
now = datetime.datetime.now() now = datetime.datetime.now()
u = cs.usage.get("tenantfoo", now, now) u = self.cs.usage.get("tenantfoo", now, now)
cs.assert_called('GET', self.cs.assert_called('GET',
"/os-simple-tenant-usage/tenantfoo?" + "/os-simple-tenant-usage/tenantfoo?" +
("start=%s&" % now.isoformat()) + ("start=%s&" % now.isoformat()) +
("end=%s" % now.isoformat())) ("end=%s" % now.isoformat()))

View File

@ -0,0 +1,30 @@
# Copyright 2013 IBM Corp.
#
# 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.
from novaclient.tests.v1_1 import fakes
from novaclient.tests.v1_1 import test_usage
from novaclient.v3 import usage
class UsageTest(test_usage.UsageTest):
def setUp(self):
super(UsageTest, self).setUp()
self.cs = self._get_fake_client()
self.usage_type = self._get_usage_type()
def _get_fake_client(self):
return fakes.FakeClient()
def _get_usage_type(self):
return usage.Usage

View File

@ -29,6 +29,7 @@ from novaclient.v3 import quota_classes
from novaclient.v3 import quotas from novaclient.v3 import quotas
from novaclient.v3 import servers from novaclient.v3 import servers
from novaclient.v3 import services from novaclient.v3 import services
from novaclient.v3 import usage
class Client(object): class Client(object):
@ -78,6 +79,7 @@ class Client(object):
self.quota_classes = quota_classes.QuotaClassSetManager(self) self.quota_classes = quota_classes.QuotaClassSetManager(self)
self.servers = servers.ServerManager(self) self.servers = servers.ServerManager(self)
self.services = services.ServiceManager(self) self.services = services.ServiceManager(self)
self.usage = usage.UsageManager(self)
# Add in any extensions... # Add in any extensions...
if extensions: if extensions:

27
novaclient/v3/usage.py Normal file
View File

@ -0,0 +1,27 @@
# Copyright 2013 IBM Corp.
#
# 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.
"""
Usage interface.
"""
from novaclient.v1_1 import usage
class Usage(usage.Usage):
pass
class UsageManager(usage.UsageManager):
pass