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