tempest/tempest
Matthew Treinish ffad78a29f
Fix base unit test class location
The recent commit I45d73891f3c0829a2378a032dfc02e5ac0ee34b7
deduplicated the base test class methods from the tempest.lib
reintegration. However the surviving base class was put in the wrong
namespace. The base class is just that a base to build the individual
test subclass off of. It's very confusing for that to not live in the
base tests namespace. While the code in lib is supposed to be self
contained there isn't a reason to do that here for the unit tests,
especially because in this case the import heiarchy becomes more
confusing with the base living in a submodule. This commit moves the
base class to the base tempest.tests namespace where it really
belongs.

Change-Id: I079eeb1135eed3254e5e9dbebac8a52b979303c7
2016-04-22 18:11:30 -04:00
..
api Merge "Microversion v2.20 tests: nova volume operations when shelved" 2016-04-22 13:47:15 +00:00
api_schema Move keypair client to lib interfaces 2016-04-07 00:42:26 +00:00
cmd Fix account generator error message 2016-04-22 05:15:17 -05:00
common Move shelve server logic in compute utility 2016-04-15 18:49:26 +09:00
hacking Add pep8 check to use data_utils.rand_uuid() 2016-04-19 14:23:00 -07:00
lib Merge "Microversion v2.20 tests: nova volume operations when shelved" 2016-04-22 13:47:15 +00:00
scenario Move shelve server logic in compute utility 2016-04-15 18:49:26 +09:00
services "is_resource_deleted" fails to verify delete 2016-04-15 06:17:36 -07:00
stress Merge "Removed deprecation warning from 'tempest --help'" 2016-03-30 00:37:30 +00:00
test_discover Use tempest.lib code in tempest 2016-02-24 10:43:59 -05:00
tests Fix base unit test class location 2016-04-22 18:11:30 -04:00
README.rst Remove the ec2 api tests from tempest 2015-12-17 17:59:20 -05:00
__init__.py Changes the namespace from storm to tempest, as well as adding addition tests and improvements 2011-12-06 16:48:03 -06:00
clients.py Merge "Move keypair client to lib interfaces" 2016-04-11 05:53:18 +00:00
config.py deprecate use of tenant in configs 2016-04-06 22:26:18 +01:00
exceptions.py Remove definitions of unused exception classes. 2016-04-18 19:53:23 +02:00
manager.py Use tempest.lib code in tempest 2016-02-24 10:43:59 -05:00
test.py Add pep8 check to use data_utils.rand_uuid() 2016-04-19 14:23:00 -07:00
version.py Add reno to tempest 2016-02-24 11:31:32 -05:00

README.rst

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 proposed Havana restructuring for Tempest to make this clear.

tempest/
   api/ - API tests
   scenario/ - complex scenario tests
   stress/ - stress tests

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. This allows us to test both XML and JSON. Having raw clients also lets us pass invalid JSON and XML 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.

stress_field_guide

Stress tests are designed to stress an OpenStack environment by running a high workload against it and seeing what breaks. The stress test framework runs several test jobs in parallel and can run any existing test in Tempest as a stress job.

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.