]> SALOME platform Git repositories - modules/kernel.git/blob - bin/appliskel/tests/launcher/TestLauncherSimple.py
Salome HOME
update doc and usage
[modules/kernel.git] / bin / appliskel / tests / launcher / TestLauncherSimple.py
1 # Copyright (C) 2013-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 import unittest
21
22 import os
23 import sys
24 import imp
25 import logging
26
27 class TestLauncher(unittest.TestCase):
28
29   def setUp(self):
30     path_to_launcher = os.getenv("SALOME_LAUNCHER")
31     appli_dir = os.path.dirname(path_to_launcher)
32     sys.path[:0] = [os.path.join(appli_dir, "bin", "salome", "appliskel")]
33
34     self.SALOME = imp.load_source("SALOME", os.path.join(appli_dir,"salome"))
35    #
36
37   def testHello(self):
38     try:
39       self.SALOME.main(["shell", "hello.py"])
40     except SystemExit, e:
41       if str(e) != '0':
42         logging.error(e)
43   #
44 #
45
46 if __name__ == "__main__":
47   path_to_launcher = os.getenv("SALOME_LAUNCHER")
48   if not path_to_launcher:
49     msg = "Error: please set SALOME_LAUNCHER variable to the salome command of your application folder."
50     raise Exception(msg)
51
52   unittest.main()
53 #