d2f4e9717d
Move all modules under the next structure: - rally_openstack.common - rally_openstack.enviromnet - rally_openstack.task - rally_openstack.verification Change-Id: I41702d017cd49b117da3b8e12b19c7327229ae32
136 lines
5.1 KiB
Python
136 lines
5.1 KiB
Python
# 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.
|
|
|
|
from unittest import mock
|
|
|
|
from rally import exceptions as rally_exceptions
|
|
from rally_openstack.task.scenarios.cinder import qos_specs
|
|
from tests.unit import test
|
|
|
|
|
|
class CinderQosTestCase(test.ScenarioTestCase):
|
|
|
|
def setUp(self):
|
|
super(CinderQosTestCase, self).setUp()
|
|
patch = mock.patch(
|
|
"rally_openstack.common.services.storage.block.BlockStorage")
|
|
self.addCleanup(patch.stop)
|
|
self.mock_cinder = patch.start()
|
|
|
|
def _get_context(self):
|
|
context = test.get_test_context()
|
|
context.update({
|
|
"admin": {
|
|
"id": "fake_user_id",
|
|
"credential": mock.MagicMock()
|
|
},
|
|
"user": {"id": "fake_user_id",
|
|
"credential": mock.MagicMock()},
|
|
"tenant": {"id": "fake", "name": "fake"}})
|
|
return context
|
|
|
|
def test_create_and_list_qos(self):
|
|
mock_service = self.mock_cinder.return_value
|
|
qos = mock.MagicMock()
|
|
list_qos = [mock.MagicMock(),
|
|
mock.MagicMock(),
|
|
qos]
|
|
|
|
specs = {"consumer": "both",
|
|
"write_iops_sec": "10",
|
|
"read_iops_sec": "1000"}
|
|
|
|
scenario = qos_specs.CreateAndListQos(self._get_context())
|
|
mock_service.create_qos.return_value = qos
|
|
mock_service.list_qos.return_value = list_qos
|
|
|
|
scenario.run("both", "10", "1000")
|
|
mock_service.create_qos.assert_called_once_with(specs)
|
|
mock_service.list_qos.assert_called_once_with()
|
|
|
|
def test_create_and_list_qos_with_fails(self):
|
|
mock_service = self.mock_cinder.return_value
|
|
qos = mock.MagicMock()
|
|
list_qos = [mock.MagicMock(),
|
|
mock.MagicMock(),
|
|
mock.MagicMock()]
|
|
specs = {"consumer": "both",
|
|
"write_iops_sec": "10",
|
|
"read_iops_sec": "1000"}
|
|
|
|
scenario = qos_specs.CreateAndListQos(self._get_context())
|
|
mock_service.create_qos.return_value = qos
|
|
mock_service.list_qos.return_value = list_qos
|
|
|
|
self.assertRaises(rally_exceptions.RallyAssertionError,
|
|
scenario.run, "both", "10", "1000")
|
|
mock_service.create_qos.assert_called_once_with(specs)
|
|
mock_service.list_qos.assert_called_once_with()
|
|
|
|
def test_create_and_get_qos(self):
|
|
mock_service = self.mock_cinder.return_value
|
|
qos = mock.MagicMock()
|
|
specs = {"consumer": "both",
|
|
"write_iops_sec": "10",
|
|
"read_iops_sec": "1000"}
|
|
|
|
scenario = qos_specs.CreateAndGetQos(self._get_context())
|
|
mock_service.create_qos.return_value = qos
|
|
|
|
scenario.run("both", "10", "1000")
|
|
mock_service.create_qos.assert_called_once_with(specs)
|
|
mock_service.get_qos.assert_called_once_with(qos.id)
|
|
|
|
def test_create_and_set_qos(self):
|
|
mock_service = self.mock_cinder.return_value
|
|
qos = mock.MagicMock()
|
|
create_specs_args = {"consumer": "back-end",
|
|
"write_iops_sec": "10",
|
|
"read_iops_sec": "1000"}
|
|
|
|
set_specs_args = {"consumer": "both",
|
|
"write_iops_sec": "11",
|
|
"read_iops_sec": "1001"}
|
|
scenario = qos_specs.CreateAndSetQos(self._get_context())
|
|
mock_service.create_qos.return_value = qos
|
|
|
|
scenario.run("back-end", "10", "1000",
|
|
"both", "11", "1001")
|
|
mock_service.create_qos.assert_called_once_with(create_specs_args)
|
|
mock_service.set_qos.assert_called_once_with(
|
|
qos=qos, set_specs_args=set_specs_args)
|
|
|
|
def test_create_qos_associate_and_disassociate_type(self):
|
|
mock_service = self.mock_cinder.return_value
|
|
context = self._get_context()
|
|
context.update({
|
|
"volume_types": [{"id": "fake_id",
|
|
"name": "fake_name"}],
|
|
"iteration": 1})
|
|
|
|
qos = mock.MagicMock()
|
|
specs = {"consumer": "both",
|
|
"write_iops_sec": "10",
|
|
"read_iops_sec": "1000"}
|
|
|
|
scenario = qos_specs.CreateQosAssociateAndDisassociateType(context)
|
|
mock_service.create_qos.return_value = qos
|
|
|
|
scenario.run("both", "10", "1000")
|
|
mock_service.create_qos.assert_called_once_with(specs)
|
|
mock_service.qos_associate_type.assert_called_once_with(
|
|
qos_specs=qos, volume_type="fake_id")
|
|
mock_service.qos_disassociate_type.assert_called_once_with(
|
|
qos_specs=qos, volume_type="fake_id")
|