From daca62f4b7f876bf675e5b29b643e3d472903597 Mon Sep 17 00:00:00 2001 From: Shwetha Panduranga Date: Wed, 8 Feb 2017 18:52:37 +0530 Subject: Adding a new test to VVT: 1) glusterbaseclass: - Making changes in glusterbaseclass to not necessarily have volume_type and mount_type. 2) volume_libs: - setup_volume don't have to export the volume. It just creates starts and setup's any operation on the volume. - Moved the sharing/exporting the volume to BaseClass 3) Renaming samba_ops to samba_libs to have better naming practice. 4) Adding nfs_ganesha_libs for any nfs related helper functions 5) Adding a new vvt case which creates, deteles, creates the volume. Change-Id: I238c349df7165d669d3bc7234d97845dba2f51a6 Signed-off-by: Shwetha Panduranga --- tests/functional/bvt/test_bvt_lite_and_plus.py | 129 ------------------------- tests/functional/bvt/test_vvt.py | 129 +++++++++++++++++++++++++ 2 files changed, 129 insertions(+), 129 deletions(-) delete mode 100644 tests/functional/bvt/test_bvt_lite_and_plus.py create mode 100644 tests/functional/bvt/test_vvt.py (limited to 'tests/functional/bvt') diff --git a/tests/functional/bvt/test_bvt_lite_and_plus.py b/tests/functional/bvt/test_bvt_lite_and_plus.py deleted file mode 100644 index 074d57910..000000000 --- a/tests/functional/bvt/test_bvt_lite_and_plus.py +++ /dev/null @@ -1,129 +0,0 @@ -#!/usr/bin/env python -# Copyright (C) 2015-2016 Red Hat, Inc. -# -# 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) - if not ret: - raise Exception("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) diff --git a/tests/functional/bvt/test_vvt.py b/tests/functional/bvt/test_vvt.py new file mode 100644 index 000000000..5730996bd --- /dev/null +++ b/tests/functional/bvt/test_vvt.py @@ -0,0 +1,129 @@ +# Copyright (C) 2015-2016 Red Hat, Inc. +# +# 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. + +""" + Description: BVT-Volume Verification Tests (VVT). Tests the Basic + Volume Operations like start, status, stop, delete. + +""" + +import pytest +import time +from glusto.core import Glusto as g +from glustolibs.gluster.gluster_base_class import (GlusterVolumeBaseClass, + runs_on) +from glustolibs.gluster.exceptions import ExecutionError +from glustolibs.gluster.gluster_init import is_glusterd_running +from glustolibs.gluster.volume_ops import volume_stop, volume_start +from glustolibs.gluster.volume_libs import ( + verify_all_process_of_volume_are_online) +from glustolibs.gluster.volume_libs import log_volume_info_and_status +from glustolibs.misc.misc_libs import upload_scripts +from glustolibs.io.utils import validate_io_procs, get_mounts_stat + + +@runs_on([['replicated', 'distributed', 'distributed-replicated', + 'dispersed', 'distributed-dispersed'], + ['glusterfs', 'nfs', 'cifs']]) +class VolumeAccessibilityTests(GlusterVolumeBaseClass): + """ VolumeAccessibilityTests contains tests which verifies + accessablity of the volume. + """ + @classmethod + def setUpClass(cls): + """Setup Volume, Create Mounts and upload the necessary scripts to run + tests. + """ + # Sets up volume, mounts + GlusterVolumeBaseClass.setUpClass.im_func(cls) + + # Upload io scripts for running IO on mounts + script_local_path = ("/usr/share/glustolibs/io/scripts/" + "file_dir_ops.py") + cls.script_upload_path = ("/usr/share/glustolibs/io/scripts/" + "file_dir_ops.py") + ret = upload_scripts(cls.clients, script_local_path) + if not ret: + raise ExecutionError("Failed to upload IO scripts") + + @pytest.mark.bvt_vvt + def test_volume_create_start_stop_start(self): + """Tests volume create, start, status, stop, start. + Also Validates whether all the brick process are running after the + start of the volume. + """ + # Verify volume's all process are online + ret = verify_all_process_of_volume_are_online(self.mnode, self.volname) + self.assertTrue(ret, ("Volume %s : All process are not online" % + self.volname)) + + # Stop Volume + ret, _, _ = volume_stop(self.mnode, self.volname, force=True) + self.assertEqual(ret, 0, "Failed to stop volume %s" % self.volname) + + # Start Volume + ret, _, _ = volume_start(self.mnode, self.volname) + self.assertEqual(ret, 0, "Unable to start volume %s" % self.volname) + + time.sleep(15) + + # Log Volume Info and Status + ret = log_volume_info_and_status(self.mnode, self.volname) + self.assertTrue(ret, ("Logging volume %s info and status failed" % + self.volname)) + + # Verify volume's all process are online + ret = verify_all_process_of_volume_are_online(self.mnode, self.volname) + self.assertTrue(ret, ("Volume %s : All process are not online" % + self.volname)) + + # Log Volume Info and Status + ret = log_volume_info_and_status(self.mnode, self.volname) + self.assertTrue(ret, ("Logging volume %s info and status failed" % + self.volname)) + + # Verify all glusterd's are running + ret = is_glusterd_running(self.servers) + self.assertEqual(ret, 0, ("glusterd not running on all servers: %s" % + self.servers)) + + @pytest.mark.bvt_vvt + def test_file_dir_create_ops_on_volume(self): + """Test File Directory Creation on the volume. + """ + # 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 + + # Validate IO + ret = validate_io_procs(all_mounts_procs, self.mounts) + self.assertTrue(ret, "IO failed on some of the clients") + + # Get stat of all the files/dirs created. + ret = get_mounts_stat(self.mounts) + self.assertTrue(ret, "Stat failed on some of the clients") -- cgit