Salome HOME
ffe846705e4ae02ce63d71c1109d7d8a4867eb3e
[modules/kernel.git] / bin / appliskel / tests / salomeCommand / TestLauncherSimple.py
1 #!/usr/bin/env python3
2 # Copyright (C) 2013-2023  CEA, EDF, 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
21 import unittest
22 import logging
23
24 class TestLauncher(unittest.TestCase):
25
26   def setUp(self):
27     from salome_instance import SalomeInstance
28     self.instance = SalomeInstance.start()
29     print("Instance created and now running on port", self.instance.get_port())
30    #
31
32   def tearDown(self):
33     print("Terminate instance running on port", self.instance.get_port())
34     self.instance.stop()
35   #
36
37   def testHello(self):
38     try:
39       import setenv
40       setenv.main(True)
41       import runSession
42       args = ["hello.py"]
43       params, args = runSession.configureSession(args, exe="salome shell")
44       return runSession.runSession(params, args)
45     except SystemExit as e:
46       if str(e) != '0':
47         logging.error(e)
48   #
49 #
50
51 if __name__ == "__main__":
52   unittest.main()
53 #