Dougal Matthews 3cc9879347 Add bindings for overcloud API entrypoints
Add the entrypoint for the new overcloud type provided in the Tuskar API
after the domain model refactor.

Change-Id: I49b63905b5d657e63471bc3d02cc7cc2edd90caf
Implements: blueprint update-to-match-api-changes
2014-01-28 15:04:02 +00:00

60 lines
1.9 KiB
Python

# 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 tuskarclient.tests import utils as tutils
from tuskarclient.v1 import client
class HasManager(object):
def __init__(self, cls_name, attr_name):
self.cls_name = cls_name
self.attr_name = attr_name
def match(self, client):
if not hasattr(client, self.attr_name):
return ManagerClassMismatch(client, self.cls_name, self.attr_name)
obj = getattr(client, self.attr_name)
if (client.http_client != obj.api or
self.cls_name != obj.__class__.__name__):
return ManagerClassMismatch(client, self.cls_name, self.attr_name)
else:
return None
class ManagerClassMismatch(object):
def __init__(self, client, cls_name, attr_name):
self.client = client
self.cls_name = cls_name
self.attr_name = attr_name
def describe(self):
return "Class %r mismatch for attribute %r on %r" % (
self.cls_name, self.attr_name, self.client)
def get_details(self):
return {}
class ClientTest(tutils.TestCase):
def setUp(self):
super(ClientTest, self).setUp()
self.endpoint = "http://fakeurl:1234"
self.client = client.Client(self.endpoint)
def test_managers_present(self):
self.assertThat(self.client, HasManager('OvercloudManager',
'overclouds'))