Salome HOME
3b4601d410f7c3890f4b2cde6dcfcc2f09185a8d
[modules/kernel.git] / src / SALOMEDS / Test / TestSALOMEDS.cxx
1 // Copyright (C) 2007-2014  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 // --- include all SALOMEDS Test from basics until the present directory
24 //
25 #include "SALOMELocalTraceTest.hxx"
26 #include "SALOMEDSImplTest.hxx"
27 #include "SALOMEDSTest.hxx"
28
29 // --- Registers the fixture into the 'registry'
30
31 CPPUNIT_TEST_SUITE_REGISTRATION( SALOMEDSTest );
32 CPPUNIT_TEST_SUITE_REGISTRATION( SALOMEDSTest_Embedded );
33
34 #include <cppunit/CompilerOutputter.h>
35 #include <cppunit/TestResult.h>
36 #include <cppunit/TestResultCollector.h>
37 #include <cppunit/TextTestProgressListener.h>
38 #include <cppunit/BriefTestProgressListener.h>
39 #include <cppunit/extensions/TestFactoryRegistry.h>
40 #include <cppunit/TestRunner.h>
41 #include <stdexcept>
42
43 #include <iostream>
44 #include <fstream>
45
46 #include <SALOMEconfig.h>
47 #include CORBA_SERVER_HEADER(SALOMEDS)
48 #include "utilities.h"
49 #include "Utils_SINGLETON.hxx"
50 #include "Utils_ORB_INIT.hxx"
51 #include "Basics_Utils.hxx"
52 #include "SALOME_NamingService.hxx"
53 #include "NamingService_WaitForServerReadiness.hxx"
54 #include "SALOMEDS_StudyManager_i.hxx"
55
56 #ifdef WIN32
57 #define setenv Kernel_Utils::setenv
58 #endif 
59
60 // ============================================================================
61 /*!
62  *  Main program source for Unit Tests with cppunit package does not depend
63  *  on actual tests, so we use the same for all partial unit tests.
64  */
65 // ============================================================================
66
67 int main(int argc, char* argv[])
68 {
69   // --- Run Salome without GUI
70
71   setenv("SALOME_trace", "file:./traceUnitTest.log", 1); // 1: overwrite
72
73   system("runSalome -t &");
74
75   // --- Wait till SALOMEDS server is launched
76   
77   char hostname[511];
78   int size;
79   gethostname(hostname, size);
80   char* chr_port = getenv("SALOMEDS_UNITTESTS_PORT");
81   std::string port;
82   if(chr_port) port = chr_port;
83   if(port.empty()) port = "2810";
84   std::string cfg_file = std::string(getenv("HOME"))+"/.omniORB_"+std::string(hostname)+"_"+port+".cfg";
85   setenv("OMNIORB_CONFIG", cfg_file.c_str(), 1);
86
87   ORB_INIT &init = *SINGLETON_<ORB_INIT>::Instance() ;
88   ASSERT(SINGLETON_<ORB_INIT>::IsAlreadyExisting());
89   CORBA::ORB_var orb = init(argc , argv ) ;
90   
91   #ifndef WIN32
92     sleep(15);
93   #else
94     Sleep(15000);
95   #endif
96   
97
98   std::string host; // = Kernel_Utils::GetHostname();
99   char* wait_Superv = getenv("SALOMEDS_UNITTESTS_WAIT_SUPERVISOR");
100   if(wait_Superv) host = Kernel_Utils::GetHostname(); 
101
102   SALOME_NamingService NS(orb);
103   if(host.empty())
104     NamingService_WaitForServerReadiness(&NS, "/myStudyManager");
105   else {
106     std::string serverName = "/Containers/"+host+"/SuperVisionContainer";
107     NamingService_WaitForServerReadiness(&NS, serverName);
108   }
109
110   CORBA::Object_var obj = NS.Resolve( "/myStudyManager" );
111   if(CORBA::is_nil(obj)) {
112      system("killSalome.py");
113      return 1;
114   }
115
116   //Set up the environement for Embedded case
117   std::string kernel_root = getenv("KERNEL_ROOT_DIR");
118   CPPUNIT_ASSERT(!kernel_root.empty());
119   kernel_root+="/share/salome/resources/kernel";
120
121   CORBA::Object_var poaObj = orb->resolve_initial_references("RootPOA");
122   if(!CORBA::is_nil(poaObj)) {
123                 PortableServer::POA_var poa = PortableServer::POA::_narrow(poaObj);
124
125     SALOMEDS_StudyManager_i * aStudyManager_i = new  SALOMEDS_StudyManager_i(orb, poa);
126     // Activate the objects.  This tells the POA that the objects are ready to accept requests.
127     PortableServer::ObjectId_var aStudyManager_iid =  poa->activate_object(aStudyManager_i);
128     aStudyManager_i->register_name("/myStudyManager_embedded");
129       
130     // Obtain a POAManager, and tell the POA to start accepting
131     // requests on its objects.
132     PortableServer::POAManager_var pman = poa->the_POAManager();
133     pman->activate();
134   }
135  
136
137   // --- Create the event manager and test controller
138   CPPUNIT_NS::TestResult controller;
139
140   // ---  Add a listener that colllects test result
141   CPPUNIT_NS::TestResultCollector result;
142   controller.addListener( &result );        
143
144   // ---  Add a listener that print dots as test run.
145 #ifdef WIN32
146   CPPUNIT_NS::TextTestProgressListener progress;
147 #else
148   CPPUNIT_NS::BriefTestProgressListener progress;
149 #endif
150   controller.addListener( &progress );      
151
152   // ---  Get the top level suite from the registry
153
154   CPPUNIT_NS::Test *suite =
155     CPPUNIT_NS::TestFactoryRegistry::getRegistry().makeTest();
156
157   // ---  Adds the test to the list of test to run
158
159   CPPUNIT_NS::TestRunner runner;
160   runner.addTest( suite );
161   runner.run( controller);
162
163   // ---  Print test in a compiler compatible format.
164
165   std::ofstream testFile;
166   testFile.open("UnitTestsResult", std::ios::out |  std::ios::trunc);
167   //CPPUNIT_NS::CompilerOutputter outputter( &result, std::cerr );
168   CPPUNIT_NS::CompilerOutputter outputter( &result, testFile );
169   outputter.write(); 
170
171   // ---  Run the tests.
172
173   bool wasSucessful = result.wasSuccessful();
174   testFile.close();
175
176   // --- Kill all created Salome process
177
178   system("killSalome.py");
179
180   // ---  Return error code 1 if the one of test failed.
181
182   return wasSucessful ? 0 : 1;
183 }