
Fixed issues: H202 assertRaises Exception too broad H305 imports not grouped correctly H307 like imports should be grouped together H405 multi line docstring summary not separated with an empty line H904 Wrap long lines in parentheses instead of a backslash E122 continuation line missing indentation or outdented E128 continuation line under-indented for visual indent E131 continuation line unaligned for hanging indent E251 unexpected spaces around keyword / parameter equals E265 block comment should start with '# ' Change-Id: Ia2b8994c58686e3570f303f0725a2850d6b36e47
150 lines
5.9 KiB
Python
150 lines
5.9 KiB
Python
# Copyright 2013: Mirantis Inc.
|
|
# All Rights Reserved.
|
|
#
|
|
# 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.
|
|
|
|
import mock
|
|
|
|
from rally.benchmark.scenarios.keystone import utils
|
|
from tests.benchmark.scenarios import test_utils
|
|
from tests import fakes
|
|
from tests import test
|
|
|
|
UTILS = "rally.benchmark.scenarios.keystone.utils."
|
|
|
|
|
|
class KeystoneUtilsTestCase(test.TestCase):
|
|
|
|
def test_RESOURCE_NAME_PREFIX(self):
|
|
self.assertIsInstance(utils.KeystoneScenario.RESOURCE_NAME_PREFIX,
|
|
basestring)
|
|
# Prefix must be long enough to guarantee that resource
|
|
# to be recognized as created by rally
|
|
self.assertTrue(
|
|
len(utils.KeystoneScenario.RESOURCE_NAME_PREFIX) > 7)
|
|
|
|
def test_is_temporary(self):
|
|
prefix = utils.KeystoneScenario.RESOURCE_NAME_PREFIX
|
|
tests = [
|
|
(fakes.FakeResource(
|
|
name=prefix + "abc"),
|
|
True),
|
|
(fakes.FakeResource(name="another"), False),
|
|
(fakes.FakeResource(
|
|
name=prefix[:-3] + "abc"),
|
|
False)
|
|
]
|
|
|
|
for resource, is_valid in tests:
|
|
self.assertEqual(utils.is_temporary(resource), is_valid)
|
|
|
|
|
|
class KeystoneScenarioTestCase(test.TestCase):
|
|
|
|
def _test_atomic_action_timer(self, atomic_actions, name):
|
|
action_duration = test_utils.get_atomic_action_timer_value_by_name(
|
|
atomic_actions, name)
|
|
self.assertIsNotNone(action_duration)
|
|
self.assertIsInstance(action_duration, float)
|
|
|
|
@mock.patch(UTILS + "KeystoneScenario._generate_random_name")
|
|
def test_user_create(self, mock_gen_name):
|
|
name = "abc"
|
|
mock_gen_name.return_value = name
|
|
|
|
user = {}
|
|
fake_keystone = fakes.FakeKeystoneClient()
|
|
fake_keystone.users.create = mock.MagicMock(return_value=user)
|
|
fake_clients = fakes.FakeClients()
|
|
fake_clients._keystone = fake_keystone
|
|
scenario = utils.KeystoneScenario(admin_clients=fake_clients)
|
|
|
|
result = scenario._user_create()
|
|
|
|
self.assertEqual(user, result)
|
|
fake_keystone.users.create.assert_called_once_with(name, name,
|
|
name + "@rally.me")
|
|
self._test_atomic_action_timer(scenario.atomic_actions(),
|
|
'keystone.create_user')
|
|
|
|
def test_user_delete(self):
|
|
resource = fakes.FakeResource()
|
|
resource.delete = mock.MagicMock()
|
|
|
|
scenario = utils.KeystoneScenario()
|
|
scenario._resource_delete(resource)
|
|
resource.delete.assert_called_once_with()
|
|
self._test_atomic_action_timer(scenario.atomic_actions(),
|
|
'keystone.delete_resource')
|
|
|
|
@mock.patch(UTILS + "KeystoneScenario._generate_random_name")
|
|
def test_tenant_create(self, mock_gen_name):
|
|
name = "abc"
|
|
mock_gen_name.return_value = name
|
|
|
|
tenant = {}
|
|
fake_keystone = fakes.FakeKeystoneClient()
|
|
fake_keystone.tenants.create = mock.MagicMock(return_value=tenant)
|
|
fake_clients = fakes.FakeClients()
|
|
fake_clients._keystone = fake_keystone
|
|
scenario = utils.KeystoneScenario(admin_clients=fake_clients)
|
|
|
|
result = scenario._tenant_create()
|
|
|
|
self.assertEqual(tenant, result)
|
|
fake_keystone.tenants.create.assert_called_once_with(name)
|
|
self._test_atomic_action_timer(scenario.atomic_actions(),
|
|
'keystone.create_tenant')
|
|
|
|
@mock.patch(UTILS + "KeystoneScenario._generate_random_name")
|
|
def test_tenant_create_with_users(self, mock_gen_name):
|
|
name = "abc"
|
|
mock_gen_name.return_value = name
|
|
|
|
tenant = mock.MagicMock()
|
|
fake_keystone = fakes.FakeKeystoneClient()
|
|
fake_keystone.users.create = mock.MagicMock()
|
|
fake_clients = fakes.FakeClients()
|
|
fake_clients._keystone = fake_keystone
|
|
scenario = utils.KeystoneScenario(admin_clients=fake_clients)
|
|
|
|
scenario._users_create(tenant, users_per_tenant=1, name_length=10)
|
|
|
|
fake_keystone.users.create.assert_called_once_with(name, name,
|
|
name + "@rally.me",
|
|
tenant_id=tenant.id)
|
|
self._test_atomic_action_timer(scenario.atomic_actions(),
|
|
'keystone.create_users')
|
|
|
|
def test_list_users(self):
|
|
fake_keystone = fakes.FakeKeystoneClient()
|
|
fake_keystone.users.list = mock.MagicMock()
|
|
fake_clients = fakes.FakeClients()
|
|
fake_clients._keystone = fake_keystone
|
|
scenario = utils.KeystoneScenario(admin_clients=fake_clients)
|
|
scenario._list_users()
|
|
fake_keystone.users.list.assert_called_once_with()
|
|
self._test_atomic_action_timer(scenario.atomic_actions(),
|
|
'keystone.list_users')
|
|
|
|
def test_list_tenants(self):
|
|
fake_keystone = fakes.FakeKeystoneClient()
|
|
fake_keystone.tenants.list = mock.MagicMock()
|
|
fake_clients = fakes.FakeClients()
|
|
fake_clients._keystone = fake_keystone
|
|
scenario = utils.KeystoneScenario(admin_clients=fake_clients)
|
|
scenario._list_tenants()
|
|
fake_keystone.tenants.list.assert_called_once_with()
|
|
self._test_atomic_action_timer(scenario.atomic_actions(),
|
|
'keystone.list_tenants')
|