Tempest plugin for Cinder project.
Go to file
Sofia Enriquez f44ff14f1a Create new Ceph job with c-bak service enabled
Currently backup service is disable in Ceph jobs.
In order to solve this cinder-tempest-plugin-cbak-ceph is
defined with the c-bak service enabled.

As a matter of fact the c-bak is redundant incase of lvm job
because the parent job already has enabled the service.

In addition, Tempest provides a blacklist file so that only
storage-relevant tests are executed. Use it instead of the
custom blacklist, which is removed in this patch.

This means that some tests which were previously skipped are
now executed.

If backup tests don't work with the LVM backend, they can be
disabled through the volume_feature_enabled.backup configuration
key.

Co-authored-by: Luigi Toscano <ltoscano@redhat.com>
Change-Id: Id809c37704d4ee741df4333ca01ddd4ec22f33b5
2020-04-07 13:50:14 +00:00
cinder_tempest_plugin Allow to run with API v3 (remove deprecated options) 2019-12-12 19:27:30 +01:00
playbooks Update cinder-tempest-plugin-lvm-lio (revamp) 2020-02-21 14:31:02 +01:00
roles/change-devstack-data-owner Update cinder-tempest-plugin-lvm-lio (revamp) 2020-02-21 14:31:02 +01: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 OpenDev Migration Patch 2019-04-19 19:34:48 +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 Create new Ceph job with c-bak service enabled 2020-04-07 13:50:14 +00:00
CONTRIBUTING.rst Ussuri contrib docs community goal 2020-03-03 08:38:04 -05:00
HACKING.rst Sync Sphinx requirement 2019-06-18 22:46:51 +08:00
LICENSE Apply cookiecutter to newly split project 2017-07-22 07:23:48 -04:00
README.rst Update README.md for running cinder tests in tempest 2019-10-31 08:57:01 +03: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 Drop python 2.7 support and testing 2020-01-16 15:18:55 -05:00
setup.py Updated from global requirements 2018-01-05 10:38:30 +00:00
test-requirements.txt Drop python 2.7 support and testing 2020-01-16 15:18:55 -05:00
tox.ini Drop python 2.7 support and testing 2020-01-16 15:18:55 -05: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 -- cinder_tempest_plugin

It is expected that Cinder third party CI's use the all 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