cinder/cinder/tests/tempest
jeremy.zhang 141b5c6229 Fix test case in test_volume_unicode.py
The test case `test_snapshot_create_volume_description_non_ascii_code`
in test_volume_unicode.py breaks the CI job [1], as the test case makes
a wrong assumption that the 'descrption' of snapshot will be inherited
from source volume. This patch aims to fix it.

[1] legacy-tempest-dsvm-full-devstack-plugin-ceph

Change-Id: I038684acc488fb1ddba0daff348a23ebf45083da
Closes-Bug: #1736676
2017-12-09 10:34:30 +08:00
..
api Fix test case in test_volume_unicode.py 2017-12-09 10:34:30 +08:00
scenario Move and rename tempest_tests to cinder/tests/tempest 2016-05-03 17:55:20 +00:00
services Tempest for revert-to-snapshot 2017-06-27 22:38:31 +00:00
README.rst Remove SCREEN_LOGDIR from devstack install setting 2017-09-25 16:05:49 +08:00
__init__.py Move and rename tempest_tests to cinder/tests/tempest 2016-05-03 17:55:20 +00:00
cinder_clients.py Fix tempest test revet_client typo 2017-10-02 16:31:00 -04:00
opts.py Address importing directory issue 2017-09-28 13:32:16 +08:00
plugin.py Address importing directory issue 2017-09-28 13:32:16 +08: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``