1 #! /usr/bin/env python3
2 # Copyright (C) 2007-2023 CEA, EDF, OPEN CASCADE
4 # Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
5 # CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
21 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
24 # SALOME TestContainer : test of container creation and its life cycle
25 # File : TestComponentPy.py
26 # Author : Paul RASCLE, EDF
33 from omniORB import CORBA
36 from Utils_Identity import getShortHostName
40 orb = CORBA.ORB_init(sys.argv, CORBA.ORB_ID)
42 #obtain a reference to the root naming context
43 obj = orb.resolve_initial_references("NameService")
44 rootContext = obj._narrow(CosNaming.NamingContext)
46 if rootContext is None:
47 print("Name Service Reference is invalid")
50 #resolve the name /Containers.dir/FactoryServerPy.object
51 machineName=getShortHostName()
52 containerName = "FactoryServer"
53 name = [CosNaming.NameComponent("Containers","dir"),
54 CosNaming.NameComponent(machineName,"dir"),
55 CosNaming.NameComponent(containerName,"object")]
58 obj = rootContext.resolve(name)
59 except CosNaming.NamingContext.NotFound as ex:
60 print(containerName , " not found in Naming Service")
63 container = obj._narrow(Engines.Container)
64 print(container.getHostName())
65 comp = container.load_impl("SalomeTestComponent","SalomeTestComponent")
66 print(comp._get_instanceName())
68 comptest = comp._narrow(Engines.TestComponent)
70 print("probleme cast")
71 print(comptest.Coucou(1))