Salome HOME
Updated copyright comment
[modules/yacs.git] / src / runtime / Test / TestRuntime.cxx
1 // Copyright (C) 2006-2024  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/runtime"
21
22 #include "runtimeTest.hxx"
23 #include "PythonCppUtils.hxx"
24 #include "SALOME_Embedded_NamingService.hxx"
25
26 using namespace YACS;
27 using namespace std;
28
29 // --- Registers the fixture into the 'registry'
30
31 CPPUNIT_TEST_SUITE_REGISTRATION( RuntimeTest );
32
33 // --- generic Main program from bases/Test
34 #include "BasicMainTestInternal.hxx"
35 #include "RuntimeSALOME.hxx"
36 #include <chrono>
37 #include <thread>
38
39 int main()
40 {
41   YACS::ENGINE::RuntimeSALOME::setRuntime();
42   YACS::ENGINE::RuntimeSALOME *rt = YACS::ENGINE::getSALOMERuntime();
43   if( !rt )
44     return 1;
45   Engines::EmbeddedNamingService_var ns = GetEmbeddedNamingService();
46   CORBA::ORB_ptr orb = rt->getOrb();
47   CORBA::String_var ior = orb->object_to_string( ns );
48   AutoPyRef proc = rt->launchSubProcess({"./runtimeTestEchoSrv",std::string(ior)});
49   std::this_thread::sleep_for(std::chrono::microseconds(3000000));
50   int ret = BasicMainTestInternal();
51   //
52   {
53     AutoGIL agil;
54     AutoPyRef terminateStr = PyUnicode_FromString("terminate");
55     AutoPyRef dummy = PyObject_CallMethodObjArgs(proc,terminateStr,nullptr);
56   }
57   return ret;
58 }