Salome HOME
Merge branch V7_3_1_BR
[modules/kernel.git] / src / Utils / Test / UtilsTest.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 "UtilsTest.hxx"
24
25 #include <iostream>
26 #include <fstream>
27 #include <string>
28 #include <cstdlib>
29 #include "Utils_SALOME_Exception.hxx"
30 #include "Basics_Utils.hxx"
31 #include "utilities.h"
32
33 #ifdef WIN32
34 #define setenv Kernel_Utils::setenv
35 #endif 
36
37 #define TRACEFILE "/tmp/traceUnitTest.log"
38
39 // ============================================================================
40 /*!
41  * Set Trace mecanism
42  * - delete preexisting trace classes if any
43  * - set trace on file
44  */
45 // ============================================================================
46
47 void 
48 UtilsTest::setUp()
49 {
50   LocalTraceBufferPool* bp1 = LocalTraceBufferPool::instance();
51   CPPUNIT_ASSERT(bp1);
52   bp1->deleteInstance(bp1);
53
54   // --- trace on file
55   const char *theFileName = TRACEFILE;
56
57   std::string s = "file:";
58   s += theFileName;
59   CPPUNIT_ASSERT(! setenv("SALOME_trace",s.c_str(),1)); // 1: overwrite
60
61   std::ofstream traceFile;
62   traceFile.open(theFileName, std::ios::out | std::ios::app);
63   CPPUNIT_ASSERT(traceFile); // file created empty, then closed
64   traceFile.close();
65
66   bp1 = LocalTraceBufferPool::instance();
67   CPPUNIT_ASSERT(bp1);
68 }
69
70 // ============================================================================
71 /*!
72  *  - delete trace classes
73  */
74 // ============================================================================
75
76 void 
77 UtilsTest::tearDown()
78 {
79   LocalTraceBufferPool* bp1 = LocalTraceBufferPool::instance();
80   CPPUNIT_ASSERT(bp1);
81   bp1->deleteInstance(bp1);
82 }
83
84 int genExcept()
85 {
86   throw SALOME_Exception("a message");
87 };
88
89 // ============================================================================
90 /*!
91  * Check basic SALOME_exception mecanism
92  */
93 // ============================================================================
94
95 void
96 UtilsTest::testSALOME_ExceptionThrow()
97 {
98   CPPUNIT_ASSERT_THROW(genExcept(), SALOME_Exception);
99 }
100
101 // ============================================================================
102 /*!
103  * Check message on catch
104  */
105 // ============================================================================
106
107 void
108 UtilsTest::testSALOME_ExceptionMessage()
109 {
110 #define EXAMPLE_EXCEPTION_MESSAGE "something for the end user"
111   try
112     {
113       throw SALOME_Exception(EXAMPLE_EXCEPTION_MESSAGE);
114     }
115   catch (const SALOME_Exception &ex)
116     {
117       std::string expectedMessage = EXAMPLE_EXCEPTION_MESSAGE;
118       std::string actualMessage = ex.what();
119       CPPUNIT_ASSERT(actualMessage.find(expectedMessage) != std::string::npos);
120     }
121 }