Add host maintenance tempest

Change-Id: I03a52ed759cf4013ecef9a9d36a558a4291c0bc8
This commit is contained in:
licanwei 2018-12-11 17:27:18 +08:00
parent b1238336f8
commit 0db7f04087

View File

@ -0,0 +1,104 @@
# -*- encoding: utf-8 -*-
#
#
# 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 __future__ import unicode_literals
import functools
from oslo_log import log
from tempest import config
from tempest.lib.common.utils import test_utils
from watcher_tempest_plugin.tests.scenario import base
CONF = config.CONF
LOG = log.getLogger(__name__)
class TestExecuteHostMaintenanceStrategy(base.BaseInfraOptimScenarioTest):
"""Tests for host_maintenance"""
GOAL = "cluster_maintaining"
@classmethod
def skip_checks(cls):
super(TestExecuteHostMaintenanceStrategy, cls).skip_checks()
@classmethod
def resource_setup(cls):
super(TestExecuteHostMaintenanceStrategy, cls).resource_setup()
if CONF.compute.min_compute_nodes < 2:
raise cls.skipException(
"Less than 2 compute nodes, skipping multinode tests.")
if not CONF.compute_feature_enabled.live_migration:
raise cls.skipException("Live migration is not enabled")
cls.initial_compute_nodes_setup = cls.get_compute_nodes_setup()
enabled_compute_nodes = [cn for cn in cls.initial_compute_nodes_setup
if cn.get('status') == 'enabled']
cls.wait_for_compute_node_setup()
if len(enabled_compute_nodes) < 2:
raise cls.skipException(
"Less than 2 compute nodes are enabled, "
"skipping multinode tests.")
def test_execute_host_maintenance(self):
"""Execute an action plan using the host_maintenance strategy"""
self.addCleanup(self.rollback_compute_nodes_status)
instances = self._create_one_instance_per_host()
self._pack_all_created_instances_on_one_host(instances)
hostname = instances[0].get('OS-EXT-SRV-ATTR:hypervisor_hostname')
audit_parameters = {"maintenance_node": hostname}
_, goal = self.client.show_goal(self.GOAL)
_, strategy = self.client.show_strategy("host_maintenance")
_, audit_template = self.create_audit_template(
goal['uuid'], strategy=strategy['uuid'])
self.assertTrue(test_utils.call_until_true(
func=functools.partial(
self.has_action_plans_finished),
duration=600,
sleep_for=2
))
_, audit = self.create_audit(
audit_template['uuid'], parameters=audit_parameters)
try:
self.assertTrue(test_utils.call_until_true(
func=functools.partial(
self.has_audit_finished, audit['uuid']),
duration=600,
sleep_for=2
))
except ValueError:
self.fail("The audit has failed!")
_, finished_audit = self.client.show_audit(audit['uuid'])
if finished_audit.get('state') in ('FAILED', 'CANCELLED'):
self.fail("The audit ended in unexpected state: %s!" %
finished_audit.get('state'))
_, action_plans = self.client.list_action_plans(
audit_uuid=audit['uuid'])
action_plan = action_plans['action_plans'][0]
_, action_plan = self.client.show_action_plan(action_plan['uuid'])
_, action_list = self.client.list_actions(
action_plan_uuid=action_plan["uuid"])