Salome HOME
[EDF27816] : Get rid of SALOME session for 3 last tests (YacsLoader, YacsLoader_Swig...
[modules/yacs.git] / src / yacsloader / Test / TestYacsLoader.cxx
1 // Copyright (C) 2006-2023  CEA, EDF
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #define UNIT_TEST_HEADER " --- TEST src/yacsloader"
21
22 #include "YacsLoaderTest.hxx"
23 #include "RuntimeSALOME.hxx"
24 #include "PythonCppUtils.hxx"
25
26 #if SALOME_KERNEL
27 #include "SALOME_Embedded_NamingService.hxx"
28 #include "SALOME_ContainerManager.hxx"
29 #include "SALOME_NamingService_Wrapper.hxx"
30 #endif
31
32 using namespace YACS;
33 using namespace std;
34
35 // --- Registers the fixture into the 'registry'
36
37 CPPUNIT_TEST_SUITE_REGISTRATION( YacsLoaderTest );
38
39 // --- generic Main program from bases/Test
40
41 #include "BasicMainTestInternal.hxx"
42 #include "RuntimeSALOME.hxx"
43
44 int main()
45 {
46   YACS::ENGINE::RuntimeSALOME::setRuntime();
47   YACS::ENGINE::RuntimeSALOME *rt = YACS::ENGINE::getSALOMERuntime();
48   if( !rt )
49     return 1;
50   Engines::EmbeddedNamingService_var ns = GetEmbeddedNamingService();
51   CORBA::ORB_ptr orb = rt->getOrb();
52   CORBA::String_var ior = orb->object_to_string( ns );
53   AutoPyRef proc = rt->launchSubProcess({"./echoSrv",std::string(ior)});
54   //std::cout << getpid() << std::endl;
55   usleep(3000000);
56   int ret = BasicMainTestInternal();
57   //
58   SALOME_NamingService_Wrapper namingService(orb);
59   CORBA::Object_var objDSM(namingService.Resolve(SALOME_ContainerManager::_ContainerManagerNameInNS));
60   Engines::ContainerManager_var dsm(Engines::ContainerManager::_narrow(objDSM));
61   dsm->ShutdownContainers();
62   //
63   AutoGIL agil;
64   AutoPyRef terminateStr = PyUnicode_FromString("terminate");
65   AutoPyRef dummy = PyObject_CallMethodObjArgs(proc,terminateStr,nullptr);
66   return ret;
67 }