Salome HOME
2092af4f40eed348bfb7f3af1ec0af28998d8196
[modules/kernel.git] / src / TestContainer / TestComponentPy.py
1 #! /usr/bin/env python3
2 # Copyright (C) 2007-2023  CEA, EDF, 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 #  SALOME TestContainer : test of container creation and its life cycle
25 #  File   : TestComponentPy.py
26 #  Author : Paul RASCLE, EDF
27 #  Module : SALOME
28 #  $Header$
29 #
30 import os
31 import sys
32 import string
33 from omniORB import CORBA
34 import CosNaming
35 import Engines
36 from Utils_Identity import getShortHostName
37
38
39 #initialise the ORB
40 orb = CORBA.ORB_init(sys.argv, CORBA.ORB_ID)
41
42 #obtain a reference to the root naming context
43 obj = orb.resolve_initial_references("NameService")
44 rootContext = obj._narrow(CosNaming.NamingContext)
45
46 if rootContext is None:
47     print("Name Service Reference is invalid")
48     sys.exit(1)
49
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")]
56
57 try:
58     obj = rootContext.resolve(name)
59 except CosNaming.NamingContext.NotFound as ex:
60     print(containerName , " not found in Naming Service")
61     sys.exit(1)
62
63 container = obj._narrow(Engines.Container)
64 print(container.getHostName())
65 comp = container.load_impl("SalomeTestComponent","SalomeTestComponent")
66 print(comp._get_instanceName())
67 comp.ping()
68 comptest = comp._narrow(Engines.TestComponent)
69 if comptest is None:
70     print("probleme cast")
71 print(comptest.Coucou(1))