blob: 73ccf1d4bc5ebe0752086f7c8346de82625afae2 [file] [log] [blame]
Rabi Mishra477efc92015-07-31 13:01:45 +05301# Licensed under the Apache License, Version 2.0 (the "License"); you may
2# not use this file except in compliance with the License. You may obtain
3# a copy of the License at
4#
5# http://www.apache.org/licenses/LICENSE-2.0
6#
7# Unless required by applicable law or agreed to in writing, software
8# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
9# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
10# License for the specific language governing permissions and limitations
11# under the License.
12
Bo Wanga5bfe022016-02-16 20:04:59 +080013from oslo_utils import reflection
14
Rabi Mishra477efc92015-07-31 13:01:45 +053015from heat_integrationtests.common import test
16
17
18class FunctionalTestsBase(test.HeatIntegrationTest):
19
20 def setUp(self):
21 super(FunctionalTestsBase, self).setUp()
Steven Hardyd6b8ddf2016-01-18 17:23:20 +000022 self.check_skip()
Rabi Mishra477efc92015-07-31 13:01:45 +053023
Steven Hardyd6b8ddf2016-01-18 17:23:20 +000024 def check_skip(self):
Bo Wanga5bfe022016-02-16 20:04:59 +080025 test_cls_name = reflection.get_class_name(self, fully_qualified=False)
Rabi Mishra94c43722015-08-12 18:39:38 +053026 test_method_name = '.'.join([test_cls_name, self._testMethodName])
27 test_skipped = (self.conf.skip_functional_test_list and (
28 test_cls_name in self.conf.skip_functional_test_list or
29 test_method_name in self.conf.skip_functional_test_list))
30
Rabi Mishra477efc92015-07-31 13:01:45 +053031 if self.conf.skip_functional_tests or test_skipped:
32 self.skipTest('Test disabled in conf, skipping')