fda172a4ce
Change-Id: I99a6f09bd5e4385f9a7710f374a1eb41bad28c74
69 lines
2.5 KiB
Python
69 lines
2.5 KiB
Python
# Copyright (c) 2014 Red Hat, Inc.
|
|
#
|
|
# 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 random
|
|
|
|
from rally.common import logging
|
|
|
|
from rally_openstack import scenario
|
|
from rally_openstack.scenarios.zaqar import utils as zutils
|
|
|
|
|
|
"""Scenarios for Zaqar."""
|
|
|
|
|
|
@scenario.configure(context={"cleanup@openstack": ["zaqar"]},
|
|
name="ZaqarBasic.create_queue", platform="openstack")
|
|
class CreateQueue(zutils.ZaqarScenario):
|
|
|
|
@logging.log_deprecated_args(
|
|
"The 'name_length' argument to create_queue is ignored",
|
|
"0.1.2", ["name_length"], once=True)
|
|
def run(self, name_length=None, **kwargs):
|
|
"""Create a Zaqar queue with a random name.
|
|
|
|
:param kwargs: other optional parameters to create queues like
|
|
"metadata"
|
|
"""
|
|
self._queue_create(**kwargs)
|
|
|
|
|
|
@scenario.configure(context={"cleanup@openstack": ["zaqar"]},
|
|
name="ZaqarBasic.producer_consumer", platform="openstack")
|
|
class ProducerConsumer(zutils.ZaqarScenario):
|
|
|
|
@logging.log_deprecated_args(
|
|
"The 'name_length' argument to producer_consumer is ignored",
|
|
"0.1.2", ["name_length"], once=True)
|
|
def run(self, name_length=None,
|
|
min_msg_count=50, max_msg_count=200, **kwargs):
|
|
"""Serial message producer/consumer.
|
|
|
|
Creates a Zaqar queue with random name, sends a set of messages
|
|
and then retrieves an iterator containing those.
|
|
|
|
:param min_msg_count: min number of messages to be posted
|
|
:param max_msg_count: max number of messages to be posted
|
|
:param kwargs: other optional parameters to create queues like
|
|
"metadata"
|
|
"""
|
|
|
|
queue = self._queue_create(**kwargs)
|
|
msg_count = random.randint(min_msg_count, max_msg_count)
|
|
messages = [{"body": {"id": idx}, "ttl": 360} for idx
|
|
in range(msg_count)]
|
|
self._messages_post(queue, messages, min_msg_count, max_msg_count)
|
|
self._messages_list(queue)
|
|
self._queue_delete(queue)
|