Merge "tests: add ContextTestCase that mocks clients"

This commit is contained in:
Jenkins 2016-01-12 11:27:58 +00:00 committed by Gerrit Code Review
commit d9592582e6

View File

@ -99,6 +99,18 @@ class ScenarioTestCase(TestCase):
key = (client_type, version, admin) key = (client_type, version, admin)
return key in self._clients return key in self._clients
def get_client_mocks(self):
base_path = "rally.plugins.openstack"
return [
mock.patch(
"%s.scenario.OpenStackScenario.clients" % base_path,
mock.Mock(side_effect=self.clients)),
mock.patch(
"%s.scenario.OpenStackScenario.admin_clients" % base_path,
mock.Mock(side_effect=self.admin_clients))
]
def setUp(self): def setUp(self):
super(ScenarioTestCase, self).setUp() super(ScenarioTestCase, self).setUp()
if self.patch_benchmark_utils: if self.patch_benchmark_utils:
@ -122,15 +134,8 @@ class ScenarioTestCase(TestCase):
self.useFixture(self.mock_sleep) self.useFixture(self.mock_sleep)
self._clients = {} self._clients = {}
base_path = "rally.plugins.openstack" self._client_mocks = self.get_client_mocks()
self._client_mocks = [
mock.patch(
"%s.scenario.OpenStackScenario.clients" % base_path,
mock.Mock(side_effect=self.clients)),
mock.patch(
"%s.scenario.OpenStackScenario.admin_clients" % base_path,
mock.Mock(side_effect=self.admin_clients))
]
for patcher in self._client_mocks: for patcher in self._client_mocks:
patcher.start() patcher.start()
@ -142,6 +147,54 @@ class ScenarioTestCase(TestCase):
super(ScenarioTestCase, self).tearDown() super(ScenarioTestCase, self).tearDown()
class ContextClientAdapter(object):
def __init__(self, endpoint, clients):
self.endpoint = endpoint
self._clients = clients
def mock_client(self, name, version=None):
admin = self.endpoint.startswith("admin")
try:
client = self._clients[(name, version, admin)]
except KeyError:
raise ValueError(
"Client %s version %s (admin %s) is missing, "
"please configure" % (name, version, admin))
if not isinstance(client.return_value, mock.Mock):
return client.return_value
if client.side_effect is not None:
# NOTE(pboldin): if a client has side_effects that means the
# user wants some of the returned values overrided (look at
# the test_existing_users for instance)
return client()
return client
def __getattr__(self, name):
# NOTE(pboldin): __getattr__ magic is called last, after the value
# were looked up for in __dict__
return lambda version=None: self.mock_client(name, version)
class ContextTestCase(ScenarioTestCase):
def setUp(self):
super(ContextTestCase, self).setUp()
self._adapters = {}
def context_client(self, endpoint):
if endpoint not in self._adapters:
self._adapters[endpoint] = ContextClientAdapter(
endpoint, self._clients)
return self._adapters[endpoint]
def get_client_mocks(self):
return [
mock.patch(
"rally.osclients.Clients",
mock.Mock(side_effect=self.context_client))
]
class FakeClientsScenarioTestCase(ScenarioTestCase): class FakeClientsScenarioTestCase(ScenarioTestCase):
"""Base class for Scenario tests using fake (not mocked) self.clients.""" """Base class for Scenario tests using fake (not mocked) self.clients."""