Add freezer_tempest_scheduler job

Add freezer_tempest_scheduler job to test freezer_scheduler.

Change-Id: I77e3e18439bbc89b4088081a35261547075d9aa9
This commit is contained in:
Cai Hui 2018-11-01 08:02:10 -04:00
parent a8d8f23755
commit 8c03fcbcbc
4 changed files with 148 additions and 0 deletions

View File

@ -6,12 +6,14 @@
jobs:
- freezer-tempest-basic
- freezer-tempest-client
- freezer-tempest-scheduler
gate:
queue: freezer
jobs:
- freezer-tempest-basic
- freezer-tempest-client
- freezer-tempest-scheduler
- job:
name: freezer-tempest-basic
@ -53,3 +55,11 @@
voting: true
vars:
tempest_test_regex: freezer_tempest_plugin.tests.freezerclient
- job:
name: freezer-tempest-scheduler
parent: freezer-tempest-basic
voting: true
vars:
tempest_test_regex: freezer_tempest_plugin.tests.scheduler

View File

@ -0,0 +1,81 @@
# (C) opyright 2018 ZTE Corporation.
#
# 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.
import os
import subprocess
from tempest import test
class BaseFreezerTest(test.BaseTestCase):
credentials = ['primary']
def __init__(self, *args, **kwargs):
super(BaseFreezerTest, self).__init__(*args, **kwargs)
# noinspection PyAttributeOutsideInit
def setUp(self):
super(BaseFreezerTest, self).setUp()
self.get_environ()
def tearDown(self):
super(BaseFreezerTest, self).tearDown()
@classmethod
def get_auth_url(cls):
return cls.os_primary.auth_provider.auth_client.auth_url[:-len(
'/auth/tokens')]
@classmethod
def setup_clients(cls):
super(BaseFreezerTest, cls).setup_clients()
cls.get_environ()
@classmethod
def get_environ(cls):
os.environ['OS_PASSWORD'] = cls.os_primary.credentials.password
os.environ['OS_USERNAME'] = cls.os_primary.credentials.username
os.environ['OS_PROJECT_NAME'] = cls.os_primary.credentials.project_name
os.environ['OS_TENANT_NAME'] = cls.os_primary.credentials.project_name
os.environ['OS_PROJECT_DOMAIN_NAME'] = \
cls.os_primary.credentials.project_domain_name
os.environ['OS_USER_DOMAIN_NAME'] = \
cls.os_primary.credentials.user_domain_name
# Allow developers to set OS_AUTH_URL when developing so that
# Keystone may be on a host other than localhost.
if 'OS_AUTH_URL' not in os.environ:
os.environ['OS_AUTH_URL'] = cls.get_auth_url()
# Mac OS X uses gtar located in /usr/local/bin
os.environ['PATH'] = '/usr/local/bin:' + os.environ['PATH']
return os.environ
def run_subprocess(self, sub_process_args, fail_message):
proc = subprocess.Popen(sub_process_args,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
env=self.environ, shell=False)
out, err = proc.communicate()
self.assertEqual(0, proc.returncode,
fail_message + " Output: {0}. "
"Error: {1}".format(out, err))
# self.assertEqual('', err,
# fail_message + " Output: {0}. "
# "Error: {1}".format(out, err))

View File

@ -0,0 +1,57 @@
# (C) opyright 2018 ZTE Corporation.
#
# 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 freezer_tempest_plugin.tests.scheduler import base
from tempest.lib import decorators
class TestFreezerCmdAction(base.BaseFreezerTest):
def __init__(self, *args, **kwargs):
super(TestFreezerCmdAction, self).__init__(*args, **kwargs)
def setUp(self):
super(TestFreezerCmdAction, self).setUp()
self.environ = super(TestFreezerCmdAction, self).get_environ()
def tearDown(self):
super(TestFreezerCmdAction, self).tearDown()
@decorators.attr(type="gate")
def test_freezer_schedulers_restart(self):
args = ['freezer-scheduler', 'restart']
self.run_subprocess(args, "Freezer scheduler restart.")
@decorators.attr(type="gate")
def test_freezer_schedulers_stop(self):
args = ['freezer-scheduler', 'stop']
self.run_subprocess(args, "Freezer scheduler stop")
@decorators.attr(type="gate")
def test_freezer_schedulers_start(self):
args = ['freezer-scheduler', 'start']
self.run_subprocess(args, "Freezer scherduler start")
@decorators.attr(type="gate")
def test_freezer_schedulers_reload(self):
args = ['freezer-scheduler', 'reload']
self.run_subprocess(args, "Freezer scheduler reload")
@decorators.attr(type="gate")
def test_freezer_schedulers_status(self):
args = ['freezer-scheduler', 'status']
self.run_subprocess(args, "Freezer scheduler status")