Files
tempest/tempest
Rajat Dhasmana fbea823a34 Add ConsistencyGroup Exceptions in tempest
The exceptions ConsistencyGroupException and
ConsistencyGroupSnapshotException are required by
cinder-tempest-plugin[1][2] when the
CG or CG Snapshot fails to create and is in error state.
These exceptions never existed as part of the original topic[3]
but failures are seen while running tests as reported in the bug.

[1] https://github.com/openstack/cinder-tempest-plugin/blob/master/cinder_tempest_plugin/services/consistencygroups_client.py#L140
[2] https://github.com/openstack/cinder-tempest-plugin/blob/master/cinder_tempest_plugin/services/consistencygroups_client.py#L172
[3] https://review.opendev.org/#/q/topic:cg-tests+(status:open+OR+status:merged)

Change-Id: I62e0ba556b884c94f6e8796a2e6f6d8083277fa4
Closes-Bug: #1858417
2020-01-24 07:00:16 +00:00
..
2018-08-21 12:46:22 +00:00
2019-03-08 16:04:05 +01:00
2019-07-25 10:56:06 +02:00
2018-12-09 19:59:12 +08:00

Tempest Field Guide Overview

Tempest is designed to be useful for a large number of different environments. This includes being useful for gating commits to OpenStack core projects, being used to validate OpenStack cloud implementations for both correctness, as well as a burn in tool for OpenStack clouds.

As such Tempest tests come in many flavors, each with their own rules and guidelines. Below is the overview of the Tempest repository structure to make this clear.

tempest/
   api/ - API tests
   scenario/ - complex scenario tests
   tests/ - unit tests for Tempest internals

Each of these directories contains different types of tests. What belongs in each directory, the rules and examples for good tests, are documented in a README.rst file in the directory.

api_field_guide

API tests are validation tests for the OpenStack API. They should not use the existing Python clients for OpenStack, but should instead use the Tempest implementations of clients. Having raw clients let us pass invalid JSON to the APIs and see the results, something we could not get with the native clients.

When it makes sense, API testing should be moved closer to the projects themselves, possibly as functional tests in their unit test frameworks.

scenario_field_guide

Scenario tests are complex "through path" tests for OpenStack functionality. They are typically a series of steps where complicated state requiring multiple services is set up exercised, and torn down.

Scenario tests should not use the existing Python clients for OpenStack, but should instead use the Tempest implementations of clients.

unit_tests_field_guide

Unit tests are the self checks for Tempest. They provide functional verification and regression checking for the internal components of Tempest. They should be used to just verify that the individual pieces of Tempest are working as expected.