6d0679affe
Partial bug: 1405884 Change-Id: Ia6f5167dc829db65f3fc61a504cf1d0c1e47c8fb
53 lines
2.0 KiB
Python
53 lines
2.0 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 mock
|
|
|
|
from rally.benchmark.scenarios.zaqar import basic
|
|
from tests.unit import test
|
|
|
|
BASE = "rally.benchmark.scenarios.zaqar."
|
|
BASIC = BASE + "basic.ZaqarBasic."
|
|
|
|
|
|
class ZaqarBasicTestCase(test.TestCase):
|
|
|
|
@mock.patch(BASIC + "_generate_random_name", return_value="fizbit")
|
|
def test_create_queue(self, mock_gen_name):
|
|
scenario = basic.ZaqarBasic()
|
|
scenario._queue_create = mock.MagicMock()
|
|
scenario.create_queue(name_length=10)
|
|
scenario._queue_create.assert_called_once_with(name_length=10)
|
|
|
|
@mock.patch(BASIC + "_generate_random_name", return_value="kitkat")
|
|
def test_producer_consumer(self, mock_gen_name):
|
|
scenario = basic.ZaqarBasic()
|
|
messages = [{"body": {"id": idx}, "ttl": 360} for idx
|
|
in range(20)]
|
|
queue = mock.MagicMock()
|
|
|
|
scenario._queue_create = mock.MagicMock(return_value=queue)
|
|
scenario._messages_post = mock.MagicMock()
|
|
scenario._messages_list = mock.MagicMock()
|
|
scenario._queue_delete = mock.MagicMock()
|
|
|
|
scenario.producer_consumer(name_length=10, min_msg_count=20,
|
|
max_msg_count=20)
|
|
|
|
scenario._queue_create.assert_called_once_with(name_length=10)
|
|
scenario._messages_post.assert_called_once_with(queue, messages,
|
|
20, 20)
|
|
scenario._messages_list.assert_called_once_with(queue)
|
|
scenario._queue_delete.assert_called_once_with(queue)
|