monasca-api/monasca_tempest_tests
Jenkins 5b768645d2 Merge "Change assertTrue(isinstance()) by optimal assert" 2016-11-11 22:05:58 +00:00
..
services Add metrics/dimensions/names into monasca-api 2016-10-07 15:25:36 -06:00
tests Merge "Change assertTrue(isinstance()) by optimal assert" 2016-11-11 22:05:58 +00:00
README.md Fix typo: remove redundant 'the' 2016-10-03 11:36:31 +07:00
__init__.py Add Monasca Tempest Tests 2015-10-16 17:44:16 -06:00
clients.py Add Monasca Tempest Tests 2015-10-16 17:44:16 -06:00
config.py Add Monasca Tempest Tests 2015-10-16 17:44:16 -06:00
plugin.py Add Monasca Tempest Tests 2015-10-16 17:44:16 -06:00

README.md

Introduction

The Monasca Tempest Tests use the OpenStack Tempest Plugin Interface. This README describes how to configure and run them using a variety of methods. Currently the devstack environment is needed to run the tests. Instructions on setting up a devstack environment can be found here: https://github.com/openstack/monasca-api/devstack/README.md.

Configuring to run the Monasca Tempest Tests

  1. Clone the OpenStack Tempest repo, and cd to it.

    git clone https://git.openstack.org/openstack/tempest.git
    cd tempest
    
  2. Create a virtualenv for running the Tempest tests and activate it. For example in the Tempest root dir

    virtualenv .venv
    source .venv/bin/activate
    
  3. Install the Tempest requirements in the virtualenv.

    pip install -r requirements.txt -r test-requirements.txt
    pip install nose
    
  4. Create etc/tempest.conf in the Tempest root dir by running the following command:

    oslo-config-generator --config-file tempest/cmd/config-generator.tempest.conf  --output-file etc/tempest.conf
    

    Add the following sections to tempest.conf for testing using the devstack environment.

     [identity]
    
    

username = mini-mon password = password tenant_name = mini-mon domain_name = Default admin_username = admin admin_password = secretadmin admin_domain_name = Default admin_tenant_name = admin alt_username = mini-mon alt_password = password alt_tenant_name = mini-mon use_ssl = False auth_version = v3 uri = http://127.0.0.1:5000/v2.0/ uri_v3 = http://127.0.0.1:35357/v3/

[auth]

use_dynamic_credentials = true
tempest_roles = monasca-user

```

Edit the variable values in the identity section to match your particular environment.
  1. Create etc/logging.conf in the Tempest root dir by making a copying logging.conf.sample.

  2. Clone the monasca-api repo in a directory somewhere outside of the Tempest root dir.

  3. Install the monasca-api in your venv, which will also register the Monasca Tempest Plugin as, monasca_tests.

    cd into the monasca-api root directory. Making sure that the tempest virtual env is still active, run the following command.

    python setup.py install
    

See the OpenStack Tempest Plugin Interface, for more details on Tempest Plugins and the plugin registration process.

Running the Monasca Tempest Tests

The Monasca Tempest Tests can be run using a variety of methods including:

  1. Testr
  2. Os-testr
  3. PyCharm
  4. Tempest Scripts in Devstack

Run the tests from the CLI using testr

Testr is a test runner that can be used to run the Tempest tests.

  1. Initializing testr is necessary to set up the .testrepository directory before using it for the first time. In the Tempest root dir:

    testr init
    
  2. Create a list of the Monasca Tempest Tests in a file:

    testr list-tests monasca_tempest_tests > monasca_tempest_tests
    
    
  3. Run the tests using testr:

    testr run --load-list=monasca_tempest_tests
    

You can also use testr to create a list of specific tests for your needs.

Run the tests using Tempest Run command

tempest run is a domain-specific command to be used as the primary entry point for running Tempest tests.

  1. In the Tempest root dir:

    tempest run -r monasca_tempest_tests
    

Run the tests from the CLI using os-testr (no file necessary)

Os-testr is a test wrapper that can be used to run the Monasca Tempest tests.

  1. In the Tempest root dir:

    ostestr --serial --regex monasca_tempest_tests
    

    --serial option is necessary here. Monasca tempest tests can't be run in parallel (default option in ostestr) because some tests depend on the same data and will randomly fail.

Running/Debugging the Monasca Tempest Tests in PyCharm

Assuming that you have already created a PyCharm project for the monasca-api do the following:

  1. In PyCharm, Edit Configurations and add a new Python tests configuration by selecting Python tests->Nosetests.
  2. Name the test. For example TestVersions.
  3. Set the path to the script with the tests to run. For example, ~/repos/monasca-api/monasca_tempest_tests/api/test_versions.py
  4. Set the name of the Class to test. For example TestVersions.
  5. Set the working directory to your local root Tempest repo. For example, ~/repos/tempest.
  6. Select the Python interpreter for your project to be the same as the one virtualenv created above. For example, ~/repos/tempest/.venv
  7. Run the tests. You should also be able to debug them.
  8. Step and repeat for other tests.

Run the tests from the CLI using tempest scripts in devstack

  1. In /opt/stack/tempest, run ./run_tempest.sh monasca_tempest_tests
  2. If asked to create a new virtual environment, select yes
  3. Activate the virtual environment source .venv/bin/activate
  4. In your monasca-api directory, run python setup.py install
  5. In /opt/stack/tempest, run ./run_tempest.sh monasca_tempest_tests

References

This section provides a few additional references that might be useful:

In addition to the above references, another source of information is the following OpenStack projects:

Issues

  • Update documentation for testing using Devstack when available.
  • Consider changing from monasca_tempest_tests to monasca_api_tempest_tests.