Salome HOME
25b27cb834924f136504730d59498b444d80ab70
[modules/kernel.git] / src / KERNEL_PY / kernel / unittester.py
1 # -*- coding: iso-8859-1 -*-
2 # Copyright (C) 2010-2014  CEA/DEN, EDF R&D, OPEN CASCADE
3 #
4 # This library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Lesser General Public
6 # License as published by the Free Software Foundation; either
7 # version 2.1 of the License, or (at your option) any later version.
8 #
9 # This library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 # Lesser General Public License for more details.
13 #
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with this library; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 #
18 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 #
20 __author__="gboulant"
21 __date__ ="$1 avr. 2010 09:45:21$"
22
23 import sys
24
25 def run(modulePath, functionName):
26     """
27     This function should be used for very basic unit tests and only for a
28     rapid development. A better way should be the pyunit framework.
29     The function functionName is supposed here to return a boolean value
30     indicating if the test is OK (True) or NOT OK (False)
31     """
32     moduleName = modulePath.replace('/','.') 
33     __import__ (moduleName)
34     module=sys.modules[moduleName]
35     func = getattr(module,functionName)
36     tabsize = 70-len(moduleName)-len(functionName)
37     print "[TEST] %s.%s %s test in progress" % (moduleName, functionName,"."*tabsize) 
38     ok = func()
39     if ( ok ):
40         print "[TEST] %s.%s %s OK" % (moduleName, functionName,"."*tabsize)
41     else:
42         print "[TEST] %s.%s %s NOT OK" % (moduleName, functionName,"."*tabsize)
43
44 def tryfunction(function,*argv):
45     """
46     This function is for debug only. It executes the specified function with the
47     specified arguments in a try/except bloc so that to display the exception in
48     the case where an exception is raised (usefull to debug server side of a CORBA
49     process).
50     """
51     print "[TEST] trying the function %s" % function
52     try:
53         return function(*argv)
54     except Exception, e:
55         print e
56         raise e
57
58
59 #
60 # ==============================================================================
61 # Simple use cases
62 # ==============================================================================
63 #
64 def TEST_myTestIsOk():
65     return True
66
67 def TEST_myTestIsNotOk():
68     return False
69
70 if __name__ == "__main__":
71     run("salome/kernel/unittester","TEST_myTestIsOk")
72     run("salome/kernel/unittester","TEST_myTestIsNotOk")