
... by the builtin unittest.mock module, to reduce external dependencies. Change-Id: Id29822674672cd1a1231fcb627722c3949be2682
65 lines
2.2 KiB
Python
65 lines
2.2 KiB
Python
# Copyright 2019 Red Hat
|
|
#
|
|
# 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 __future__ import absolute_import
|
|
|
|
from unittest import mock
|
|
|
|
from heatclient.v1 import client as heatclient
|
|
|
|
from tobiko.openstack import keystone
|
|
from tobiko.openstack import heat
|
|
from tobiko.tests.unit import openstack
|
|
|
|
|
|
MockClient = mock.create_autospec(heatclient.Client)
|
|
|
|
|
|
class GetHeatClientTest(openstack.OpenstackTest):
|
|
|
|
def test_get_heat_client(self, session=None, shared=True):
|
|
client1 = heat.get_heat_client(session=session, shared=shared)
|
|
client2 = heat.get_heat_client(session=session, shared=shared)
|
|
if shared:
|
|
self.assertIs(client1, client2)
|
|
else:
|
|
self.assertIsNot(client1, client2)
|
|
self.assertIsInstance(client1, heatclient.Client)
|
|
self.assertIsInstance(client2, heatclient.Client)
|
|
|
|
def test_get_heat_client_with_not_shared(self):
|
|
self.test_get_heat_client(shared=False)
|
|
|
|
def test_get_heat_client_with_session(self):
|
|
session = keystone.get_keystone_session()
|
|
self.test_get_heat_client(session=session)
|
|
|
|
|
|
class HeatClientTest(openstack.OpenstackTest):
|
|
|
|
def test_heat_client(self, obj=None):
|
|
client = heat.heat_client(obj)
|
|
self.assertIsInstance(client, heatclient.Client)
|
|
if obj is None:
|
|
self.assertIs(heat.default_heat_client(), client)
|
|
elif isinstance(obj, heatclient.Client):
|
|
self.assertIs(obj, client)
|
|
elif isinstance(obj, heat.HeatClientFixture):
|
|
self.assertIs(obj.client, client)
|
|
|
|
def test_heat_client_with_client(self):
|
|
self.test_heat_client(obj=MockClient())
|
|
|
|
def test_heat_client_with_fixture(self):
|
|
self.test_heat_client(obj=heat.HeatClientFixture())
|