Salome HOME
Join modifications from BR_Dev_For_4_0 tag V4_1_1.
[modules/yacs.git] / src / LifeCycleCORBA / Test / TestLifeCycleCORBA.py
1 # Copyright (C) 2005  OPEN CASCADE, CEA, EDF R&D, LEG
2 #           PRINCIPIA R&D, EADS CCR, Lip6, BV, CEDRAT
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.
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 sys, os,signal,string,commands
21 import runSalome
22 import setenv
23 import orbmodule
24 import TestKiller
25 import addToKillList
26
27 # get SALOME environment :
28
29 args, modules_list, modules_root_dir = setenv.get_config()
30 setenv.set_env(args, modules_list, modules_root_dir)
31
32 # set environment for trace in logger
33 # (with file, servers may be killed before the write to the file...)
34
35 #os.environ["SALOME_trace"] = "file:/tmp/traceUnitTest.log"
36 #os.environ["SALOME_trace"] = "local"
37 os.environ["SALOME_trace"] = "with_logger"
38
39 # launch CORBA naming server
40
41 clt=orbmodule.client()
42
43 # launch CORBA logger server
44
45 myServer=runSalome.LoggerServer(args)
46 myServer.run()
47 clt.waitLogger("Logger")
48
49 # launch notify server
50
51 myServer=runSalome.NotifyServer(args,modules_root_dir)
52 myServer.run()
53
54 # launch registry server
55
56 myServer=runSalome.RegistryServer(args)
57 myServer.run()
58 clt.waitNS("/Registry")
59
60 # launch module catalog server
61
62 cataServer=runSalome.CatalogServer(args)
63 cataServer.setpath(modules_list,modules_root_dir)
64 cataServer.run()
65 clt.waitNS("/Kernel/ModulCatalog")
66
67 # launch launcher server
68
69 myCmServer = runSalome.LauncherServer(args)
70 myCmServer.setpath(modules_list,modules_root_dir)
71 myCmServer.run()
72 clt.waitNS("/SalomeLauncher")
73
74 # execute Unit Test
75
76 command = ['TestLifeCycleCORBA']
77 ret = os.spawnvp(os.P_WAIT, command[0], command)
78
79 # kill containers created by the Container Manager
80
81 import Engines
82 launcher = clt.waitNS("/SalomeLauncher",Engines.SalomeLauncher)
83 launcher.Shutdown()
84
85 # kill Test process
86
87 addToKillList.killList()
88
89 TestKiller.killProcess(runSalome.process_id)