tempest/tempest
Ken'ichi Ohmichi e9f50413ad Move _get_region() to NegativeRestClient
_get_region() was used for getting a region from CONF for each project,
but most projects' sections contain a region value and it is easy to
specify its value instead of _get_region().
In addition, RestClient will become a tempest-lib class and it is needed
to separate CONF values from a RestClient class.
This patch moves _get_region() to NegativeRestClient and makes each client
specify its own CONF value.

Change-Id: Ib26badf64e7cddf4158e4720e193b3129e8fdb12
2015-01-05 23:28:32 +00:00
..
api Remove ObjectClientCustomizedHeader class 2015-01-05 23:28:32 +00:00
api_schema Delete unused schema definition console_output 2015-01-02 09:27:56 +01:00
cli Added neutron cli test case for fwaas 2014-11-20 07:41:27 -08:00
cmd Merge "Change v3 identity client methods to return one value" 2015-01-05 08:28:26 +00:00
common Move _get_region() to NegativeRestClient 2015-01-05 23:28:32 +00:00
hacking Fix doc for usage of python clients in scenario tests 2014-11-26 17:04:37 +09:00
openstack Sync latest log module from oslo-incubator 2014-11-20 03:44:00 +00:00
scenario Merge "Correctly fetch the ips from server" 2014-12-30 21:16:08 +00:00
services Move _get_region() to NegativeRestClient 2015-01-05 23:28:32 +00:00
stress Remove Resp status code checks in stress tests 2014-10-03 09:38:36 +09:00
test_discover Use unittest2.TestSuite with py26 2014-01-27 10:54:44 +01:00
tests Move _get_region() to NegativeRestClient 2015-01-05 23:28:32 +00:00
thirdparty EC2: do not assume order in dictionary 2014-12-22 19:02:29 +05:30
__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
auth.py Drop ComputeAdmin configs, credentials and manager 2014-12-30 09:49:18 +00:00
clients.py Remove ObjectClientCustomizedHeader class 2015-01-05 23:28:32 +00:00
config.py Merge "Drop ComputeAdmin configs, credentials and manager" 2015-01-02 14:52:41 +00:00
exceptions.py Raise a new exception NotImplemented for HTTP501 2014-12-11 11:42:58 +00:00
manager.py Drop client_type for auth module 2014-10-01 11:38:45 +01:00
README.rst Fix doc for usage of python clients in scenario tests 2014-11-26 17:04:37 +09:00
test.py Merge "Remove Nova v3 API config" 2014-12-30 21:28:23 +00: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 proposed Havana restructuring for Tempest to make this clear.

tempest/
   api/ - API tests
   cli/ - CLI tests
   scenario/ - complex scenario tests
   stress/ - stress tests
   thirdparty/ - 3rd party api 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.

cli_field_guide

CLI tests use the openstack CLI to interact with the OpenStack cloud. CLI testing in unit tests is somewhat difficult because unlike server testing, there is no access to server code to instantiate. Tempest seems like a logical place for this, as it prereqs having a running OpenStack cloud.

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.

third_party_field_guide -----------------------------

Many openstack components include 3rdparty API support. It is completely legitimate for Tempest to include tests of 3rdparty APIs, but those should be kept separate from the normal OpenStack validation.

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.