From: Anthony PERARD <anthony.perard@citrix.com>
To: xen-devel@lists.xen.org
Cc: Anthony PERARD <anthony.perard@citrix.com>,
Ian Jackson <Ian.Jackson@eu.citrix.com>,
Ian Campbell <ian.campbell@citrix.com>
Subject: [PATCH OSSTEST v3 2/3] ts-openstack-tempest: Run Tempest to check OpenStack
Date: Mon, 28 Sep 2015 16:56:14 +0100 [thread overview]
Message-ID: <1443455775-26131-3-git-send-email-anthony.perard@citrix.com> (raw)
In-Reply-To: <1443455775-26131-1-git-send-email-anthony.perard@citrix.com>
This script runs the OpenStack integration test suite, Tempest.
Signed-off-by: Anthony PERARD <anthony.perard@citrix.com>
---
Change in V3:
- Use host as argument of the script.
- Use selecthost() and get rid of $gho.
- Use target_jobdir() instead of builddirsprops().
- Put the ignored Tempest tests into a var and try to explain why there are
skip.
---
sg-run-job | 1 +
ts-openstack-tempest | 53 ++++++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 54 insertions(+)
create mode 100755 ts-openstack-tempest
diff --git a/sg-run-job b/sg-run-job
index 4f87f30..cb48b2b 100755
--- a/sg-run-job
+++ b/sg-run-job
@@ -376,6 +376,7 @@ proc run-job/test-rumpuserxen {} {
proc need-hosts/test-devstack {} { return host }
proc run-job/test-devstack {} {
run-ts . = ts-openstack-deploy host
+ run-ts . = ts-openstack-tempest host
}
if {[file exists sg-run-job-adhoc]} {
diff --git a/ts-openstack-tempest b/ts-openstack-tempest
new file mode 100755
index 0000000..e2266d3
--- /dev/null
+++ b/ts-openstack-tempest
@@ -0,0 +1,53 @@
+#!/usr/bin/perl
+# This is part of "osstest", an automated testing framework for Xen.
+# Copyright (C) 2015 Citrix Inc.
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Affero General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU Affero General Public License for more details.
+#
+# You should have received a copy of the GNU Affero General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+use strict qw(vars);
+use Osstest;
+use Osstest::TestSupport;
+use Osstest::BuildSupport;
+
+tsreadconfig();
+our ($whhost) = @ARGV;
+$whhost ||= 'host';
+our $ho = selecthost($whhost);
+our $builddir = target_jobdir($ho);
+
+sub tempest() {
+ my $ignored_tests = '';
+
+ # Ignore these tests:
+ # tempest.scenario.test_volume_boot_pattern.TestVolumeBootPattern.test_volume_boot_pattern
+ # It try to start a guest with /dev/vda as boot device name.
+ $ignored_tests .= '|.*TestVolumeBootPattern.test_volume_boot_pattern';
+ # tempest.scenario.test_shelve_instance.TestShelveInstance.test_shelve_volume_backed_instance
+ # It try to start a guest with /dev/vda as boot device name.
+ $ignored_tests .= '|.*TestShelveInstance.test_shelve_volume_backed_instance';
+ # scenario.test_volume_boot_pattern.TestVolumeBootPatternV2.test_volume_boot_pattern
+ # It access a volume through iSCSI. This does not work when both the
+ # server and client of iSCSI are on the same Xen host, Linux 4.0 is the
+ # first Linux to have a fix.
+ $ignored_tests .= '|.*TestVolumeBootPatternV2.test_volume_boot_pattern';
+
+ # Adding the tests to skip to the default regex.
+ my $regex = "(?!.*\\[.*\\bslow\\b.*\\]$ignored_tests)(^tempest\\.(api|scenario|thirdparty))";
+
+ target_cmd($ho, <<END, 7200);
+ $builddir/tempest/run_tempest.sh --virtual-env -- --concurrency=2 '$regex'
+END
+}
+
+tempest();
--
Anthony PERARD
next prev parent reply other threads:[~2015-09-28 15:56 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-09-28 15:56 [PATCH OSSTEST v3 0/3] Have OpenStack tested on top of xen's master and libvirt's master Anthony PERARD
2015-09-28 15:56 ` [PATCH OSSTEST v3 1/3] ts-openstack-deploy: Deploy OpenStack on a host with devstack Anthony PERARD
2015-09-29 15:34 ` Ian Campbell
2015-09-29 16:19 ` Anthony PERARD
2015-09-29 17:04 ` Ian Jackson
2015-09-30 8:29 ` Ian Campbell
2015-09-29 17:02 ` Ian Jackson
2015-09-30 8:32 ` Ian Campbell
2015-09-30 10:52 ` Ian Jackson
2015-09-28 15:56 ` Anthony PERARD [this message]
2015-09-29 15:43 ` [PATCH OSSTEST v3 2/3] ts-openstack-tempest: Run Tempest to check OpenStack Ian Campbell
2015-09-29 17:15 ` Anthony PERARD
2015-09-30 8:38 ` Ian Campbell
2015-09-28 15:56 ` [PATCH OSSTEST v3 3/3] Create a flight to test OpenStack with xen-unstable and libvirt Anthony PERARD
2015-09-29 15:49 ` Ian Campbell
2015-09-29 17:21 ` Anthony PERARD
2015-09-29 16:52 ` Ian Jackson
2015-10-08 16:08 ` Ian Campbell
2015-10-08 16:42 ` Ian Jackson
2015-10-09 10:54 ` Anthony PERARD
2015-10-13 11:02 ` Ian Jackson
2015-10-13 11:39 ` Ian Campbell
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1443455775-26131-3-git-send-email-anthony.perard@citrix.com \
--to=anthony.perard@citrix.com \
--cc=Ian.Jackson@eu.citrix.com \
--cc=ian.campbell@citrix.com \
--cc=xen-devel@lists.xen.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).