tempest/tempest/tests
Brant Knudson 7729380f83 Fix version replacement when path
When an API server is on an unversioned path (for example, keystone
is on http://localhost/identity), verify-config would fail with a
404 Not Found because the version wasn't put on the URL as required
(for example, the v2.0 keystone url should have been
http://localhost/identity/v2.0 but was instead
http://localhost/identity). This is because the version replacement
code wasn't adding the version when it wasn't present and a path
was there.

Change-Id: I559bd967a87b646906f37df81a7db096148488db
2016-04-11 15:31:36 -05:00
..
cmd Merge "More info when fail to get api version" 2016-03-28 18:09:53 +00:00
common Change assertTrue(isinstance()) by optimal assert 2016-04-08 10:33:23 +02:00
files Fix author information 2014-02-24 19:19:22 +09:00
lib Fix version replacement when path 2016-04-11 15:31:36 -05:00
negative Switch all uses of iteritems to use six instead 2015-05-10 12:46:22 -04:00
services Move keypair client to lib interfaces 2016-04-07 00:42:26 +00:00
stress Use tempest.lib code in tempest 2016-02-24 10:43:59 -05:00
README.rst Add unit test section to the field guide index 2014-07-25 16:13:10 -04:00
__init__.py Add unittest framework + tests for wrapper scripts 2013-08-27 11:55:13 -04:00
base.py Fix H404/405 violations for unit tests 2015-11-19 08:45:06 +00:00
fake_auth_provider.py Move fake get_credentials methods to test_auth 2015-01-15 07:17:17 +00:00
fake_config.py deprecate use of tenant in configs 2016-04-06 22:26:18 +01:00
fake_http.py Fix H404/405 violations for unit tests 2015-11-19 08:45:06 +00:00
fake_identity.py Switch all uses of json to oslo_serialization 2015-07-14 11:14:29 -04:00
fake_tempest_plugin.py Add initial unit test for tempest plugins 2015-08-28 10:16:43 +02:00
test_base_test.py Allow get_tenant_network() for non-primary creds 2016-03-07 14:51:56 +00:00
test_decorators.py Fix `test_requires_ext_decorator_with_all_ext_enabled` 2016-03-30 10:57:51 +02:00
test_glance_http.py Change assertTrue(isinstance()) by optimal assert 2016-04-08 10:33:23 +02:00
test_hacking.py Add pep8 check for tempest.lib import 2016-03-29 11:14:05 -07:00
test_list_tests.py Fix last unit tests on py34 2015-05-12 18:58:00 +00:00
test_microversions.py Merge "Migrated microversion testing framework to tempest/lib" 2016-03-16 00:56:29 +00:00
test_negative_rest_client.py Separate tests of negative_rest_client 2015-01-13 00:38:08 +00:00
test_tempest_plugin.py Add initial unit test for tempest plugins 2015-08-28 10:16:43 +02:00
test_wrappers.py Switch all uses of StringIO to use it from six 2015-04-23 12:00:05 -04:00
utils.py Unit tests: mock some time.sleep and time.time 2016-03-03 14:33:45 +01:00

README.rst

Tempest Field Guide to Unit tests

What are these tests?

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. They should not require an external service to be running and should be able to run solely from the tempest tree.

Why are these tests in tempest?

These tests exist to make sure that the mechanisms that we use inside of tempest to are valid and remain functional. They are only here for self validation of tempest.

Scope of these tests

Unit tests should not require an external service to be running or any extra configuration to run. Any state that is required for a test should either be mocked out or created in a temporary test directory. (see test_wrappers.py for an example of using a temporary test directory)