Salome HOME
0021196: [CEA 456] Integration and merge modification for debian packages
[modules/kernel.git] / src / LifeCycleCORBA_SWIG / TestLifeCycleCORBA.py
1 #  -*- coding: iso-8859-1 -*-
2 #  Copyright (C) 2007-2010  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
24 #from TestLifeCycleCORBA import *
25 #
26 import os
27 import Engines
28 import LifeCycleCORBA
29
30 import Utils_Identity
31 host  = Utils_Identity.getShortHostName()
32 #host = os.getenv( 'HOST' )
33
34 lcc = LifeCycleCORBA.LifeCycleCORBA()
35
36 try :
37     obj=lcc.FindOrLoad_Component("FactoryServer","SalomeTestComponent")
38     comp=obj._narrow(Engines.TestComponent)
39     comp.Coucou(1)
40     param={}
41     #param['hostname']='cli76cc'
42     param['hostname']=host
43     param['container_name']='FactoryServer'
44     comp=lcc.FindOrLoad_Component(param,'SalomeTestComponent')
45     engine=lcc.FindComponent(param,'SalomeTestComponent')
46     engine.Coucou(1)
47 except :
48     print 'lcc.FindOrLoad_Component("FactoryServer","SalomeTestComponent") failed'
49
50 import sys
51 import CORBA
52 import CosNaming
53 orb = CORBA.ORB_init(sys.argv, CORBA.ORB_ID)
54 obj = orb.resolve_initial_references("NameService")
55 rootContext = obj._narrow(CosNaming.NamingContext)
56 context_name=[]
57 context_name.append(CosNaming.NameComponent( 'ContainerManager' , 'object' ) )
58 ContainerManager = rootContext.resolve( context_name )
59
60 try :
61     myContainerparamsCPP = Engines.MachineParameters( 'myContainer' , host , 'osf' , 0 , 0 , 0 , 0 , 0 )
62     computerlistCPP = [host]
63     containerCPP = ContainerManager.FindOrStartContainer( myContainerparamsCPP , computerlistCPP )
64     containerCPP.ping()
65     ComponentparamsCPP={}
66     ComponentparamsCPP['hostname']=host
67     ComponentparamsCPP['container_name']='myContainer'
68     compCPP=lcc.FindOrLoad_Component(ComponentparamsCPP,'SalomeTestComponent')
69     compCPP.Coucou(1)
70     engineCPP=lcc.FindComponent(ComponentparamsCPP,'SalomeTestComponent')
71     engineCPP.Coucou(1)
72 except :
73     print 'ContainerManager.FindOrStartContainer( myContainerparams , computerlist ) C++ failed'
74
75 try :
76     myContainerparamsPy = Engines.MachineParameters( 'myContainerPy' , host , 'osf' , 0 , 0 , 0 , 0 , 0 )
77     computerlistPy = [host]
78     containerPy = ContainerManager.FindOrStartContainer( myContainerparamsPy , computerlistPy )
79     containerPy.ping()
80     ComponentparamsPy={}
81     ComponentparamsPy['hostname']=host
82     ComponentparamsPy['container_name']='myContainerPy'
83     compPy=lcc.FindOrLoad_Component(ComponentparamsPy,'SALOME_TestComponentPy')
84     compPy.Coucou(1)
85     enginePy=lcc.FindComponent(ComponentparamsPy,'SALOME_TestComponentPy')
86     enginePy.Coucou(1)
87 except :
88     print 'ContainerManager.FindOrStartContainer( myContainerparams , computerlist ) Python failed'
89