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