zun-tempest-plugin/zun_tempest_plugin/tests/tempest
Hongbin Lu 6d2529583b Temporarily disable capsule tests
Related-Bug: #1941982
Change-Id: I219042307bea53ae56515c95b380b4c4cfb03c4d
2021-08-29 17:19:30 +08:00
..
api Temporarily disable capsule tests 2021-08-29 17:19:30 +08:00
README.rst Replace git.openstack.org URLs with opendev.org URLs 2019-04-26 10:03:46 +08:00
__init__.py Initial work for zun tempest plugin 2016-06-17 04:27:22 -04:00
base.py Add container network connectivity test 2020-08-25 01:58:28 +00:00
config.py Update our service definition 2018-03-04 21:15:48 +00:00
plugin.py Update our service definition 2018-03-04 21:15:48 +00:00
utils.py Remove six 2020-05-05 12:30:42 +08:00

README.rst

Tempest Plugin

This directory contains Tempest tests to cover Zun project.

Tempest installation

To install Tempest you can issue the following commands:

$ git clone https://opendev.org/openstack/tempest/
$ cd tempest/
$ pip install .

The folder you are into now will be called <TEMPEST_DIR> from now onwards.

Please note that although it is fully working outside a virtual environment, it is recommended to install within a venv.

Zun Tempest testing setup

Before using zun tempest plugin, you need to install zun first:

$  pip install -e <ZUN_SRC_DIR>

To list all Zun tempest cases, go to tempest directory, then run:

$ testr list-tests zun

Need to adopt tempest.conf, an example as follows:

$ cat /etc/tempest/tempest.conf

[auth]
use_dynamic_credentials=True
admin_username=admin
admin_password=123
admin_project_name=admin

[identity]
disable_ssl_certificate_validation=True
uri=http://127.0.0.1:5000/v2.0/
auth_version=v2
region=RegionOne

[identity-feature-enabled]
api_v2 = true
api_v3 = false
trust = false

[oslo_concurrency]
lock_path = /tmp/

[container_service]
catalog_type = container

[debug]
trace_requests=true

To run only these tests in tempest, go to tempest directory, then run:

$ tempest run zun

To run a single test case, go to tempest directory, then run with test case name, e.g.:

$ tempest run --regex zun.tests.tempest.api.test_containers.TestContainer.test_create_list_delete