blob: 452e05535491158cb436ad6c282d20a34ea2f308 [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
13from heat_integrationtests.common import test
14
15
16class FunctionalTestsBase(test.HeatIntegrationTest):
17
18 def setUp(self):
19 super(FunctionalTestsBase, self).setUp()
Steven Hardyd6b8ddf2016-01-18 17:23:20 +000020 self.check_skip()
Rabi Mishra477efc92015-07-31 13:01:45 +053021 self.client = self.orchestration_client
22
Steven Hardyd6b8ddf2016-01-18 17:23:20 +000023 def check_skip(self):
Rabi Mishra94c43722015-08-12 18:39:38 +053024 test_cls_name = self.__class__.__name__
25 test_method_name = '.'.join([test_cls_name, self._testMethodName])
26 test_skipped = (self.conf.skip_functional_test_list and (
27 test_cls_name in self.conf.skip_functional_test_list or
28 test_method_name in self.conf.skip_functional_test_list))
29
Rabi Mishra477efc92015-07-31 13:01:45 +053030 if self.conf.skip_functional_tests or test_skipped:
31 self.skipTest('Test disabled in conf, skipping')