summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorShwethaHP <spandura@redhat.com>2017-12-05 15:51:11 +0530
committerShwethaHP <spandura@redhat.com>2017-12-05 16:01:32 +0530
commit227e72bc0e172b3f923488352afb39d84a657852 (patch)
tree00334c1be9a76e6ed5090227affed9b70d6e0b9b /tests
parentd34305292b0c8633a6654c8024cca6619f45a0bb (diff)
Adding an example test file.
Change-Id: I766c9e1f905728618549a7484a70008d91959538 Signed-off-by: ShwethaHP <spandura@redhat.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/examples/tests_using_baseclass.py127
1 files changed, 127 insertions, 0 deletions
diff --git a/tests/examples/tests_using_baseclass.py b/tests/examples/tests_using_baseclass.py
new file mode 100644
index 000000000..a288558d2
--- /dev/null
+++ b/tests/examples/tests_using_baseclass.py
@@ -0,0 +1,127 @@
+# 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.
+
+from glustolibs.gluster.gluster_base_class import (GlusterBaseClass,
+ GlusterVolumeBaseClass,
+ runs_on)
+
+
+""" Example1: Using GlusterBaseClass
+"""
+
+
+class TestUsingGlusterBaseClass(GlusterBaseClass):
+ """Use GlusterBaseClass
+ """
+ @classmethod
+ def setUpClass(cls):
+ """setUpClass. This will be executed once per class.
+ """
+ # Calling GlusterBaseClass setUpClass. This will read all the
+ # Variables from the g.config and will assign values to variables to
+ # Use in the tests
+ GlusterBaseClass.setUpClass.im_func(cls)
+
+ # Add test class setup code here.
+
+ def setUp(self):
+ """setUp before the test
+ """
+ # Calling GlusterBaseClass setUp
+ GlusterBaseClass.setUp.im_func(self)
+
+ # Add test setup code here
+
+ def test1(self):
+ pass
+
+ def test2(self):
+ pass
+
+ def test3(self):
+ pass
+
+ def tearDown(self):
+ """teardown after the test
+ """
+ # Add test teardown code here
+
+ # Calling GlusterBaseClass teardown
+ GlusterBaseClass.tearDown.im_func(self)
+
+ @classmethod
+ def tearDownClass(cls):
+ """tearDownClass. This will be executed once per class.
+ """
+ # Add test class teardown code here
+
+ # Calling GlusterBaseClass tearDownClass.
+ GlusterBaseClass.tearDownClass.im_func(cls)
+
+
+"""Example2: Using GlusterVolumeBaseClass
+"""
+
+
+@runs_on([['replicated', 'distributed', 'distributed-replicated',
+ 'dispersed', 'distributed-dispersed'],
+ ['glusterfs', 'nfs', 'cifs']])
+class TestsUsingGlusterVolumeBaseClass(GlusterVolumeBaseClass):
+ """ Use GlusterVolumeBaseClass
+ """
+ @classmethod
+ def setUpClass(cls):
+ """setUpClass. This will be executed once per class.
+ """
+ # Calling GlusterVolumeBaseClass setUpClass.
+ # Sets up volume(creates, starts, set default volume options,
+ # export volume as smb or nfs share),
+ # mounts the volume.
+ GlusterVolumeBaseClass.setUpClass.im_func(cls)
+
+ def setUp(self):
+ """setUp before the test
+ """
+ # Calling GlusterVolumeBaseClass setUp
+ GlusterVolumeBaseClass.setUp.im_func(self)
+
+ # Add test setup code here
+
+ def test1(self):
+ pass
+
+ def test2(self):
+ pass
+
+ def test3(self):
+ pass
+
+ def tearDown(self):
+ """teardown after the test
+ """
+ # Add test teardown code here
+
+ # Calling GlusterVolumeBaseClass teardown
+ GlusterVolumeBaseClass.tearDown.im_func(self)
+
+ @classmethod
+ def tearDownClass(cls):
+ """tearDownClass. This will be executed once per class.
+ """
+ # Add test class teardown code here
+
+ # Calling GlusterVolumeBaseClass tearDownClass
+ GlusterVolumeBaseClass.tearDownClass.im_func(cls)