Salome HOME
Merge from BR_V5_DEV 16Feb09
[tools/medcoupling.git] / src / ParaMEDMEM / Test / MPIMainTest.hxx
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D
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.
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 #ifndef _MPIMAINTEST_HXX_
20 #define _MPIMAINTEST_HXX_
21
22 #include <cppunit/CompilerOutputter.h>
23 #include <cppunit/TestResult.h>
24 #include <cppunit/TestResultCollector.h>
25 #include <cppunit/TextTestProgressListener.h>
26 #include <cppunit/BriefTestProgressListener.h>
27 #include <cppunit/extensions/TestFactoryRegistry.h>
28 #include <cppunit/TestRunner.h>
29 #include <stdexcept>
30
31 #include <mpi.h>
32
33 #include <iostream>
34 #include <fstream>
35
36 // ============================================================================
37 /*!
38  *  Main program source for Unit Tests with cppunit package does not depend
39  *  on actual tests, so we use the same for all partial unit tests.
40  */
41 // ============================================================================
42
43 int main(int argc, char* argv[])
44 {
45   MPI_Init(&argc,&argv);
46   int rank;
47   MPI_Comm_rank(MPI_COMM_WORLD,&rank);
48   
49   // --- Create the event manager and test controller
50   CPPUNIT_NS::TestResult controller;
51
52   // ---  Add a listener that colllects test result
53   CPPUNIT_NS::TestResultCollector result;
54   controller.addListener( &result );        
55
56   // ---  Add a listener that print dots as test run.
57 #ifdef WIN32
58   CPPUNIT_NS::TextTestProgressListener progress;
59 #else
60   CPPUNIT_NS::BriefTestProgressListener progress;
61 #endif
62   controller.addListener( &progress );      
63
64   // ---  Get the top level suite from the registry
65
66   CPPUNIT_NS::Test *suite =
67     CPPUNIT_NS::TestFactoryRegistry::getRegistry().makeTest();
68
69   // ---  Adds the test to the list of test to run
70
71   CPPUNIT_NS::TestRunner runner;
72   runner.addTest( suite );
73   runner.run( controller);
74
75   // ---  Print test in a compiler compatible format.
76
77   std::ostringstream testFileName;
78   testFileName<<"UnitTestResult"<<rank;
79   std::ofstream testFile;
80   testFile.open(testFileName.str().c_str(), std::ios::out |  std::ios::trunc);
81   //CPPUNIT_NS::CompilerOutputter outputter( &result, std::cerr );
82   CPPUNIT_NS::CompilerOutputter outputter( &result, testFile );
83   outputter.write(); 
84
85   // ---  Run the tests.
86
87   bool wasSucessful = result.wasSuccessful();
88   testFile.close();
89
90   // ---  Return error code 1 if the one of test failed.
91
92   MPI_Finalize();
93   
94   return wasSucessful ? 0 : 1;
95 }
96
97 #endif