![Andrey Kurilin](/assets/img/avatar_default.png)
Move all modules under the next structure: - rally_openstack.common - rally_openstack.enviromnet - rally_openstack.task - rally_openstack.verification Change-Id: I41702d017cd49b117da3b8e12b19c7327229ae32
59 lines
2.2 KiB
Python
59 lines
2.2 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_openstack.task.scenarios.cinder import volume_backups
|
|
from tests.unit import test
|
|
|
|
|
|
class CinderBackupTestCase(test.ScenarioTestCase):
|
|
|
|
def setUp(self):
|
|
super(CinderBackupTestCase, 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_incremental_volume_backup(self):
|
|
mock_service = self.mock_cinder.return_value
|
|
scenario = volume_backups.CreateIncrementalVolumeBackup(
|
|
self._get_context())
|
|
|
|
volume_kwargs = {"some_var": "zaq"}
|
|
backup_kwargs = {"incremental": True}
|
|
|
|
scenario.run(1, do_delete=True, create_volume_kwargs=volume_kwargs,
|
|
create_backup_kwargs=backup_kwargs)
|
|
|
|
self.assertEqual(2, mock_service.create_backup.call_count)
|
|
mock_service.create_volume.assert_called_once_with(1, **volume_kwargs)
|
|
mock_service.delete_backup.assert_has_calls(
|
|
mock_service.create_backup.return_value)
|
|
mock_service.delete_volume.assert_called_once_with(
|
|
mock_service.create_volume.return_value)
|