Remove incorrent file

The files related to tempests are moved under kingbird/tests
already.
Somehow tempest/README.rst was not deleted, deleting it.

Change-Id: I2f013f5256af1e026894607bdbc06cebb19a90c7
This commit is contained in:
Ashish Singh 2016-06-03 15:56:24 +05:30
parent de100d46a5
commit 13159d8a85
1 changed files with 0 additions and 76 deletions

View File

@ -1,76 +0,0 @@
==============================
Tempest Integration of Kingbird
==============================
This directory contains Tempest tests to cover the kingbird project.
Before running Tempest test cases, Do the following
1. Clone tempest code from git::
$ git clone https://github.com/openstack/tempest.git
2. Make below changes in tempest/config.py
I) Add kingbird configurations to config file::
kingbird_group = cfg.OptGroup(name='kingbird',
title="Options for kingbird configurations")
KingbirdGroup = [
cfg.StrOpt('endpoint_type',
default='publicURL',
help="Endpoint type of Kingbird service."),
cfg.IntOpt('TIME_TO_SYNC',
default=30),
help="Maximum time to wait for a sync call to complete."),
cfg.StrOpt('endpoint_url',
help="Endpoint URL of Kingbird service."),
cfg.StrOpt('api_version',
default='v1.0',
help="Api version of Kingbird service.")
]
II) Add kingbird service to ServiceAvailableGroup as below::
cfg.BoolOpt('kingbird',
default=False,
help="Whether or not kingbird is expected to be available"),
III) Add kingbird_group and KingbirdGroup to list of opts(_opts)
3. Generate config file::
$ tox -e genconfig
It generates etc/tempest.conf.sample. Copy it to /etc/tempest/ and rename as tempest.conf
4. Make sure the default values represented by DEFAULT_QUOTAS in tempest/api/kingbird/base.py
has to be same as kingbird_global_limit section in kingbird.conf.
5. Copy tempest testcases for Kingbird::
$ cp -r tempest/tests/api/kingbird <tempest root directory>/tempest/api/
$ cp tempest/tests/common/kingbird.py <tempest root directory>/tempest/common/
6. Set kingbird = True under [service_available] section in tempest.conf::
To list all Kingbird tempest cases, go to tempest directory, then run::
$ testr list-tests kingbird
To run kingbird tempest with nosetests, go to tempest directory, then run::
$ nosetests -sv tempest/api/kingbird/test_kingbird_api.py
To run kingbird tempest plugin tests using tox, go to tempest directory, then run::
$ tox -eall-plugin kingbird
To run a specific test::
$ tox -eall-plugin tempest.api.kingbird.test_kingbird_api.KingbirdTestJSON.test_kingbird_delete_all_method
To run tempest with run_test, go to tempest directory, then run::
$ ./run_tempest.sh -N -- kingbird
To run a single test case, go to tempest directory, then run with test case name, e.g.::
$ ./run_tempest.sh -N -- tempest.api.kingbird.test_kingbird_api.KingbirdTestJSON.test_kingbird_delete_all_method