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