Moving commands for (re,un)instaling Tempest to "verify" category

This patch moves (re,un)install commands for Tempest from "tempest"
category to "verify" category. Now to (re,un)install Tempest we can
execute the following commands:

    $ rally verify install
    $ rally verify uninstall
    $ rally verify reinstall

In addition, missing unit tests were added. The corresponding changes
were made in rally-verify.sh script to pass Jenkins check.

Implements: blueprint improve-tempest-manage-cli

Change-Id: Ibe6713b755982acf1f7e4b89b13fd2a0dad7c034
This commit is contained in:
Yaroslav Lobankov 2015-09-20 12:30:21 +03:00
parent 924d548316
commit c4ae5554d4

View File

@ -53,10 +53,13 @@ _rally()
OPTS["verify_compare"]="--uuid-1 --uuid-2 --csv --html --json --output-file --threshold"
OPTS["verify_detailed"]="--uuid --sort-by"
OPTS["verify_genconfig"]="--deployment --tempest-config --override"
OPTS["verify_install"]="--deployment --source"
OPTS["verify_list"]=""
OPTS["verify_reinstall"]="--deployment --tempest-config --source"
OPTS["verify_results"]="--uuid --html --json --output-file"
OPTS["verify_show"]="--uuid --sort-by --detailed"
OPTS["verify_start"]="--deployment --set --regex --tempest-config --no-use --system-wide-install"
OPTS["verify_uninstall"]="--deployment"
OPTS["verify_use"]="--verification"
for OPT in ${!OPTS[*]} ; do