2 # Copyright (C) 2003 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
3 # CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 # This library is free software; you can redistribute it and/or
6 # modify it under the terms of the GNU Lesser General Public
7 # License as published by the Free Software Foundation; either
8 # version 2.1 of the License.
10 # This library is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 # Lesser General Public License for more details.
15 # You should have received a copy of the GNU Lesser General Public
16 # License along with this library; if not, write to the Free Software
17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 # See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org
23 # File : TestLifeCycleCORBA_SWIG.py
24 # Author : Paul RASCLE, EDF
29 import sys, os,signal,string,commands
35 # get SALOME environment :
37 args, modules_list, modules_root_dir = runSalome.get_config()
38 runSalome.set_env(args, modules_list, modules_root_dir)
40 # set environment for trace in logger
41 # (with file, servers may be killed before the write to the file...)
43 #os.environ["SALOME_trace"] = "file:/tmp/traceUnitTest.log"
44 #os.environ["SALOME_trace"] = "local"
45 os.environ["SALOME_trace"] = "with_logger"
47 # launch CORBA naming server
49 clt=orbmodule.client()
51 # launch CORBA logger server
53 myServer=runSalome.LoggerServer(args)
55 clt.waitLogger("Logger")
57 # launch notify server
59 myServer=runSalome.NotifyServer(args,modules_root_dir)
62 # launch registry server
64 myServer=runSalome.RegistryServer(args)
66 clt.waitNS("/Registry")
68 # launch module catalog server
70 cataServer=runSalome.CatalogServer(args)
71 cataServer.setpath(modules_list,modules_root_dir)
73 clt.waitNS("/Kernel/ModulCatalog")
75 # launch container manager server
77 myCmServer = runSalome.ContainerManagerServer(args)
78 myCmServer.setpath(modules_list,modules_root_dir)
80 clt.waitNS("/ContainerManager")
84 command = ['TestLifeCycleCORBA']
85 ret = os.spawnvp(os.P_WAIT, command[0], command)
87 import LifeCycleCORBA_SWIGTest
89 unittest.TextTestRunner(verbosity=2).run(LifeCycleCORBA_SWIGTest.suite())
91 # kill containers created by the Container Manager
94 containerManager = clt.waitNS("/ContainerManager",Engines.ContainerManager)
95 containerManager.Shutdown()
99 addToKillList.killList()
101 TestKiller.killProcess(runSalome.process_id)