Tempest plugin for Cinder project.
Go to file
Doug Hellmann 5404306667 fix tox python3 overrides
We want to default to running all tox environments under python 3, so
set the basepython value in each environment.

We do not want to specify a minor version number, because we do not
want to have to update the file every time we upgrade python.

We do not want to set the override once in testenv, because that
breaks the more specific versions used in default environments like
py35 and py36.

Change-Id: I56e633ab1483297f5403aaa77ba98d17012d60d8
Signed-off-by: Doug Hellmann <doug@doughellmann.com>
2018-09-26 18:50:23 -04:00
cinder_tempest_plugin Skip create from image if no glance deployed 2018-06-04 17:57:56 +02:00
.coveragerc Apply cookiecutter to newly split project 2017-07-22 07:23:48 -04:00
.gitignore Apply cookiecutter to newly split project 2017-07-22 07:23:48 -04:00
.gitreview Clean up some initial repo creation boilerplate 2017-12-20 17:10:45 +00:00
.mailmap Apply cookiecutter to newly split project 2017-07-22 07:23:48 -04:00
.testr.conf Apply cookiecutter to newly split project 2017-07-22 07:23:48 -04:00
.zuul.yaml import zuul job settings from project-config 2018-09-21 20:54:33 +02:00
CONTRIBUTING.rst Clean up some initial repo creation boilerplate 2017-12-20 17:10:45 +00:00
HACKING.rst Update the documentation link for doc migration 2018-05-03 10:58:27 +08:00
LICENSE Apply cookiecutter to newly split project 2017-07-22 07:23:48 -04:00
README.rst Clean up some initial repo creation boilerplate 2017-12-20 17:10:45 +00:00
babel.cfg Apply cookiecutter to newly split project 2017-07-22 07:23:48 -04:00
bindep.txt Clean up some initial repo creation boilerplate 2017-12-20 17:10:45 +00:00
requirements.txt Sync requirements for cinder-tempest-plugin 2018-04-09 05:56:28 +00:00
setup.cfg Refactored cinder tempest tests to cinder_tempest_plugin 2018-01-22 12:53:28 +05:30
setup.py Updated from global requirements 2018-01-05 10:38:30 +00:00
tempest_blacklist.txt Added cinder tempest plugin zuulv3 jobs to execute tempest 2018-05-14 18:40:11 +00:00
test-requirements.txt Updated from global requirements 2018-03-15 06:49:07 +00:00
tox.ini fix tox python3 overrides 2018-09-26 18:50:23 -04:00

README.rst

Tempest Integration for Cinder

This directory contains additional Cinder tempest tests.

See the tempest plugin docs for information on using it: https://docs.openstack.org/tempest/latest/plugin.html#using-plugins

To run all tests from this plugin, install cinder into your environment. Then from the tempest directory run:

$ tox -e all-plugin -- volume

It is expected that Cinder third party CI's use the all-plugin tox environment above for all test runs. Developers can also use this locally to perform more extensive testing.

Any typical devstack instance should be able to run all Cinder plugin tests. For completeness, here is an example of a devstack local.conf that should work. Update backend information to fit your environment.

[[local|localrc]]
VIRT_DRIVER=libvirt
ADMIN_PASSWORD=secret
SERVICE_TOKEN=$ADMIN_PASSWORD
MYSQL_PASSWORD=$ADMIN_PASSWORD
RABBIT_PASSWORD=$ADMIN_PASSWORD
SERVICE_PASSWORD=$ADMIN_PASSWORD
LOGFILE=$DEST/logs/stack.sh.log
LOGDAYS=2
SYSLOG=False
LOG_COLOR=False
RECLONE=yes
ENABLED_SERVICES=c-api,c-sch,c-vol,cinder,dstat,g-api,g-reg,key,mysql,
                 n-api,n-cond,n-cpu,n-crt,n-net,n-sch,rabbit,tempest
CINDER_ENABLED_BACKENDS=lvmdriver-1
CINDER_DEFAULT_VOLUME_TYPE=lvmdriver-1
CINDER_VOLUME_CLEAR=none
TEMPEST_ENABLED_BACKENDS=lvmdriver-1
TEMPEST_VOLUME_DRIVER=lvmdriver-1
TEMPEST_VOLUME_VENDOR="Open Source"
TEMPEST_STORAGE_PROTOCOL=iSCSI
LIBVIRT_FIREWALL_DRIVER=nova.virt.firewall.NoopFirewallDriver
VIRT_DRIVER=libvirt
ACTIVE_TIMEOUT=120
BOOT_TIMEOUT=120
ASSOCIATE_TIMEOUT=120
TERMINATE_TIMEOUT=120


[[post-config|$CINDER_CONF]]
[DEFAULT]
[lvmdriver-1]
volume_driver=cinder.volume.drivers.lvm.LVMISCSIDriver
volume_group=stack-volumes-1
volume_backend_name=lvmdriver-1