blob: 9f760110c45c3d4a53f4857a0dd2c2f3154fff59 [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 self.client = self.orchestration_client
24
Steven Hardyd6b8ddf2016-01-18 17:23:20 +000025 def check_skip(self):
Bo Wanga5bfe022016-02-16 20:04:59 +080026 test_cls_name = reflection.get_class_name(self, fully_qualified=False)
Rabi Mishra94c43722015-08-12 18:39:38 +053027 test_method_name = '.'.join([test_cls_name, self._testMethodName])
28 test_skipped = (self.conf.skip_functional_test_list and (
29 test_cls_name in self.conf.skip_functional_test_list or
30 test_method_name in self.conf.skip_functional_test_list))
31
Rabi Mishra477efc92015-07-31 13:01:45 +053032 if self.conf.skip_functional_tests or test_skipped:
33 self.skipTest('Test disabled in conf, skipping')