Salome HOME
Tests are now all runnable from BUILD dir only with no install.
[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, int levelUp)
31   {
32     std::string resourceFile = "";
33     if ( getenv("MEDCOUPLING_ROOT_DIR") ) {
34       // use MEDCOUPLING_ROOT_DIR env.var
35       resourceFile = getenv("MEDCOUPLING_ROOT_DIR");
36       resourceFile += IK_PATH_SEP + "share" + IK_PATH_SEP + "resources" + IK_PATH_SEP + "med" + IK_PATH_SEP;
37       resourceFile += filename;
38       std::ifstream my_file(resourceFile);
39       if (my_file.good())
40         return resourceFile;
41     }
42     // else
43     resourceFile = get_current_dir_name();
44     resourceFile += IK_PATH_SEP;
45     for(int i=0; i<levelUp; i++)
46       resourceFile += ".." + IK_PATH_SEP;
47     resourceFile += "resources" + IK_PATH_SEP;
48     resourceFile += filename;
49     std::ifstream my_file(resourceFile);
50     if (!my_file.good())
51       {
52         std::stringstream ss;
53         ss << "INTERP_TEST::getResourceFile(): could not open resource test file: " << filename << "\n";
54         throw INTERP_KERNEL::Exception(ss.str().c_str());
55       }
56
57     return resourceFile;
58   }
59
60 } // namespace INTERP_TEST