summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/functional/nfs_ganesha/test_cthon.py121
1 files changed, 121 insertions, 0 deletions
diff --git a/tests/functional/nfs_ganesha/test_cthon.py b/tests/functional/nfs_ganesha/test_cthon.py
new file mode 100644
index 000000000..5c1c5869d
--- /dev/null
+++ b/tests/functional/nfs_ganesha/test_cthon.py
@@ -0,0 +1,121 @@
+# Copyright (C) 2019 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.
+
+""" Description:
+ This cthon test is specific to NFS Ganesha
+ and runs on v.4.0, v4.1 clients.
+"""
+
+from glusto.core import Glusto as g
+from glustolibs.gluster.gluster_base_class import GlusterBaseClass, runs_on
+from glustolibs.gluster.nfs_ganesha_libs import NfsGaneshaClusterSetupClass
+from glustolibs.gluster.exceptions import ExecutionError
+from glustolibs.io.utils import run_cthon
+from glustolibs.misc.misc_libs import git_clone_and_compile
+
+
+@runs_on([['replicated', 'distributed', 'distributed-replicated',
+ 'dispersed', 'distributed-dispersed'],
+ ['nfs']])
+class TestCthon(NfsGaneshaClusterSetupClass):
+ """
+ Cthon test on NFS Ganesha v4.0, v4.1
+ """
+
+ @classmethod
+ def setUpClass(cls):
+ """
+ Setup nfs-ganesha if not exists.
+ """
+ NfsGaneshaClusterSetupClass.setUpClass.im_func(cls)
+
+ # Setup nfs-ganesha if not exists.
+ ret = cls.setup_nfs_ganesha()
+ if not ret:
+ raise ExecutionError("Failed to setup nfs-ganesha cluster")
+ g.log.info("nfs-ganesha cluster is healthy")
+
+ # Cloning the cthon test repo
+ cls.dir_name = "repo_dir"
+ link = 'git://linux-nfs.org/~steved/cthon04.git'
+ ret = git_clone_and_compile(cls.clients, link, cls.dir_name,
+ compile_option=True)
+ if not ret:
+ raise ExecutionError("Failed to clone the cthon repo."
+ "Check error logs to know which"
+ "node it failed on.")
+ else:
+ g.log.info("Successfully cloned the"
+ "test repo on provided nodes.")
+
+ def setUp(self):
+ """
+ Setup volume
+ """
+ GlusterBaseClass.setUp.im_func(self)
+
+ g.log.info("Starting to setup volume %s", self.volname)
+ ret = self.setup_volume(volume_create_force=True)
+ if not ret:
+ raise ExecutionError("Failed to setup"
+ "volume %s" % self.volname)
+ g.log.info("Successful setup of volume %s" % self.volname)
+
+ def test_NFS_cthon(self):
+ """The cthon test is divied into four groups.
+ Basic : basic file system operations tests
+ General : general file system tests
+ Special : tests that poke certain common problem areas
+ Lock : tests that exercise network locking
+ """
+ ret = run_cthon(self.mnode, self.volname,
+ self.clients, self.dir_name)
+ self.assertTrue(ret, ("Cthon test failed"))
+ g.log.info("Cthon test successfully passed")
+
+ def tearDown(self):
+ """
+ Cleanup volume
+ """
+ GlusterBaseClass.tearDown.im_func(self)
+
+ # Cleanup volume
+ ret = self.cleanup_volume()
+ if not ret:
+ raise ExecutionError("Failed to cleanup volume")
+ g.log.info("Cleanup of volume %s"
+ " completed successfully", self.volname)
+
+ # Cleanup test repo
+ flag = 0
+ for client in self.clients:
+ ret = g.run(client, "rm -rf /root/%s" % self.dir_name)
+ if ret:
+ g.log.error("Failed to cleanup test repo on "
+ "client %s" % client)
+ flag = 1
+ else:
+ g.log.info("Test repo successfully cleaned on "
+ "client %s" % client)
+ if flag:
+ raise ExecutionError("Test repo failed. "
+ "Check log errors for more info")
+ else:
+ g.log.info("Test repo cleanup successfull on all clients")
+
+ @classmethod
+ def tearDownClass(cls):
+ NfsGaneshaClusterSetupClass.tearDownClass.im_func(cls)