From 903f1fd7b87b7fd58596e4eae06149f716387f82 Mon Sep 17 00:00:00 2001 From: Cédric Ollivier Date: Sat, 26 Oct 2019 18:14:47 +0200 Subject: Add keystone-tempest-plugin MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It adds tempest_keystone which runs the tests proposed by keystone-tempest-plugin [1]. [1] https://opendev.org/openstack/keystone-tempest-plugin Change-Id: I83db584c37fe63a549ccf396b03e034778254b3a Signed-off-by: Cédric Ollivier (cherry picked from commit 22ec0c1008b81f368476d8cea84117a93d15dab2) --- docker/smoke/Dockerfile | 11 +++++++++-- docker/smoke/testcases.yaml | 15 +++++++++++++++ 2 files changed, 24 insertions(+), 2 deletions(-) (limited to 'docker') diff --git a/docker/smoke/Dockerfile b/docker/smoke/Dockerfile index 561b436d8..15aecd667 100644 --- a/docker/smoke/Dockerfile +++ b/docker/smoke/Dockerfile @@ -7,6 +7,7 @@ ARG REFSTACK_TARGET=2018.11 ARG PATROLE_TAG=0.5.0 ARG NEUTRON_TEMPEST_TAG=0.3.0 ARG CINDER_TEMPEST_TAG=0.2.0 +ARG KEYSTONE_TEMPEST_TAG=0.2.0 ARG BARBICAN_TAG=0.1.0 ARG OCTAVIA_TAG=1.0.0 @@ -34,6 +35,11 @@ RUN apk --no-cache add --update libxml2 libxslt && \ git fetch --tags https://git.openstack.org/openstack/cinder-tempest-plugin.git $CINDER_TEMPEST_TAG && \ git checkout FETCH_HEAD) && \ update-requirements -s --source /src/openstack-requirements /src/cinder-tempest-plugin && \ + git init /src/keystone-tempest-plugin && \ + (cd /src/keystone-tempest-plugin && \ + git fetch --tags https://git.openstack.org/openstack/keystone-tempest-plugin.git $KEYSTONE_TEMPEST_TAG && \ + git checkout FETCH_HEAD) && \ + update-requirements -s --source /src/openstack-requirements /src/keystone-tempest-plugin && \ git init /src/barbican-tempest-plugin && \ (cd /src/barbican-tempest-plugin && \ git fetch --tags https://opendev.org/openstack/barbican-tempest-plugin.git $BARBICAN_TAG && \ @@ -46,7 +52,8 @@ RUN apk --no-cache add --update libxml2 libxslt && \ update-requirements -s --source /src/openstack-requirements /src/octavia-tempest-plugin && \ pip3 install --no-cache-dir --src /src -cupper-constraints.txt -cupper-constraints.opnfv.txt \ /src/patrole /src/barbican-tempest-plugin /src/neutron-tempest-plugin \ - networking-bgpvpn networking-sfc /src/cinder-tempest-plugin /src/octavia-tempest-plugin && \ + networking-bgpvpn networking-sfc /src/cinder-tempest-plugin \ + /src/keystone-tempest-plugin /src/octavia-tempest-plugin && \ mkdir -p /home/opnfv/functest/data/refstack && \ mkdir -p /etc/neutron /etc/cinder /etc/glance /etc/keystone /etc/nova && \ wget -q -O /etc/glance/policy.json https://opendev.org/openstack/glance/raw/branch/$OPENSTACK_TAG/etc/policy.json && \ @@ -57,7 +64,7 @@ RUN apk --no-cache add --update libxml2 libxslt && \ deactivate && \ rm -r oslo upper-constraints.txt upper-constraints.opnfv.txt \ /src/patrole /src/barbican-tempest-plugin /src/neutron-tempest-plugin \ - /src/cinder-tempest-plugin /src/octavia-tempest-plugin && \ + /src/cinder-tempest-plugin /src/keystone-tempest-plugin /src/octavia-tempest-plugin && \ apk del .build-deps COPY compute.txt /home/opnfv/functest/data/refstack/compute.txt COPY object.txt /home/opnfv/functest/data/refstack/object.txt diff --git a/docker/smoke/testcases.yaml b/docker/smoke/testcases.yaml index ef16305b3..30569a61d 100644 --- a/docker/smoke/testcases.yaml +++ b/docker/smoke/testcases.yaml @@ -39,6 +39,21 @@ tiers: option: - '--concurrency=4' + - + case_name: tempest_keystone + project_name: functest + criteria: 100 + blocking: false + description: >- + This test case runs the Tempest suite proposed by the + Keystone project. + run: + name: tempest_common + args: + mode: 'keystone_tempest_plugin.' + option: + - '--concurrency=4' + - case_name: rally_sanity project_name: functest -- cgit 1.2.3-korg