Go to file
Jason Paroly f06405659a Fix volume type test extra_specs
The test_create_from_image_with_volume_type_image_property test was
creating a volume type with extra_specs (storage_protocol and
vendor_name) that don't match the backend capabilities in many
deployments. This caused the Cinder scheduler to fail finding a
suitable host, resulting in volumes going into ERROR status.

The purpose of this test is to verify that the cinder_img_volume_type
image property correctly selects a volume type when creating a volume
from an image. The test doesn't need to validate volume type
extra_specs, so these have been removed.

This allows the test to work on any Cinder backend without requiring
specific capability matching.

Closes-Bug: #2130017
Change-Id: I0ab4e1478255c5dc4a8e4cb9ab2dc4f73b447924
Signed-off-by: Jason Paroly <jparoly@redhat.com>
2026-02-10 10:45:38 -05:00
2021-01-05 11:47:20 +01:00
2021-02-09 22:47:08 +01:00
2019-04-19 19:34:48 +00:00
2021-02-09 22:47:08 +01:00
2019-06-18 22:46:51 +08:00
2020-05-04 15:42:49 +02:00
2024-03-14 09:35:03 -04:00
2023-02-15 10:12:14 -05:00

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]]
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-bak,c-sch,c-vol,cinder,dstat,g-api,key
ENABLED_SERVICES+=,mysql,n-api,n-cond,n-cpu,n-crt,n-sch,rabbit,tempest,placement-api
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
Description
Tempest plugin for Cinder project.
Readme 6.3 MiB
Languages
Python 100%