From c39a42140f328d12a605f5480d0e3c7a2d4c6308 Mon Sep 17 00:00:00 2001 From: ShwethaHP Date: Thu, 7 Dec 2017 07:02:51 +0530 Subject: Adding example files to demonstrate how to use functions available in glustolibs-gluster libs Change-Id: I44f559dd0477f97278b1444e7a6d292ca58b99dc Signed-off-by: ShwethaHP --- examples/tests_using_baseclass.py | 72 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 examples/tests_using_baseclass.py (limited to 'examples/tests_using_baseclass.py') 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. +# +# 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) -- cgit