Salome HOME
Update HDF testing engine to avoid hanging if X client is unavalable.
[modules/shaper.git] / test.hdfs / CMakeLists.txt
1 # Copyright (C) 2014-2019  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 ENABLE_TESTING()
21
22 SET(RESTRICTED_ROOT_DIR $ENV{RESTRICTED_ROOT_DIR} CACHE PATH "Path to the restricted repository")
23
24 set(hdfFilesRestr "")
25 if (EXISTS ${RESTRICTED_ROOT_DIR})
26   file(GLOB hdfFilesRestr "${RESTRICTED_ROOT_DIR}/SHAPER/test.hdfs/*.hdf")
27 endif()
28
29 file(GLOB hdfFilesCur "${CMAKE_CURRENT_SOURCE_DIR}/*.hdf")
30 set(hdfFilesRestr ${hdfFilesCur} ${hdfFilesRestr})
31
32 if (WIN32) # different separators and path to libraries variable name
33   SET(_JUSTPATH "${CMAKE_INSTALL_PREFIX}/${SHAPER_INSTALL_BIN};${CMAKE_INSTALL_PREFIX}/${SHAPER_INSTALL_SWIG};${CMAKE_INSTALL_PREFIX}/${SHAPER_INSTALL_PLUGIN_FILES};${SUIT_LIB_DIR};$ENV{PATH}")
34   STRING(REPLACE "\\" "/" _JUSTPATH "${_JUSTPATH}")
35   STRING(REPLACE ";" "\\;" _JUSTPATH "${_JUSTPATH}")
36   SET(_PYTHONPATH "${CMAKE_INSTALL_PREFIX}/${SHAPER_INSTALL_SWIG};${CMAKE_INSTALL_PREFIX}/${SHAPER_INSTALL_PLUGIN_FILES};${CMAKE_INSTALL_PREFIX}/${SHAPER_INSTALL_ADDONS};$ENV{PYTHONPATH}")
37   STRING(REPLACE "\\" "/" _PYTHONPATH "${_PYTHONPATH}")
38   STRING(REPLACE ";" "\\;" _PYTHONPATH "${_PYTHONPATH}")
39 else()
40   SET(_LD_LIBRARY_PATH "${CMAKE_INSTALL_PREFIX}/${SHAPER_INSTALL_BIN}:${CMAKE_INSTALL_PREFIX}/${SHAPER_INSTALL_SWIG}:${CMAKE_INSTALL_PREFIX}/${SHAPER_INSTALL_PLUGIN_FILES}:${SUIT_LIB_DIR}:$ENV{LD_LIBRARY_PATH}")
41   SET(_PYTHONPATH "${CMAKE_INSTALL_PREFIX}/${SHAPER_INSTALL_SWIG}:${CMAKE_INSTALL_PREFIX}/${SHAPER_INSTALL_PLUGIN_FILES}:${CMAKE_INSTALL_PREFIX}/${SHAPER_INSTALL_ADDONS}:$ENV{PYTHONPATH}")
42 endif()
43
44 foreach(eachFilePath ${hdfFilesRestr})
45   # Strip the ".hdf" suffix
46   GET_FILENAME_COMPONENT(aTestName ${eachFilePath} NAME_WE)
47   # Check corresponding ".py" file with reference data exists
48   IF(NOT EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/${aTestName}.py")
49     MESSAGE(WARNING "File ${aTestName}.py containing reference data does not exist")
50     continue()
51   ENDIF()
52
53   # Add "SubprojectName_" prefix
54   GET_FILENAME_COMPONENT(aSubprojectName ${CMAKE_CURRENT_SOURCE_DIR} NAME)
55   SET(aTestName "${aSubprojectName}_${aTestName}")
56
57   # Full path to the python test file being executed
58   SET(aTestFilePath "${eachFilePath}")
59   IF(EXISTS ${aTestFilePath})
60     ADD_TEST(NAME ${aTestName} COMMAND ${PYTHON_EXECUTABLE} "${CMAKE_CURRENT_SOURCE_DIR}/test.py" "$ENV{KERNEL_ROOT_DIR}" "${CMAKE_CURRENT_SOURCE_DIR}" "${aTestFilePath}")
61     if (WIN32) # different path to libraries variable name
62       SET_TESTS_PROPERTIES(${aTestName} PROPERTIES ENVIRONMENT "PATH=${_JUSTPATH};PYTHONPATH=${_PYTHONPATH}"
63         LABELS "models_hdf")
64     else()
65       SET_TESTS_PROPERTIES(${aTestName} PROPERTIES ENVIRONMENT "LD_LIBRARY_PATH=${_LD_LIBRARY_PATH};PYTHONPATH=${_PYTHONPATH}"
66         LABELS "models_hdf")
67     endif()
68     # Debug output...
69     # MESSAGE(STATUS "Test added: ${aTestName} file: ${aTestFilePath}")
70   ELSE(EXISTS ${aTestFilePath})
71     MESSAGE(WARNING "Can not find the test file: ${aTestFilePath}")
72   ENDIF(EXISTS ${aTestFilePath})
73 endforeach(eachFilePath ${ARGN})
74
75 ADD_CUSTOM_TARGET(run_hdf_tests COMMAND ${CMAKE_CTEST_COMMAND} -C "${CMAKE_BUILD_TYPE}" -L "models_hdf")