Salome HOME
Merge branch 'master' of ssh://git.salome-platform.org/modules/kernel
[modules/kernel.git] / src / LifeCycleCORBA_SWIG / TestLifeCycleCORBA.py
1 #  -*- coding: iso-8859-1 -*-
2 # Copyright (C) 2007-2014  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, or (at your option) any later version.
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 = LifeCycleCORBA.ContainerParameters()
41     param.resource_params.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 = LifeCycleCORBA.ContainerParameters()
61     param.resource_params.hostname = host
62     param.container_name = 'myContainer'
63     computerlistCPP = [host]
64     containerCPP = ContainerManager.FindOrStartContainer( myContainerparamsCPP , computerlistCPP )
65     containerCPP.ping()
66     ComponentparamsCPP={}
67     ComponentparamsCPP['hostname']=host
68     ComponentparamsCPP['container_name']='myContainer'
69     compCPP=lcc.FindOrLoad_Component(myContainerparamsCPP,'SalomeTestComponent')
70     compCPP.Coucou(1)
71     engineCPP=lcc.FindComponent(myContainerparamsCPP,'SalomeTestComponent')
72     engineCPP.Coucou(1)
73 except :
74     print 'ContainerManager.FindOrStartContainer( myContainerparams , computerlist ) C++ failed'
75
76 try :
77     myContainerparamsPy = LifeCycleCORBA.ContainerParameters()
78     param.resource_params.hostname = host
79     param.container_name = 'myContainerPy'
80     computerlistPy = [host]
81     containerPy = ContainerManager.FindOrStartContainer( myContainerparamsPy , computerlistPy )
82     containerPy.ping()
83     compPy=lcc.FindOrLoad_Component(myContainerparamsPy,'SALOME_TestComponentPy')
84     compPy.Coucou(1)
85     enginePy=lcc.FindComponent(myContainerparamsPy,'SALOME_TestComponentPy')
86     enginePy.Coucou(1)
87 except :
88     print 'ContainerManager.FindOrStartContainer( myContainerparams , computerlist ) Python failed'
89