Salome HOME
52976: Find Elements by Point - All does not find Ball element
[modules/smesh.git] / doc / salome / examples / testme.py
1 # Copyright (C) 2007-2015  CEA/DEN, EDF R&D, OPEN CASCADE
2 #
3 # This library is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU Lesser General Public
5 # License as published by the Free Software Foundation; either
6 # version 2.1 of the License, or (at your option) any later version.
7 #
8 # This library is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 # Lesser General Public License for more details.
12 #
13 # You should have received a copy of the GNU Lesser General Public
14 # License along with this library; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 #
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 #
19
20 #!/usr/bin/env python
21
22 import unittest, sys, os
23
24 class SalomeSession(object):
25     def __init__(self, script):
26         import runSalome
27         run_script = "runSalome.py"
28         if sys.platform == 'win32':
29             module_dir = os.getenv("KERNEL_ROOT_DIR")
30             if module_dir: run_script = os.path.join(module_dir, "bin", "salome", run_script)
31             pass
32         sys.argv  = [run_script]
33         sys.argv += ["--terminal"]
34         sys.argv += ["--modules=GEOM,MED,SMESH"]
35         sys.argv += ["%s" % script]
36         if sys.platform == 'win32':
37             main_module_path = sys.modules['__main__'].__file__
38             sys.modules['__main__'].__file__ = ''
39         clt, d = runSalome.main()
40         if sys.platform == 'win32':
41             sys.modules['__main__'].__file__ = main_module_path
42         return
43
44     def __del__(self):
45         port = os.getenv('NSPORT')
46         import killSalomeWithPort
47         killSalomeWithPort.killMyPort(port)
48         return
49     pass
50
51 class MyTest(unittest.TestCase):
52     def testFunction(self):
53         SalomeSession(sys.argv[1])
54     pass
55
56 unittest.main(argv=sys.argv[:1])