AvnishPal | 8a7942e | 2016-08-23 16:11:44 +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 | |
| 14 | import os |
| 15 | |
AvnishPal | 8a7942e | 2016-08-23 16:11:44 +0530 | [diff] [blame] | 16 | from tempest.test_discover import plugins |
| 17 | |
| 18 | from ironic_inspector.test.inspector_tempest_plugin import config |
| 19 | |
| 20 | |
| 21 | class InspectorTempestPlugin(plugins.TempestPlugin): |
| 22 | def load_tests(self): |
| 23 | base_path = os.path.split(os.path.dirname( |
| 24 | os.path.abspath(__file__)))[0] |
| 25 | test_dir = "inspector_tempest_plugin/tests" |
| 26 | full_test_dir = os.path.join(base_path, test_dir) |
| 27 | return full_test_dir, base_path |
| 28 | |
| 29 | def register_opts(self, conf): |
Nishant Kumar | 6fcbdd7 | 2016-10-10 13:27:10 +0530 | [diff] [blame] | 30 | conf.register_opt(config.service_option, |
| 31 | group='service_available') |
| 32 | conf.register_group(config.baremetal_introspection_group) |
| 33 | conf.register_opts(config.BaremetalIntrospectionGroup, |
| 34 | group="baremetal_introspection") |
AvnishPal | 8a7942e | 2016-08-23 16:11:44 +0530 | [diff] [blame] | 35 | |
| 36 | def get_opt_lists(self): |
| 37 | return [ |
| 38 | (config.baremetal_introspection_group.name, |
| 39 | config.BaremetalIntrospectionGroup), |
Nishant Kumar | 6fcbdd7 | 2016-10-10 13:27:10 +0530 | [diff] [blame] | 40 | ('service_available', [config.service_option]) |
AvnishPal | 8a7942e | 2016-08-23 16:11:44 +0530 | [diff] [blame] | 41 | ] |