Provide framework for integration testing with run_tests.sh

The goal is to get run_tests.sh in a shape where it can be used and
implemented in a jenkins gate job to eventually get packstack to
gate against itself.

The scenarios provided in the test matrix aligns with the ones
that are integration tested in puppet-openstack for the sake of
standardization.

Change-Id: I68673a1f7e0584916a814296c9184b927a30aab6
This commit is contained in:
David Moreau Simard
2016-01-19 16:28:58 -05:00
parent 86a49a16e4
commit a0094c0329
4 changed files with 187 additions and 2 deletions

View File

@@ -174,3 +174,50 @@ need to go inside those directories to run puppet-lint !
$ export GEM_HOME=vendor
$ bundle install
$ bundle exec rake lint
## Packstack integration tests
Packstack is integration tested in the OpenStack gate and provides the means to
reproduce these tests on your environment if you wish.
This is the current matrix of available tests:
| - | scenario001 | scenario002 |
|:----------:|:-----------:|:-----------:|
| keystone | X | X |
| glance | X | X |
| nova | X | X |
| neutron | X | X |
| cinder | X | |
| ceilometer | X | |
| aodh | X | |
| heat | | X |
| swift | | X |
| sahara | | X |
| trove | | X |
| horizon | | X |
| manila | X | |
| nagios | X | |
To run these tests:
export SCENARIO="scenario001"
./run_tests.sh
run_tests.sh will take care of installing the required dependencies,
configure packstack to run according to the above matrix and run the complete
installation process. If the installation is successful, tempest will also
run smoke tests.
By default, run_tests.sh will set up delorean (RDO Trunk) repositories.
There are two ways of overriding default repositories:
export DELOREAN="http://someotherdomain.tld/delorean.repo"
export DELOREAN_DEPS="http://someotherdomain.tld/delorean-deps.repo"
./run_tests.sh
You can also choose to disable repository management entirely:
<setup your own custom repositories here>
export MANAGE_REPOS="false"
./run_tests.sh