Rabi Mishra | 477efc9 | 2015-07-31 13:01:45 +0530 | [diff] [blame] | 1 | # 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 | |
| 13 | from heat_integrationtests.common import test |
| 14 | |
| 15 | |
| 16 | class FunctionalTestsBase(test.HeatIntegrationTest): |
| 17 | |
| 18 | def setUp(self): |
| 19 | super(FunctionalTestsBase, self).setUp() |
Steven Hardy | d6b8ddf | 2016-01-18 17:23:20 +0000 | [diff] [blame^] | 20 | self.check_skip() |
Rabi Mishra | 477efc9 | 2015-07-31 13:01:45 +0530 | [diff] [blame] | 21 | self.client = self.orchestration_client |
| 22 | |
Steven Hardy | d6b8ddf | 2016-01-18 17:23:20 +0000 | [diff] [blame^] | 23 | def check_skip(self): |
Rabi Mishra | 94c4372 | 2015-08-12 18:39:38 +0530 | [diff] [blame] | 24 | 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 Mishra | 477efc9 | 2015-07-31 13:01:45 +0530 | [diff] [blame] | 30 | if self.conf.skip_functional_tests or test_skipped: |
| 31 | self.skipTest('Test disabled in conf, skipping') |