blob: 218f10017446af8234c94464396f495359736595 [file] [log] [blame]
AvnishPal8a7942e2016-08-23 16:11:44 +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
13
14import os
15
Dmitry Tantsurb317e112016-09-09 11:03:27 +020016from oslo_config import cfg
AvnishPal8a7942e2016-08-23 16:11:44 +053017from tempest.test_discover import plugins
18
19from ironic_inspector.test.inspector_tempest_plugin import config
20
21
22class InspectorTempestPlugin(plugins.TempestPlugin):
23 def load_tests(self):
24 base_path = os.path.split(os.path.dirname(
25 os.path.abspath(__file__)))[0]
26 test_dir = "inspector_tempest_plugin/tests"
27 full_test_dir = os.path.join(base_path, test_dir)
28 return full_test_dir, base_path
29
30 def register_opts(self, conf):
Nishant Kumar6fcbdd72016-10-10 13:27:10 +053031 conf.register_opt(config.service_option,
32 group='service_available')
33 conf.register_group(config.baremetal_introspection_group)
34 conf.register_opts(config.BaremetalIntrospectionGroup,
35 group="baremetal_introspection")
Dmitry Tantsur0de45c42016-10-17 14:31:40 +020036 if os.path.exists('/tmp/ironic-inspector-grenade'):
37 # FIXME(dtantsur): pretend like Neutron does not exist due to
38 # random failures, see https://bugs.launchpad.net/bugs/1621791.
39 cfg.CONF.set_override('neutron', False, 'service_available')
AvnishPal8a7942e2016-08-23 16:11:44 +053040
41 def get_opt_lists(self):
42 return [
43 (config.baremetal_introspection_group.name,
44 config.BaremetalIntrospectionGroup),
Nishant Kumar6fcbdd72016-10-10 13:27:10 +053045 ('service_available', [config.service_option])
AvnishPal8a7942e2016-08-23 16:11:44 +053046 ]