summaryrefslogtreecommitdiffstats
path: root/tests/functional/bvt
diff options
context:
space:
mode:
authorShwetha Panduranga <spandura@redhat.com>2016-12-16 17:07:42 +0530
committerShwetha Panduranga <spandura@redhat.com>2016-12-16 20:46:48 +0530
commitee1de3dc0eae3d3b1e4cddfbf6eeeec6787b9a31 (patch)
treecb50b9e8c741ea5609975d3de3ddb26526d220ed /tests/functional/bvt
parent3070312c13e02cace3041d3429b0c31fc10b73ee (diff)
Re-Structuring the directory for more better understanding of test types
Change-Id: I9284eb7ddaf727eef2d107e1e886fc60ec760446 Signed-off-by: Shwetha Panduranga <spandura@redhat.com>
Diffstat (limited to 'tests/functional/bvt')
-rw-r--r--tests/functional/bvt/README45
-rw-r--r--tests/functional/bvt/test_bvt_lite_and_plus.py128
2 files changed, 173 insertions, 0 deletions
diff --git a/tests/functional/bvt/README b/tests/functional/bvt/README
new file mode 100644
index 000000000..5efc3bca3
--- /dev/null
+++ b/tests/functional/bvt/README
@@ -0,0 +1,45 @@
+What is Build Verification or Build Validation Test?
+ In software testing, a Build Verification Test (BVT), also known as
+ Build Acceptance Test, is a set of tests run on each new build of a product
+ to verify that the build is testable before the build is released into the
+ hands of the test team.
+
+Scope of Testing:
+ The build acceptance test is generally a short set of tests,
+ which exercises the mainstream functionality of the application software.
+ Any build that fails the build verification test is rejected,
+ and testing continues on the previous build (provided there has been at
+ least one build that has passed the acceptance test)
+
+Source of definition: https://en.wikipedia.org/wiki/Build_verification_test
+
+Gluster BVT: BVT is divided in 2 set of tests.
+ - BVT-Basic :
+ BVT-Basic is the first set of tests to qualify the build.
+ Tests include validating services (glusterd, smb etc),
+ validating volume operations (create, start, stop , status)
+
+ - BVT-VVT ( VVT: Volume verification test)
+ BVT-VVT is the second set of tests to qualify whether the build is good to
+ be consumed for further testing once BVT-Basic passes.
+ BVT-VVT covers the following gluster specific test on all combinations
+ of volume and mount types supported by gluster.
+
+ Test Case Summary:
+ 1) Creates a volume
+ 2) Mounts the volume
+ 3) Run IO from the mount.
+ 4) teardown the mount
+ 5) teardown the volume
+
+ Volume types:
+ - Distribute
+ - Replicate
+ - Distribute-Replicate
+ - Disperse
+ - Distribute-Disperse
+
+ Mount types:
+ - Glusterfs
+ - Nfs
+ - CIFS
diff --git a/tests/functional/bvt/test_bvt_lite_and_plus.py b/tests/functional/bvt/test_bvt_lite_and_plus.py
new file mode 100644
index 000000000..55db725b9
--- /dev/null
+++ b/tests/functional/bvt/test_bvt_lite_and_plus.py
@@ -0,0 +1,128 @@
+#!/usr/bin/env python
+# Copyright (C) 2015-2016 Red Hat, Inc. <http://www.redhat.com>
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# 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 General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License along
+# with this program; if not, write to the Free Software Foundation, Inc.,
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+
+import os
+from glusto.core import Glusto as g
+from glustolibs.gluster.gluster_base_class import (GlusterVolumeBaseClass,
+ runs_on)
+
+
+@runs_on([['replicated', 'distributed', 'distributed-replicated',
+ 'dispersed', 'distributed-dispersed'],
+ ['glusterfs', 'nfs', 'cifs']])
+class BvtTestsClass(GlusterVolumeBaseClass):
+ """Class containing case for : BVT Lite and BVT Plus.
+
+ BVT Lite: Run the case on dis-rep volume with glusterfs, nfs, cifs
+ protocols
+
+ BVT Plus: Run the case on all volume types and all protocol types
+ combinations
+ """
+ @classmethod
+ def setUpClass(cls):
+ """Setup Volume and Mounts.
+ """
+ g.log.info("Starting %s:" % cls.__name__)
+ GlusterVolumeBaseClass.setUpClass.im_func(cls)
+
+ # Upload io scripts
+ cls.script_local_path = ("/usr/share/glustolibs/io/"
+ "scripts/file_dir_ops.py")
+ cls.script_upload_path = "/tmp/file_dir_ops.py"
+ ret = os.path.exists(cls.script_local_path)
+ assert (ret is True), ("Unable to find the io scripts")
+
+ for client in cls.clients:
+ g.upload(client, cls.script_local_path, cls.script_upload_path)
+ g.run(client, "ls -l %s" % cls.script_upload_path)
+ g.run(client, "chmod +x %s" % cls.script_upload_path)
+ g.run(client, "ls -l %s" % cls.script_upload_path)
+
+ def setUp(self):
+ pass
+
+ def test_bvt(self):
+ """Test IO from the mounts.
+ """
+ g.log.info("Starting Test: %s on %s %s" %
+ (self.id(), self.volume_type, self.mount_type))
+
+ # Get stat of mount before the IO
+ for mount_obj in self.mounts:
+ cmd = "mount | grep %s" % mount_obj.mountpoint
+ ret, out, err = g.run(mount_obj.client_system, cmd)
+ cmd = "df -h %s" % mount_obj.mountpoint
+ ret, out, err = g.run(mount_obj.client_system, cmd)
+ cmd = "ls -ld %s" % mount_obj.mountpoint
+ ret, out, err = g.run(mount_obj.client_system, cmd)
+ cmd = "stat %s" % mount_obj.mountpoint
+ ret, out, err = g.run(mount_obj.client_system, cmd)
+
+ # Start IO on all mounts.
+ all_mounts_procs = []
+ count = 1
+ for mount_obj in self.mounts:
+ cmd = ("python %s create_deep_dirs_with_files "
+ "--dirname-start-num %d "
+ "--dir-depth 2 "
+ "--dir-length 10 "
+ "--max-num-of-dirs 5 "
+ "--num-of-files 5 %s" % (self.script_upload_path,
+ count, mount_obj.mountpoint))
+ proc = g.run_async(mount_obj.client_system, cmd,
+ user=mount_obj.user)
+ all_mounts_procs.append(proc)
+ count = count + 10
+
+ # Get IO status
+ rc = True
+ for i, proc in enumerate(all_mounts_procs):
+ ret, _, _ = proc.async_communicate()
+ if ret != 0:
+ g.log.error("IO Failed on %s:%s" %
+ (self.mounts[i].client_system,
+ self.mounts[i].mountpoint))
+ rc = False
+ assert (rc is True), "IO failed on some of the clients"
+
+ # Get stat of all the files/dirs created.
+ all_mounts_procs = []
+ for mount_obj in self.mounts:
+ cmd = ("python %s stat "
+ "-R %s" % (self.script_upload_path, mount_obj.mountpoint))
+ proc = g.run_async(mount_obj.client_system, cmd,
+ user=mount_obj.user)
+ all_mounts_procs.append(proc)
+ rc = True
+ for i, proc in enumerate(all_mounts_procs):
+ ret, _, _ = proc.async_communicate()
+ if ret != 0:
+ g.log.error("Stat of files and dirs under %s:%s Failed" %
+ (self.mounts[i].client_system,
+ self.mounts[i].mountpoint))
+ rc = False
+ assert (rc is True), "Stat failed on some of the clients"
+
+ def tearDown(self):
+ pass
+
+ @classmethod
+ def tearDownClass(cls):
+ """Cleanup mount and Cleanup the volume
+ """
+ GlusterVolumeBaseClass.tearDownClass.im_func(cls)