]> SALOME platform Git repositories - modules/kernel.git/blob - src/LifeCycleCORBA_SWIG/Test/TestLifeCycleCORBA_SWIG.py
Salome HOME
correct previous integration (Porting to Python 2.6)
[modules/kernel.git] / src / LifeCycleCORBA_SWIG / Test / TestLifeCycleCORBA_SWIG.py
1 #  -*- coding: iso-8859-1 -*-
2 #  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
3 #
4 #  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
5 #  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
6 #
7 #  This library is free software; you can redistribute it and/or
8 #  modify it under the terms of the GNU Lesser General Public
9 #  License as published by the Free Software Foundation; either
10 #  version 2.1 of the License.
11 #
12 #  This library is distributed in the hope that it will be useful,
13 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 #  Lesser General Public License for more details.
16 #
17 #  You should have received a copy of the GNU Lesser General Public
18 #  License along with this library; if not, write to the Free Software
19 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
20 #
21 #  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
22 #
23 #  File   : TestLifeCycleCORBA_SWIG.py
24 #  Author : Paul RASCLE, EDF
25 #  Module : SALOME
26 #  $Header$
27 #
28 import sys, os,signal,string,commands
29 import runSalome
30 import setenv
31 import orbmodule
32 import TestKiller
33 import addToKillList
34
35 # get SALOME environment :
36
37 args, modules_list, modules_root_dir = setenv.get_config()
38 setenv.set_env(args, modules_list, modules_root_dir)
39
40 # set environment for trace in logger
41 # (with file, servers may be killed before the write to the file...)
42
43 #os.environ["SALOME_trace"] = "file:/tmp/traceUnitTest.log"
44 #os.environ["SALOME_trace"] = "local"
45 os.environ["SALOME_trace"] = "with_logger"
46
47 # launch CORBA naming server
48
49 clt=orbmodule.client()
50
51 # launch CORBA logger server
52
53 myServer=runSalome.LoggerServer(args)
54 myServer.run()
55 clt.waitLogger("Logger")
56
57 # launch notify server
58
59 myServer=runSalome.NotifyServer(args,modules_root_dir)
60 myServer.run()
61
62 # launch registry server
63
64 myServer=runSalome.RegistryServer(args)
65 myServer.run()
66 clt.waitNS("/Registry")
67
68 # launch module catalog server
69
70 cataServer=runSalome.CatalogServer(args)
71 cataServer.setpath(modules_list,modules_root_dir)
72 cataServer.run()
73 clt.waitNS("/Kernel/ModulCatalog")
74
75 # launch container manager server
76
77 myCmServer = runSalome.LauncherServer(args)
78 myCmServer.setpath(modules_list,modules_root_dir)
79 myCmServer.run()
80 clt.waitNS("/SalomeLauncher")
81
82 # execute Unit Test
83
84 command = ['TestLifeCycleCORBA']
85 ret = os.spawnvp(os.P_WAIT, command[0], command)
86
87 import LifeCycleCORBA_SWIGTest
88 import unittest
89 unittest.TextTestRunner(verbosity=2).run(LifeCycleCORBA_SWIGTest.suite())
90
91 # kill containers created by the Container Manager
92
93 import Engines
94 launcher = clt.waitNS("/SalomeLauncher",Engines.SalomeLauncher)
95 launcher.Shutdown()
96
97 # kill Test process
98
99 addToKillList.killList()
100
101 TestKiller.killProcess(runSalome.process_id)