tobiko/tobiko/tests/faults/iha/test_cloud_recovery.py

45 lines
1.7 KiB
Python

# Copyright (c) 2021 Red Hat, 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 __future__ import absolute_import
import testtools
from tobiko.tests.faults.ha import cloud_disruptions
from tobiko.tripleo import pacemaker
from tobiko.tripleo import undercloud
@undercloud.skip_if_missing_undercloud
class DisruptTripleoInstanceHaTest(testtools.TestCase):
@pacemaker.skip_if_instanceha_not_delpoyed
def test_instanceha_evacuation_hard_reset(self):
cloud_disruptions.check_iha_evacuation_hard_reset()
@pacemaker.skip_if_instanceha_not_delpoyed
def test_instanceha_evacuation_network_disruption(self):
cloud_disruptions.check_iha_evacuation_network_disruption()
@pacemaker.skip_if_instanceha_not_delpoyed
def test_instanceha_evacuation_hard_reset_shutoff_instance(self):
cloud_disruptions.check_iha_evacuation_hard_reset_shutoff_instance()
# @pacemaker.skip_if_instanceha_not_delpoyed
# def test_check_instanceha_evacuation_evac_image_vm(self):
# overcloud_health_checks(passive_checks_only=True)
# cloud_disruptions.check_iha_evacuation_evac_image_vm()