tempest/tempest/tests
Ken'ichi Ohmichi 80369a96a2 Add a rule for blocking "-" from rand_name call
data_utils.rand_name() appends randam charactors with a hypen like:

 def rand_name(name=''):
     randbits = str(random.randint(1, 0x7fffffff))
     if name:
         return name + '-' + randbits

So it is not necessary to specify a hypen in caller side.
This patch adds a hacking rule for blocking "-" at the end of argument
of rand_name() calls.

Change-Id: I9b9f25dbe5a3ef5ac5900113bcc46e0d911becc9
2015-06-18 00:41:22 +00:00
..
cmd Merge "More Javelin Unit tests" 2015-06-15 14:56:34 +00:00
common Apply a naming rule of GET to compute clients(n*) 2015-06-15 15:01:16 +00:00
files Fix author information 2014-02-24 19:19:22 +09:00
negative Switch all uses of iteritems to use six instead 2015-05-10 12:46:22 -04:00
stress Fix last unit tests on py34 2015-05-12 18:58:00 +00: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 Enable H407,H305,H307,E122 ignore E123 2014-08-12 17:39:16 -04:00
fake_auth_provider.py Move fake get_credentials methods to test_auth 2015-01-15 07:17:17 +00:00
fake_config.py Update all Oslo module use 2015-03-11 21:07:56 +00:00
fake_http.py Enable H407,H305,H307,E122 ignore E123 2014-08-12 17:39:16 -04:00
fake_identity.py Remove CONF values from Token clients 2015-02-18 16:15:58 +09:00
test_decorators.py remove gate tag (part 3) 2015-04-27 09:13:25 -04:00
test_glance_http.py Fix last unit tests on py34 2015-05-12 18:58:00 +00:00
test_hacking.py Add a rule for blocking "-" from rand_name call 2015-06-18 00:41:22 +00:00
test_list_tests.py Fix last unit tests on py34 2015-05-12 18:58:00 +00:00
test_negative_rest_client.py Separate tests of negative_rest_client 2015-01-13 00:38:08 +00:00
test_tenant_isolation.py Add config option to disable network isolation 2015-05-27 22:14:44 +00:00
test_waiters.py Apply a show_image rule of GET to clients 2015-05-22 20:06:34 +00:00
test_wrappers.py Switch all uses of StringIO to use it from six 2015-04-23 12:00:05 -04: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)