summaryrefslogtreecommitdiffstats
path: root/examples/tests_using_baseclass.py
diff options
context:
space:
mode:
authorShwethaHP <spandura@redhat.com>2017-12-07 07:02:51 +0530
committerJonathan Holloway <jholloway@redhat.com>2018-01-16 06:19:06 +0000
commitc39a42140f328d12a605f5480d0e3c7a2d4c6308 (patch)
tree4fbc8e411f13b471aacb5604a9039b2ec8573ebb /examples/tests_using_baseclass.py
parent63890db6fa339aded7aaa86d99543570befc43da (diff)
Adding example files to demonstrate how to use functions available in
glustolibs-gluster libs Change-Id: I44f559dd0477f97278b1444e7a6d292ca58b99dc Signed-off-by: ShwethaHP <spandura@redhat.com>
Diffstat (limited to 'examples/tests_using_baseclass.py')
-rw-r--r--examples/tests_using_baseclass.py72
1 files changed, 72 insertions, 0 deletions
diff --git a/examples/tests_using_baseclass.py b/examples/tests_using_baseclass.py
new file mode 100644
index 000000000..569feac83
--- /dev/null
+++ b/examples/tests_using_baseclass.py
@@ -0,0 +1,72 @@
+# 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, runs_on)
+
+""" Example1: Using GlusterBaseClass
+"""
+
+
+@runs_on([['replicated', 'distributed', 'distributed-replicated',
+ 'dispersed', 'distributed-dispersed'],
+ ['glusterfs', 'nfs', 'cifs']])
+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)