blob: f92f63eea54ae0a96e141207597fae106e9bc5c6 [file] [log] [blame]
Matthew Treinish3a851dc2015-07-30 11:34:03 -04001=============================
2Tempest Test Plugin Interface
3=============================
4
5Tempest has an external test plugin interface which enables anyone to integrate
6an external test suite as part of a tempest run. This will let any project
7leverage being run with the rest of the tempest suite while not requiring the
8tests live in the tempest tree.
9
10Creating a plugin
11=================
12
13Creating a plugin is fairly straightforward and doesn't require much additional
14effort on top of creating a test suite using tempest-lib. One thing to note with
15doing this is that the interfaces exposed by tempest are not considered stable
16(with the exception of configuration variables which ever effort goes into
17ensuring backwards compatibility). You should not need to import anything from
18tempest itself except where explicitly noted. If there is an interface from
19tempest that you need to rely on in your plugin it likely needs to be migrated
20to tempest-lib. In that situation, file a bug, push a migration patch, etc. to
21expedite providing the interface in a reliable manner.
22
23Plugin Class
24------------
25
26To provide tempest with all the required information it needs to be able to run
27your plugin you need to create a plugin class which tempest will load and call
28to get information when it needs. To simplify creating this tempest provides an
29abstract class that should be used as the parent for your plugin. To use this
30you would do something like the following::
31
32 from tempest.test_discover import plugin
33
34 class MyPlugin(plugin.TempestPlugin):
35
36Then you need to ensure you locally define all of the methods in the abstract
37class, you can refer to the api doc below for a reference of what that entails.
38
39Also, note eventually this abstract class will likely live in tempest-lib, when
40that migration occurs a deprecation shim will be added to tempest so as to not
41break any existing plugins. But, when that occurs migrating to using tempest-lib
42as the source for the abstract class will be prudent.
43
44Abstract Plugin Class
45^^^^^^^^^^^^^^^^^^^^^
46
47.. autoclass:: tempest.test_discover.plugins.TempestPlugin
48 :members:
49
50Entry Point
51-----------
52
53Once you've created your plugin class you need to add an entry point to your
54project to enable tempest to find the plugin. The entry point must be added
55to the "tempest.test_plugins" namespace.
56
57If you are using pbr this is fairly straightforward, in the setup.cfg just add
58something like the following::
59
60 [entry_points]
61 tempest.test_plugins =
62 plugin_name = module.path:PluginClass
63
64Plugin Structure
65----------------
66
67While there are no hard and fast rules for the structure a plugin, there are
68basically no constraints on what the plugin looks like as long as the 2 steps
69above are done. However, there are some recommended patterns to follow to make
70it easy for people to contribute and work with your plugin. For example, if you
71create a directory structure with something like::
72
73 plugin_dir/
74 config.py
75 plugin.py
76 tests/
77 api/
78 scenario/
79 services/
80 client.py
81
82That will mirror what people expect from tempest. The file
83
84* **config.py**: contains any plugin specific configuration variables
85* **plugin.py**: contains the plugin class used for the entry point
86* **tests**: the directory where test discovery will be run, all tests should
87 be under this dir
88* **services**: where the plugin specific service clients are
89
90Additionally, when you're creating the plugin you likely want to follow all
91of the tempest developer and reviewer documentation to ensure that the tests
92being added in the plugin act and behave like the rest of tempest.
93
Matthew Treinish9392a832015-08-24 10:00:49 -040094Dealing with configuration options
95^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
96
97Historically Tempest didn't provide external guarantees on its configuration
98options. However, with the introduction of the plugin interface this is no
99longer the case. An external plugin can rely on using any configuration option
100coming from Tempest, there will be at least a full deprecation cycle for any
101option before it's removed. However, just the options provided by Tempest
102may not be sufficient for the plugin. If you need to add any plugin specific
103configuration options you should use the ``register_opts`` and
104``get_opt_lists`` methods to pass them to Tempest when the plugin is loaded.
105When adding configuration options the ``register_opts`` method gets passed the
106CONF object from tempest. This enables the plugin to add options to both
107existing sections and also create new configuration sections for new options.
108
Matthew Treinish3a851dc2015-07-30 11:34:03 -0400109Using Plugins
110=============
111
112Tempest will automatically discover any installed plugins when it is run. So by
113just installing the python packages which contain your plugin you'll be using
114them with tempest, nothing else is really required.
115
116However, you should take care when installing plugins. By their very nature
117there are no guarantees when running tempest with plugins enabled about the
118quality of the plugin. Additionally, while there is no limitation on running
119with multiple plugins it's worth noting that poorly written plugins might not
120properly isolate their tests which could cause unexpected cross interactions
121between plugins.
122
123Notes for using plugins with virtualenvs
124----------------------------------------
125
126When using a tempest inside a virtualenv (like when running under tox) you have
127to ensure that the package that contains your plugin is either installed in the
128venv too or that you have system site-packages enabled. The virtualenv will
129isolate the tempest install from the rest of your system so just installing the
130plugin package on your system and then running tempest inside a venv will not
131work.
132
133Tempest also exposes a tox job, all-plugin, which will setup a tox virtualenv
134with system site-packages enabled. This will let you leverage tox without
135requiring to manually install plugins in the tox venv before running tests.