Paul Van Eck 6c3f3a1a02 Add ability to upload test results
Split refstack-client into two subcommands: upload and test.
The 'test' command will run Tempest like before, while 'upload'
takes in a result file argument and will upload it to the Refstack
API url. Testing with refstack-client now saves a JSON result file
containing the content of what will or would be posted to the
Refstack API.

Change-Id: I28bcb75b51b77872f39e144ae8ffa7e64b26b233
2014-10-26 18:03:43 -07:00
2014-09-11 18:17:20 -04:00
2014-09-11 18:17:20 -04:00
2014-07-30 18:20:53 -07:00
2014-07-10 11:48:59 -07:00
2014-10-26 18:03:43 -07:00
2014-07-10 11:48:59 -07:00

refstack-client

refstack-client is a command line utility that allows you to execute Tempest test runs based on configurations you specify. When finished running Tempest it sends the passed test data back to the Refstack API server.

Setup

We've created an "easy button" for Ubuntu, Centos, RHEL and openSuSe.

$ ./setup_env

Usage

  1. Prepare a tempest configuration file that is customized to your cloud environment.

  2. Change the directory to the refstack-client directory (i.e. cd ~/refstack-client).

  3. Source to use the correct Python environment.

    source .venv/bin/activate

  4. Test your cloud by typing:

    ./refstack-client test -c <Path of the tempest configuration file to use>

    Note:

    1. Adding -v option will show the summary output.
    2. Adding -vv option will show the Tempest test result output.
    3. Adding -t option will only test a particular test case or a test group. This option can be used for quick verification of the target test cases (i.e. -t "tempest.api.identity.admin.test_roles").
    4. Adding --url option will upload the test results to the specified Refstack API server instead of the default Refstack API server. server instead of the default Refstack API server.
    5. Adding --offline option will have your test results not be uploaded.

    Upload:

    If you previously ran a test with refstack-client using the --offline option, you can upload your results to a Refstack API server by using the following command:

    ./refstack-client upload <Path of results file>

    The results file is a JSON file generated by refstack-client when a test has completed. This is saved in .venv/src/tempest/.testrepository. When you use the 'upload' command, you can also override the Refstack API server uploaded to with the --url option.

Description
Testing and result upload client for refstack
Readme 2.9 MiB
Languages
Python 91.7%
Shell 7.9%
Dockerfile 0.4%