Merge "Add plugin interface for extending sample config generation"
diff --git a/tempest/config.py b/tempest/config.py
index ab503e3..48417c3 100644
--- a/tempest/config.py
+++ b/tempest/config.py
@@ -1224,7 +1224,10 @@
The purpose of this is to allow tools like the Oslo sample config file
generator to discover the options exposed to users.
"""
- return [(getattr(g, 'name', None), o) for g, o in _opts]
+ ext_plugins = plugins.TempestTestPluginManager()
+ opt_list = [(getattr(g, 'name', None), o) for g, o in _opts]
+ opt_list.extend(ext_plugins.get_plugin_options_list())
+ return opt_list
# this should never be called outside of this class
diff --git a/tempest/test_discover/plugins.py b/tempest/test_discover/plugins.py
index 45cd609..640b004 100644
--- a/tempest/test_discover/plugins.py
+++ b/tempest/test_discover/plugins.py
@@ -51,6 +51,16 @@
"""
return
+ @abc.abstractmethod
+ def get_opt_lists(self):
+ """Method to get a list of options for sample config generation
+
+ :return option_list: A list of tuples with the group name and options
+ in that group.
+ :rtype: list
+ """
+ return []
+
@misc.singleton
class TempestTestPluginManager(object):
@@ -79,3 +89,11 @@
def register_plugin_opts(self, conf):
for plug in self.ext_plugins:
plug.obj.register_opts(conf)
+
+ def get_plugin_options_list(self):
+ plugin_options = []
+ for plug in self.ext_plugins:
+ opt_list = plug.obj.get_opt_lists()
+ if opt_list:
+ plugin_options.extend(opt_list)
+ return plugin_options