vitrage/vitrage_tempest_tests/tests/stop_vitrage_env.py
marina.koushnir@nokia.com a56f09aa54 add alarms & change tempest folder hierarchy
Change-Id: I9b668f748d96d4527ff2c27b8a644b46f6f754ab
2016-03-31 17:58:59 +00:00

38 lines
1.2 KiB
Python

# Copyright 2016 Nokia
#
# 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 oslo_config import cfg
from oslo_log import log as logging
from oslotest import base
import vitrage_tempest_tests.tests.utils as utils
LOG = logging.getLogger(__name__)
CONF = cfg.CONF
logging.register_options(CONF)
logging.setup(CONF, "vitrage")
logging.set_defaults(default_log_levels=utils.extra_log_level_defaults)
class StopVitrageEnv(base.BaseTestCase):
"""StopVitrageEnv class. Stop Vitrage env."""
def __init__(self, *args, **kwds):
super(StopVitrageEnv, self).__init__(*args, **kwds)
@staticmethod
def test_stop_vitrage_processes():
LOG.debug("Stop vitrage processes")
utils.run_from_terminal("pkill vitrage")