rally-openstack/tests/unit/task/scenarios/gnocchi/test_archive_policy.py
Andrey Kurilin d2f4e9717d Restruct the project
Move all modules under the next structure:

- rally_openstack.common
- rally_openstack.enviromnet
- rally_openstack.task
- rally_openstack.verification

Change-Id: I41702d017cd49b117da3b8e12b19c7327229ae32
2020-03-27 19:06:13 +02:00

75 lines
2.9 KiB
Python

# Copyright 2017 Red Hat, Inc. <http://www.redhat.com>
#
# 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.gnocchi import archive_policy
from tests.unit import test
class GnocchiArchivePolicyTestCase(test.ScenarioTestCase):
def get_test_context(self):
context = super(GnocchiArchivePolicyTestCase,
self).get_test_context()
context.update({
"admin": {
"user_id": "fake",
"credential": mock.MagicMock()
},
"user": {
"user_id": "fake",
"credential": mock.MagicMock()
},
"tenant": {"id": "fake"}
})
return context
def setUp(self):
super(GnocchiArchivePolicyTestCase, self).setUp()
patch = mock.patch(
"rally_openstack.common.services.gnocchi.metric.GnocchiService")
self.addCleanup(patch.stop)
self.mock_metric = patch.start()
def test_list_archive_policy(self):
metric_service = self.mock_metric.return_value
scenario = archive_policy.ListArchivePolicy(self.context)
scenario.run()
metric_service.list_archive_policy.assert_called_once_with()
def test_create_archive_policy(self):
metric_service = self.mock_metric.return_value
scenario = archive_policy.CreateArchivePolicy(self.context)
scenario.generate_random_name = mock.MagicMock(return_value="name")
attrs = [{"foo": "1:23:24", "bar": "5:43:21"}]
aggreg = ["foo1", "foo2"]
scenario.run(definition=attrs, aggregation_methods=aggreg)
metric_service.create_archive_policy.assert_called_once_with(
"name", definition=attrs, aggregation_methods=aggreg)
def test_create_delete_archive_policy(self):
metric_service = self.mock_metric.return_value
scenario = archive_policy.CreateDeleteArchivePolicy(self.context)
scenario.generate_random_name = mock.MagicMock(return_value="name")
attrs = [{"foo": "2:34:55", "bar": "4:32:10"}]
aggreg = ["foo3", "foo4"]
scenario.run(definition=attrs, aggregation_methods=aggreg)
metric_service.create_archive_policy.assert_called_once_with(
"name", definition=attrs, aggregation_methods=aggreg)
metric_service.delete_archive_policy.assert_called_once_with(
"name")