]> SALOME platform Git repositories - modules/kernel.git/blob - src/LifeCycleCORBA_SWIG/Test/TestLifeCycleCORBA_SWIG.py
Salome HOME
Join modifications from branch BR_PR_V320b1
[modules/kernel.git] / src / LifeCycleCORBA_SWIG / Test / TestLifeCycleCORBA_SWIG.py
1 #
2 #  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
3 #  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
4
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. 
9
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. 
14
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 
18
19 #  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
20 #
21 #
22 #
23 #  File   : TestLifeCycleCORBA_SWIG.py
24 #  Author : Paul RASCLE, EDF
25 #  Module : SALOME
26 #  $Header$
27
28
29 import sys, os,signal,string,commands
30 import runSalome
31 import orbmodule
32 import TestKiller
33 import addToKillList
34
35 # get SALOME environment :
36
37 args, modules_list, modules_root_dir = runSalome.get_config()
38 runSalome.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.ContainerManagerServer(args)
78 myCmServer.setpath(modules_list,modules_root_dir)
79 myCmServer.run()
80 clt.waitNS("/ContainerManager")
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 containerManager = clt.waitNS("/ContainerManager",Engines.ContainerManager)
95 containerManager.Shutdown()
96
97 # kill Test process
98
99 addToKillList.killList()
100
101 TestKiller.killProcess(runSalome.process_id)