![Juha Kosonen](/assets/img/avatar_default.png)
This patch is based on [1] and adds following scenarios: GnocchiArchivePolicy.list_archive_policy GnocchiArchivePolicy.create_archive_policy GnocchiArchivePolicy.create_delete_archive_policy [1] https://review.openstack.org/#/c/453861/ Change-Id: If9c0d0004b7ebb9f4eed49edfd2802884d18534f Signed-off-by: Juha Kosonen <juha.kosonen@nokia.com>
76 lines
2.9 KiB
Python
76 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 rally import consts
|
|
from rally.task import validation
|
|
|
|
from rally_openstack import scenario
|
|
from rally_openstack.scenarios.gnocchi import utils as gnocchiutils
|
|
|
|
"""Scenarios for Gnocchi archive policy."""
|
|
|
|
|
|
@validation.add("required_services", services=[consts.Service.GNOCCHI])
|
|
@validation.add("required_platform", platform="openstack", users=True)
|
|
@scenario.configure(name="GnocchiArchivePolicy.list_archive_policy")
|
|
class ListArchivePolicy(gnocchiutils.GnocchiBase):
|
|
|
|
def run(self):
|
|
"""List archive policies."""
|
|
self.gnocchi.list_archive_policy()
|
|
|
|
|
|
@validation.add("required_services", services=[consts.Service.GNOCCHI])
|
|
@validation.add("required_platform", platform="openstack", admin=True)
|
|
@scenario.configure(context={"admin_cleanup@openstack": ["gnocchi"]},
|
|
name="GnocchiArchivePolicy.create_archive_policy")
|
|
class CreateArchivePolicy(gnocchiutils.GnocchiBase):
|
|
|
|
def run(self, definition=None, aggregation_methods=None):
|
|
"""Create archive policy.
|
|
|
|
:param definition: List of definitions
|
|
:param aggregation_methods: List of aggregation methods
|
|
"""
|
|
if definition is None:
|
|
definition = [{"granularity": "0:00:01", "timespan": "1:00:00"}]
|
|
|
|
name = self.generate_random_name()
|
|
self.admin_gnocchi.create_archive_policy(
|
|
name, definition=definition,
|
|
aggregation_methods=aggregation_methods)
|
|
|
|
|
|
@validation.add("required_services", services=[consts.Service.GNOCCHI])
|
|
@validation.add("required_platform", platform="openstack", admin=True)
|
|
@scenario.configure(context={"admin_cleanup@openstack": ["gnocchi"]},
|
|
name="GnocchiArchivePolicy.create_delete_archive_policy")
|
|
class CreateDeleteArchivePolicy(gnocchiutils.GnocchiBase):
|
|
|
|
def run(self, definition=None, aggregation_methods=None):
|
|
"""Create archive policy and then delete it.
|
|
|
|
:param definition: List of definitions
|
|
:param aggregation_methods: List of aggregation methods
|
|
"""
|
|
if definition is None:
|
|
definition = [{"granularity": "0:00:01", "timespan": "1:00:00"}]
|
|
|
|
name = self.generate_random_name()
|
|
self.admin_gnocchi.create_archive_policy(
|
|
name, definition=definition,
|
|
aggregation_methods=aggregation_methods)
|
|
self.admin_gnocchi.delete_archive_policy(name)
|