1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260
|
# This file contains CMake functions and macros used when testing ITK modules.
#-----------------------------------------------------------------------------
# Create source code, compile and link a test driver
# Two variables must be defined before including this file.
# KIT should define a unique name for the test driver.
# KitTests should contain a list of test file names.
# Arguments - Input
# KIT - the name of the test directory
# KIT_LIBS - a list of libraries needed to link the test driver
# KitTests - a list of tests to be included in the test driver
# ADDITIONAL_SRC (optional) - additional source files, which don't contain tests
macro(CreateTestDriver KIT KIT_LIBS KitTests)
set(ADDITIONAL_SRC ${ARGN})
if(EMSCRIPTEN)
set(emscripten_before "
EM_ASM(
var cmake_source_dir = '${CMAKE_SOURCE_DIR}'.split('/');
// This is intentionally global so it can be unmounted at the end.
source_mount_dir = null;
if(cmake_source_dir[1] === 'home') {
source_mount_dir = cmake_source_dir.slice(0, 3).join('/');
}
else {
source_mount_dir = cmake_source_dir.slice(0, 2).join('/');
}
FS.mkdir(source_mount_dir);
FS.mount(NODEFS, { root: source_mount_dir }, source_mount_dir);
var cmake_binary_dir = '${CMAKE_BINARY_DIR}'.split('/');
// This is intentionally global so it can be unmounted at the end.
binary_mount_dir = null;
if(cmake_binary_dir[1] === 'home') {
binary_mount_dir = cmake_binary_dir.slice(0, 3).join('/');
}
else {
binary_mount_dir = cmake_binary_dir.slice(0, 2).join('/');
}
if(source_mount_dir != binary_mount_dir) {
FS.mkdir(binary_mount_dir);
FS.mount(NODEFS, { root: binary_mount_dir }, binary_mount_dir);
}
);
")
set(emscripten_after "
EM_ASM(
FS.unmount(source_mount_dir);
if(source_mount_dir != binary_mount_dir) {
FS.unmount(binary_mount_dir);
}
);
")
endif()
set(CMAKE_TESTDRIVER_BEFORE_TESTMAIN "${emscripten_before}#include \"itkTestDriverBeforeTest.inc\"")
set(CMAKE_TESTDRIVER_AFTER_TESTMAIN "#include \"itkTestDriverAfterTest.inc\"${emscripten_after}")
create_test_sourcelist(Tests ${KIT}TestDriver.cxx
${KitTests}
EXTRA_INCLUDE itkTestDriverIncludeRequiredIOFactories.h
FUNCTION ProcessArgumentsAndRegisterRequiredFactories
)
add_executable(${KIT}TestDriver ${KIT}TestDriver.cxx ${Tests} ${ADDITIONAL_SRC})
target_link_libraries(${KIT}TestDriver LINK_PUBLIC ${KIT_LIBS} ${ITKTestKernel_LIBRARIES})
itk_module_target_label(${KIT}TestDriver)
endmacro()
macro(CreateTestDriver_SupportBuildInIOFactories KIT KIT_LIBS KitTests)
set(ADDITIONAL_SRC ${ARGN} )
if(EMSCRIPTEN)
set(emscripten_before "
EM_ASM(
var cmake_source_dir = '${CMAKE_SOURCE_DIR}'.split('/');
// This is intentionally global so it can be unmounted at the end.
source_mount_dir = null;
if(cmake_source_dir[1] === 'home') {
source_mount_dir = cmake_source_dir.slice(0, 3).join('/');
}
else {
source_mount_dir = cmake_source_dir.slice(0, 2).join('/');
}
FS.mkdir(source_mount_dir);
FS.mount(NODEFS, { root: source_mount_dir }, source_mount_dir);
// This is intentionally global so it can be unmounted at the end.
binary_mount_dir = null;
var cmake_binary_dir = '${CMAKE_BINARY_DIR}'.split('/');
if(cmake_binary_dir[1] === 'home') {
binary_mount_dir = cmake_binary_dir.slice(0, 3).join('/');
}
else {
binary_mount_dir = cmake_binary_dir.slice(0, 2).join('/');
}
if(source_mount_dir != binary_mount_dir) {
FS.mkdir(binary_mount_dir);
FS.mount(NODEFS, { root: binary_mount_dir }, binary_mount_dir);
}
);
")
set(emscripten_after "
EM_ASM(
FS.unmount(source_mount_dir);
if(source_mount_dir != binary_mount_dir) {
FS.unmount(binary_mount_dir);
}
);
")
endif()
set(CMAKE_TESTDRIVER_BEFORE_TESTMAIN "${emscripten_before}#include \"itkTestDriverBeforeTest.inc\"")
set(CMAKE_TESTDRIVER_AFTER_TESTMAIN "#include \"itkTestDriverAfterTest.inc\"${emscripten_after}")
create_test_sourcelist(Tests ${KIT}TestDriver.cxx
${KitTests}
EXTRA_INCLUDE itkTestDriverIncludeBuiltInIOFactories.h
FUNCTION ProcessArgumentsAndRegisterBuiltInFactories
)
add_executable(${KIT}TestDriver ${KIT}TestDriver.cxx ${Tests} ${ADDITIONAL_SRC})
target_link_libraries(${KIT}TestDriver LINK_PUBLIC ${KIT_LIBS} ${ITKTestKernel_LIBRARIES})
itk_module_target_label(${KIT}TestDriver)
endmacro()
#-----------------------------------------------------------------------------
# ITK wrapper for add_test that automatically sets the test's LABELS property
# to the value of its containing module.
#
function(itk_add_test)
# Add tests with data in the ITKData group.
ExternalData_add_test(ITKData ${ARGN})
if("NAME" STREQUAL "${ARGV0}")
set(_iat_testname ${ARGV1})
else()
set(_iat_testname ${ARGV0})
endif()
if(itk-module)
set(_label ${itk-module})
if(TARGET ${itk-module}-all AND "${ARGN}" MATCHES "DATA{")
add_dependencies(${itk-module}-all ITKData)
endif()
else()
set(_label ${main_project_name})
endif()
set_property(TEST ${_iat_testname} PROPERTY LABELS ${_label})
endfunction()
#-----------------------------------------------------------------------------
# ITK wrapper for add_test that runs the given Python script with a Python
# executable exposed to ITK's build tree Python wrapping
#
# Usage:
#
# itk_python_add_test(NAME testName
# TEST_DRIVER_ARGS --compare testOutput.mha testBaseline.mha
# SCRIPT testPythonScript.py argv1 argv2 argv3
# )
#
# where the named arguments are:
#
# NAME - test name
# TEST_DRIVER_ARGS - additional arguments to the itkTestDriver executable
# COMMAND - Python test script and its arguments
#
function(itk_python_add_test)
# No-op if wrapping is not available
if(NOT ITK_WRAP_PYTHON)
return()
endif()
set(options )
set(oneValueArgs NAME)
set(multiValueArgs TEST_DRIVER_ARGS COMMAND)
cmake_parse_arguments(PYTHON_ADD_TEST "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN})
set(command "${PYTHON_EXECUTABLE}")
# add extra command which may be needed on some systems
if(CMAKE_OSX_ARCHITECTURES)
list(GET CMAKE_OSX_ARCHITECTURES 0 test_arch)
set(command arch -${test_arch} ${command})
endif()
if(ITK_DIR)
set(itk_wrap_python_binary_dir "${ITK_DIR}/Wrapping/Generators/Python")
else()
set(itk_wrap_python_binary_dir "${ITK_BINARY_DIR}/Wrapping/Generators/Python")
endif()
itk_add_test(NAME ${PYTHON_ADD_TEST_NAME}
COMMAND itkTestDriver
--add-before-env PYTHONPATH "${itk_wrap_python_binary_dir}/$<CONFIGURATION>"
--add-before-env PYTHONPATH "${itk_wrap_python_binary_dir}"
--add-before-env PYTHONPATH "${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/$<CONFIGURATION>"
--add-before-env PYTHONPATH "${CMAKE_LIBRARY_OUTPUT_DIRECTORY}"
--add-before-libpath "${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/$<CONFIGURATION>"
--add-before-libpath "${CMAKE_LIBRARY_OUTPUT_DIRECTORY}"
--add-before-libpath "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/$<CONFIGURATION>"
--add-before-libpath "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}"
${PYTHON_ADD_TEST_TEST_DRIVER_ARGS}
${command}
${PYTHON_ADD_TEST_COMMAND}
WORKING_DIRECTORY "${CMAKE_CURRENT_LIST_DIR}"
)
set_property(TEST ${name} APPEND PROPERTY LABELS Python)
endfunction()
#-----------------------------------------------------------------------------
# ITK wrapper for add_test that runs the given Python expression to test the
# instantiation of a wrapped ITK Python class
#
# Usage:
#
# itk_python_expression_add_test(NAME testName
# EXPRESSION "image = itk.Image.New()"
# )
#
# where the named arguments are:
#
# NAME - test name
# EXPRESSION - expression to instantiate the object
#
function(itk_python_expression_add_test)
# No-op if wrapping is not available
if(NOT ITK_WRAP_PYTHON)
return()
endif()
set(options )
set(oneValueArgs NAME EXPRESSION)
set(multiValueArgs )
cmake_parse_arguments(PYTHON_EXPRESSION_ADD_TEST "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN})
itk_python_add_test(NAME ${PYTHON_EXPRESSION_ADD_TEST_NAME}
COMMAND -c "import itk$<SEMICOLON> itk.auto_progress(2)$<SEMICOLON> ${PYTHON_EXPRESSION_ADD_TEST_EXPRESSION}"
)
endfunction()
function(CreateGoogleTestDriver KIT KIT_LIBS KitTests)
set(exe "${KIT}GTestDriver")
add_executable(${exe} ${KitTests} )
target_link_libraries(${exe} ${KIT_LIBS} GTest::GTest GTest::Main)
itk_module_target_label(${exe})
include(GoogleTest)
gtest_add_tests(${exe} "" AUTO)
# TODO need to label the produced ctests
endfunction()
#-----------------------------------------------------------------------------
# ITK function to ignore a test
#
function(itk_tests_ignore)
set_property(GLOBAL APPEND PROPERTY CTEST_CUSTOM_TESTS_IGNORE ${ARGN})
endfunction()
#-----------------------------------------------------------------------------
# ITK function to ignore a test during MemCheck
#
function(itk_memcheck_ignore)
set_property(GLOBAL APPEND PROPERTY CTEST_CUSTOM_MEMCHECK_IGNORE ${ARGN})
endfunction()
|