
This patch finishes work on switching all plugin types to the single code base. This reduce amount of code and unifies all plugins which makes it simple to work on any kind of common plugin functionality: Deprecation, Info, Validation and so on.. In this patch: * Scenario.meta was removed and now MetaMixin is used * ScenarioGroups are removed This reduce framework complexity. One thing less that you should know and understand to start. * Scenario plugins can be explit set through configure() ** Unified with other kind of plugins ** Flexibility it is simpler to move and rename plugins with deprecation * Remove all unused Scenario methods * Improve rally.info substitution it's okay if we specify each part of name of the plguin Future steps (not in this patch) are: * Refactor plugin info and reduce copy paste inside that module * Refactor atomic action (make the work for context too) * Refactor validation (make scenario validation generic enough to work with all types of plugins) Change-Id: Ibecb8006ebb5d670bcf4519e9f0d6a505e385a1a
293 lines
11 KiB
Python
293 lines
11 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 traceback
|
|
|
|
import mock
|
|
import six
|
|
|
|
from rally import consts
|
|
from rally import exceptions
|
|
from rally.task import context
|
|
from rally.task import scenario
|
|
from rally.task import validation
|
|
from tests.unit import fakes
|
|
from tests.unit import test
|
|
|
|
|
|
class ScenarioConfigureTestCase(test.TestCase):
|
|
|
|
def test_configure(self):
|
|
|
|
@scenario.configure("test_configure", "testing")
|
|
def some_func():
|
|
pass
|
|
|
|
self.assertEqual("test_configure", some_func.get_name())
|
|
self.assertEqual("testing", some_func.get_namespace())
|
|
some_func.unregister()
|
|
|
|
def test_configure_default_name(self):
|
|
|
|
@scenario.configure(namespace="testing", context={"any": 42})
|
|
def some_func():
|
|
pass
|
|
|
|
self.assertIsNone(some_func._meta_get("name"))
|
|
self.assertEqual("testing", some_func.get_namespace())
|
|
self.assertEqual({"any": 42}, some_func._meta_get("default_context"))
|
|
some_func.unregister()
|
|
|
|
def test_configure_cls(self):
|
|
|
|
class ScenarioPluginCls(scenario.Scenario):
|
|
|
|
@scenario.configure(namespace="any", context={"any": 43})
|
|
def some(self):
|
|
pass
|
|
|
|
self.assertEqual("ScenarioPluginCls.some",
|
|
ScenarioPluginCls.some.get_name())
|
|
self.assertEqual("any", ScenarioPluginCls.some.get_namespace())
|
|
self.assertEqual({"any": 43},
|
|
ScenarioPluginCls.some._meta_get("default_context"))
|
|
ScenarioPluginCls.some.unregister()
|
|
|
|
|
|
class ScenarioTestCase(test.TestCase):
|
|
|
|
def test__validate_helper(self):
|
|
validators = [
|
|
mock.MagicMock(return_value=validation.ValidationResult(True)),
|
|
mock.MagicMock(return_value=validation.ValidationResult(True))
|
|
]
|
|
clients = mock.MagicMock()
|
|
config = {"a": 1, "b": 2}
|
|
deployment = mock.MagicMock()
|
|
scenario.Scenario._validate_helper(validators, clients, config,
|
|
deployment)
|
|
for validator in validators:
|
|
validator.assert_called_with(config, clients=clients,
|
|
deployment=deployment)
|
|
|
|
def test__validate_helper_somethingwent_wrong(self):
|
|
validator = mock.MagicMock()
|
|
validator.side_effect = Exception()
|
|
|
|
self.assertRaises(exceptions.InvalidScenarioArgument,
|
|
scenario.Scenario._validate_helper,
|
|
[validator], "cl", "config", "deployment")
|
|
validator.assert_called_once_with("config", clients="cl",
|
|
deployment="deployment")
|
|
|
|
def test__validate_helper__no_valid(self):
|
|
validators = [
|
|
mock.MagicMock(return_value=validation.ValidationResult(True)),
|
|
mock.MagicMock(
|
|
return_value=validation.ValidationResult(is_valid=False)
|
|
)
|
|
]
|
|
clients = mock.MagicMock()
|
|
args = {"a": 1, "b": 2}
|
|
self.assertRaises(exceptions.InvalidScenarioArgument,
|
|
scenario.Scenario._validate_helper,
|
|
validators, clients, args, "fake_uuid")
|
|
|
|
@mock.patch("rally.task.scenario.Scenario.get")
|
|
def test_validate__no_validators(self, mock_scenario_get):
|
|
|
|
class Testing(fakes.FakeScenario):
|
|
|
|
@scenario.configure()
|
|
def validate__no_validators(self):
|
|
pass
|
|
|
|
mock_scenario_get.return_value = Testing.validate__no_validators
|
|
scenario.Scenario.validate("Testing.validate__no_validators",
|
|
{"a": 1, "b": 2})
|
|
mock_scenario_get.assert_called_once_with(
|
|
"Testing.validate__no_validators")
|
|
Testing.validate__no_validators.unregister()
|
|
|
|
@mock.patch("rally.task.scenario.Scenario._validate_helper")
|
|
@mock.patch("rally.task.scenario.Scenario.get")
|
|
def test_validate__admin_validators(self, mock_scenario_get,
|
|
mock_scenario__validate_helper):
|
|
|
|
class Testing(fakes.FakeScenario):
|
|
|
|
@scenario.configure(namespace="testing")
|
|
def validate_admin_validators(self):
|
|
pass
|
|
|
|
mock_scenario_get.return_value = Testing.validate_admin_validators
|
|
|
|
validators = [mock.MagicMock(), mock.MagicMock()]
|
|
for validator in validators:
|
|
validator.permission = consts.EndpointPermission.ADMIN
|
|
|
|
Testing.validate_admin_validators._meta_set(
|
|
"validators", validators)
|
|
deployment = mock.MagicMock()
|
|
args = {"a": 1, "b": 2}
|
|
scenario.Scenario.validate("Testing.validate_admin_validators",
|
|
args, admin="admin", deployment=deployment)
|
|
mock_scenario__validate_helper.assert_called_once_with(
|
|
validators, "admin", args, deployment)
|
|
|
|
Testing.validate_admin_validators.unregister()
|
|
|
|
@mock.patch("rally.task.scenario.Scenario._validate_helper")
|
|
@mock.patch("rally.task.scenario.Scenario.get")
|
|
def test_validate_user_validators(self, mock_scenario_get,
|
|
mock_scenario__validate_helper):
|
|
|
|
class Testing(fakes.FakeScenario):
|
|
|
|
@scenario.configure()
|
|
def validate_user_validators(self):
|
|
pass
|
|
|
|
mock_scenario_get.return_value = Testing.validate_user_validators
|
|
|
|
validators = [mock.MagicMock(), mock.MagicMock()]
|
|
for validator in validators:
|
|
validator.permission = consts.EndpointPermission.USER
|
|
|
|
Testing.validate_user_validators._meta_set("validators", validators)
|
|
args = {"a": 1, "b": 2}
|
|
scenario.Scenario.validate(
|
|
"Testing.validate_user_validators", args, users=["u1", "u2"])
|
|
|
|
mock_scenario__validate_helper.assert_has_calls([
|
|
mock.call(validators, "u1", args, None),
|
|
mock.call(validators, "u2", args, None)
|
|
])
|
|
|
|
Testing.validate_user_validators.unregister()
|
|
|
|
def test_sleep_between_invalid_args(self):
|
|
self.assertRaises(exceptions.InvalidArgumentsException,
|
|
scenario.Scenario().sleep_between, 15, 5)
|
|
|
|
self.assertRaises(exceptions.InvalidArgumentsException,
|
|
scenario.Scenario().sleep_between, -1, 0)
|
|
|
|
self.assertRaises(exceptions.InvalidArgumentsException,
|
|
scenario.Scenario().sleep_between, 0, -2)
|
|
|
|
def test_sleep_between(self):
|
|
scenario_inst = scenario.Scenario()
|
|
scenario_inst.sleep_between(0.001, 0.002)
|
|
self.assertTrue(0.001 <= scenario_inst.idle_duration() <= 0.002)
|
|
|
|
def test_sleep_beetween_multi(self):
|
|
scenario_inst = scenario.Scenario()
|
|
scenario_inst.sleep_between(0.001, 0.001)
|
|
scenario_inst.sleep_between(0.004, 0.004)
|
|
self.assertEqual(scenario_inst.idle_duration(), 0.005)
|
|
|
|
@mock.patch("rally.task.scenario.time.sleep")
|
|
@mock.patch("rally.task.scenario.random.uniform")
|
|
def test_sleep_between_internal(self, mock_uniform, mock_sleep):
|
|
scenario_inst = scenario.Scenario()
|
|
|
|
mock_uniform.return_value = 1.5
|
|
scenario_inst.sleep_between(1, 2)
|
|
|
|
mock_sleep.assert_called_once_with(mock_uniform.return_value)
|
|
self.assertEqual(scenario_inst.idle_duration(),
|
|
mock_uniform.return_value)
|
|
|
|
def test_scenario_context_are_valid(self):
|
|
for s in scenario.Scenario.get_all():
|
|
try:
|
|
context.ContextManager.validate(s._meta_get("default_context"))
|
|
except Exception:
|
|
print(traceback.format_exc())
|
|
self.assertTrue(False,
|
|
"Scenario `%s` has wrong context" % scenario)
|
|
|
|
def test_RESOURCE_NAME_PREFIX(self):
|
|
self.assertIsInstance(scenario.Scenario.RESOURCE_NAME_PREFIX,
|
|
six.string_types)
|
|
|
|
def test_RESOURCE_NAME_LENGTH(self):
|
|
self.assertIsInstance(scenario.Scenario.RESOURCE_NAME_LENGTH, int)
|
|
self.assertTrue(scenario.Scenario.RESOURCE_NAME_LENGTH > 4)
|
|
|
|
def test_generate_random_name(self):
|
|
set_by_length = lambda lst: set(map(len, lst))
|
|
len_by_prefix = (lambda lst, prefix:
|
|
len([i.startswith(prefix) for i in lst]))
|
|
range_num = 50
|
|
|
|
# Defaults
|
|
result = [scenario.Scenario._generate_random_name()
|
|
for i in range(range_num)]
|
|
self.assertEqual(len(result), len(set(result)))
|
|
self.assertEqual(
|
|
set_by_length(result),
|
|
set([(len(
|
|
scenario.Scenario.RESOURCE_NAME_PREFIX) +
|
|
scenario.Scenario.RESOURCE_NAME_LENGTH)]))
|
|
self.assertEqual(
|
|
len_by_prefix(result, scenario.Scenario.RESOURCE_NAME_PREFIX),
|
|
range_num)
|
|
|
|
# Custom prefix
|
|
prefix = "another_prefix_"
|
|
result = [scenario.Scenario._generate_random_name(prefix)
|
|
for i in range(range_num)]
|
|
self.assertEqual(len(result), len(set(result)))
|
|
self.assertEqual(
|
|
set_by_length(result),
|
|
set([len(prefix) + scenario.Scenario.RESOURCE_NAME_LENGTH]))
|
|
self.assertEqual(
|
|
len_by_prefix(result, prefix), range_num)
|
|
|
|
# Custom length
|
|
name_length = 12
|
|
result = [
|
|
scenario.Scenario._generate_random_name(length=name_length)
|
|
for i in range(range_num)]
|
|
self.assertEqual(len(result), len(set(result)))
|
|
self.assertEqual(
|
|
set_by_length(result),
|
|
set([len(
|
|
scenario.Scenario.RESOURCE_NAME_PREFIX) + name_length]))
|
|
self.assertEqual(
|
|
len_by_prefix(result, scenario.Scenario.RESOURCE_NAME_PREFIX),
|
|
range_num)
|
|
|
|
|
|
class AtomicActionTestCase(test.TestCase):
|
|
def test__init__(self):
|
|
fake_scenario_instance = fakes.FakeScenario()
|
|
c = scenario.AtomicAction(fake_scenario_instance, "asdf")
|
|
self.assertEqual(c.scenario_instance, fake_scenario_instance)
|
|
self.assertEqual(c.name, "asdf")
|
|
|
|
@mock.patch("tests.unit.fakes.FakeScenario._add_atomic_actions")
|
|
@mock.patch("rally.common.utils.time")
|
|
def test__exit__(self, mock_time, mock_fake_scenario__add_atomic_actions):
|
|
fake_scenario_instance = fakes.FakeScenario()
|
|
self.start = mock_time.time()
|
|
with scenario.AtomicAction(fake_scenario_instance, "asdf"):
|
|
pass
|
|
duration = mock_time.time() - self.start
|
|
mock_fake_scenario__add_atomic_actions.assert_called_once_with(
|
|
"asdf", duration)
|