]> SALOME platform Git repositories - tools/medcoupling.git/blob - src/INTERP_KERNELTest/TestInterpKernelUtils.cxx
Salome HOME
262699a35a47a40430e8388acdb5a3f076f225de
[tools/medcoupling.git] / src / INTERP_KERNELTest / TestInterpKernelUtils.cxx
1 // Copyright (C) 2007-2015  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 #include "TestInterpKernelUtils.hxx"
21 #include "InterpKernelException.hxx"
22
23 #include <cstdlib>
24 #include <unistd.h>
25 #include <sstream>
26 #include <fstream>
27
28 namespace INTERP_TEST
29 {
30   std::string getResourceFile( const std::string& filename )
31   {
32     std::string resourceFile = "";
33     bool good = false;
34
35     if ( getenv("MEDCOUPLING_ROOT_DIR") ) {
36       // use MEDCOUPLING_ROOT_DIR env.var
37       resourceFile = getenv("MEDCOUPLING_ROOT_DIR");
38       resourceFile += "/share/resources/med/";
39       resourceFile += filename;
40       std::ifstream my_file(resourceFile);
41       if (my_file.good())
42         good = true;
43     }
44     if (!good)
45       {
46         resourceFile = get_current_dir_name();
47         resourceFile += "/../../resources/";
48         std::ifstream my_file(resourceFile);
49         if (!my_file.good())
50           {
51             std::stringstream ss;
52             ss << "INTERP_TEST::getResourceFile(): could not open resource test file: " << filename << "\n";
53             throw INTERP_KERNEL::Exception(ss.str().c_str());
54           }
55       }
56
57     return resourceFile;
58   }
59
60 } // namespace INTERP_TEST