
Modules rally.plugins.openstack.context.cleanup.manager and rally.plugins.openstack.context.cleanup.resources were deprecated in previous release and we ready to remove them, since the produce a lot of redundant warning messages. __init__ module should be empty, so code from rally.plugins.openstack.context.cleanup.__init__ moves to -> rally.plugins.openstack.context.cleanup.admin (AdminCleanup) -> rally.plugins.openstack.context.cleanup.user (UserCleanup) -> rally.plugins.openstack.context.cleanup.base (base stuff) Also tests.unit.plugins.openstack.context.test_cleanup is refactored too. Change-Id: I25cf5750cb2de0d5652dc44db75818a5e10626eb
42 lines
1.1 KiB
Python
42 lines
1.1 KiB
Python
# Copyright 2014: Mirantis Inc.
|
|
# 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 rally.common.i18n import _
|
|
from rally.common import logging
|
|
from rally import consts
|
|
from rally import exceptions
|
|
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
|
|
class NoSuchCleanupResources(exceptions.RallyException):
|
|
msg_fmt = _("Missing cleanup resource managers: %(message)s")
|
|
|
|
|
|
class CleanupMixin(object):
|
|
|
|
CONFIG_SCHEMA = {
|
|
"type": "array",
|
|
"$schema": consts.JSON_SCHEMA,
|
|
"items": {
|
|
"type": "string",
|
|
},
|
|
"additionalProperties": False
|
|
}
|
|
|
|
def setup(self):
|
|
pass
|