Salome HOME
Update copyrights
[tools/libbatch.git] / src / Core / Test / Test_SimpleParser.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.
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  *  Test_SimpleParser.cxx :
24  *
25  *  Created on: 23 juil. 2009
26  *  Author : Renaud BARATE - EDF R&D
27  */
28
29 #include <cassert>
30 #include <iostream>
31
32 #include <Test_config.h>
33
34 #include "SimpleParser.hxx"
35
36 using namespace std;
37
38 int main(int argc, char** argv)
39 {
40   cout << "*******************************************************************************************" << endl;
41   cout << "This program tests the simple parser that parses the configuration file used in the other" << endl;
42   cout << "tests. For this test, the environment variable " << TEST_CONFIG_FILE_ENV_VAR << " must " << endl;
43   cout << "exist and contain the path to the configuration file to use for the tests." << endl;
44   cout << "*******************************************************************************************" << endl;
45
46   // Create the parser
47   SimpleParser parser;
48
49   try {
50     // Parse the configuration file
51     parser.parseTestConfigFile();
52   } catch (ParserException e) {
53     cerr << "Parser error: " << e.what() << endl;
54     return 1;
55   }
56
57   // Print the configuration
58   cout << "Configuration map:" << endl;
59   cout << parser << endl;
60
61   return 0;
62 }