Salome HOME
Rework HDF testing procedure
[modules/shaper.git] / test.hdfs / tests.set
1 # Copyright (C) 2020  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 set(RESTRICTED_ROOT_DIR $ENV{RESTRICTED_ROOT_DIR} CACHE PATH "Path to the restricted repository")
21
22 # get all restricted HDF tests
23 set(hdfFilesRestr "")
24 if (EXISTS ${RESTRICTED_ROOT_DIR})
25   file(GLOB hdfFilesRestr "${RESTRICTED_ROOT_DIR}/SHAPER/test.hdfs/*.hdf")
26 endif()
27
28 # get all HDF tests from the current drectory
29 file(GLOB hdfFilesCur "${CMAKE_CURRENT_SOURCE_DIR}/*.hdf")
30 set(hdfFilesRestr ${hdfFilesCur} ${hdfFilesRestr})
31
32 # collect test names
33 set(TEST_NAMES "")
34 foreach(eachFilePath ${hdfFilesRestr})
35   # Strip the ".hdf" suffix
36   get_filename_component(aTestName ${eachFilePath} NAME_WE)
37   # Check corresponding ".py" file with reference data exists
38   if(EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/${aTestName}.py")
39     set(TEST_NAMES ${aTestName} ${TEST_NAMES})
40   else()
41     message(WARNING "File ${aTestName}.py containing reference data for ${aTestName}.hdf does not exist")
42   endif()
43 endforeach()
44
45 # return full path to HDF file related to the given test name
46 function(GET_HDF hdfFullPath testName)
47   if(EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/${testName}.hdf")
48     set(${hdfFullPath} "${CMAKE_CURRENT_SOURCE_DIR}/${testName}.hdf" PARENT_SCOPE)
49   elseif(EXISTS "${RESTRICTED_ROOT_DIR}/SHAPER/test.hdfs/${testName}.hdf")
50     set(${hdfFullPath} "${RESTRICTED_ROOT_DIR}/SHAPER/test.hdfs/${testName}.hdf" PARENT_SCOPE)
51   endif()
52 endfunction(GET_HDF)