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