
* Added jsonschema validator * Added scenario args validator * Scenario.validate replaced by new mixin * Old validators wrapped into new plugin class * Added deprecated version of "required_openstack" spec: pluggable_validators.rst Co-Authored-By: Anton Studenov <astudenov@mirantis.com> Change-Id: I5580667778cf0978c77ead577db1ce014a424e1e
107 lines
4.0 KiB
Python
107 lines
4.0 KiB
Python
# Copyright 2015: 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 functools
|
|
import random
|
|
|
|
from rally import osclients
|
|
from rally.task import scenario
|
|
|
|
configure = functools.partial(scenario.configure, namespace="openstack")
|
|
|
|
|
|
class OpenStackScenario(scenario.Scenario):
|
|
"""Base class for all OpenStack scenarios."""
|
|
|
|
def __init__(self, context=None, admin_clients=None, clients=None):
|
|
super(OpenStackScenario, self).__init__(context)
|
|
if context:
|
|
api_info = {}
|
|
if "api_versions" in context.get("config", {}):
|
|
api_versions = context["config"]["api_versions"]
|
|
for service in api_versions:
|
|
api_info[service] = {
|
|
"version": api_versions[service].get("version"),
|
|
"service_type": api_versions[service].get(
|
|
"service_type")}
|
|
|
|
if admin_clients is None and "admin" in context:
|
|
self._admin_clients = osclients.Clients(
|
|
context["admin"]["credential"], api_info)
|
|
if clients is None:
|
|
if "users" in context and "user" not in context:
|
|
self._choose_user(context)
|
|
|
|
if "user" in context:
|
|
self._clients = osclients.Clients(
|
|
context["user"]["credential"], api_info)
|
|
|
|
if admin_clients:
|
|
self._admin_clients = admin_clients
|
|
|
|
if clients:
|
|
self._clients = clients
|
|
|
|
def _choose_user(self, context):
|
|
"""Choose one user from users context
|
|
|
|
We are choosing on each iteration one user
|
|
|
|
"""
|
|
if context["user_choice_method"] == "random":
|
|
user = random.choice(context["users"])
|
|
tenant = context["tenants"][user["tenant_id"]]
|
|
else:
|
|
# Second and last case - 'round_robin'.
|
|
tenants_amount = len(context["tenants"])
|
|
# NOTE(amaretskiy): iteration is subtracted by `1' because it
|
|
# starts from `1' but we count from `0'
|
|
iteration = context["iteration"] - 1
|
|
tenant_index = int(iteration % tenants_amount)
|
|
tenant_id = sorted(context["tenants"].keys())[tenant_index]
|
|
tenant = context["tenants"][tenant_id]
|
|
users = context["tenants"][tenant_id]["users"]
|
|
user_index = int((iteration / tenants_amount) % len(users))
|
|
user = users[user_index]
|
|
|
|
context["user"], context["tenant"] = user, tenant
|
|
|
|
def clients(self, client_type, version=None):
|
|
"""Returns a python openstack client of the requested type.
|
|
|
|
The client will be that for one of the temporary non-administrator
|
|
users created before the benchmark launch.
|
|
|
|
:param client_type: Client type ("nova"/"glance" etc.)
|
|
:param version: client version ("1"/"2" etc.)
|
|
|
|
:returns: Standard python OpenStack client instance
|
|
"""
|
|
client = getattr(self._clients, client_type)
|
|
|
|
return client(version) if version is not None else client()
|
|
|
|
def admin_clients(self, client_type, version=None):
|
|
"""Returns a python admin openstack client of the requested type.
|
|
|
|
:param client_type: Client type ("nova"/"glance" etc.)
|
|
:param version: client version ("1"/"2" etc.)
|
|
|
|
:returns: Python openstack client object
|
|
"""
|
|
client = getattr(self._admin_clients, client_type)
|
|
|
|
return client(version) if version is not None else client()
|