cmake_policy(SET CMP0005 NEW)
#=========================================================
+
+#=========================================================
+# Data tests path
+
+OPTION(CLITK_DATA_PATH ${CMAKE_CURRENT_BINARY_DIR}/data)
+ADD_DEFINITIONS(-DCLITK_DATA_PATH=\"${CLITK_DATA_PATH}\")
+#=========================================================
+#=========================================================
+# Get the data tests
+IF(WIN32)
+ SET(scriptExt bat)
+ELSE(UNIX)
+ SET(scriptExt sh)
+ENDIF()
+EXEC_PROGRAM(${CMAKE_CURRENT_SOURCE_DIR}/fetch_data_test.${scriptExt} ARGS ${CLITK_DATA_PATH})
+#=========================================================
# Google test macro
macro(ADD_GOOGLE_TESTS executable)
message(exe : ${executable})
SET(BUILDNAME ${CMAKE_SYSTEM_NAME}${CMAKE_OSX_ARCHITECTURES} CACHE INTERNAL DOCSTRING)
#=========================================================
#=========================================================
-# Data tests path
-FIND_PATH(CLITK_DATA_PATH data)
-ADD_DEFINITIONS(-DCLITK_DATA_PATH=\"${CLITK_DATA_PATH}\")
-#=========================================================
-#=========================================================
# GoogleTest framemwork
FIND_PATH(GTEST_DIR gtest)
INCLUDE_DIRECTORIES(${GTEST_DIR}/include/)
# Add all tests found in the source code, calling the executable to run them
add_google_tests ( ${EXECUTABLE_OUTPUT_PATH}/toolsTest ${srcs})
-SET(BUILDNAME ${BUILDNAME}_tools CACHE INTERNAL DOCSTRING)
\ No newline at end of file
+SET(BUILDNAME ${BUILDNAME}_tools CACHE INTERNAL DOCSTRING)
+
+ADD_EXECUTABLE(clitkImageInfoTest_oldWay clitkImageInfoTest_oldWay.cpp)
+target_link_libraries(clitkImageInfoTest_oldWay vvLib ${vvExternalLibs})
+ADD_TEST(clitkImageInfoTest_oldWay ${EXECUTABLE_OUTPUT_PATH}/clitkImageInfoTest_oldWay firstOne)
+ADD_TEST(clitkImageInfoTest_oldWay ${EXECUTABLE_OUTPUT_PATH}/clitkImageInfoTest_oldWay secondOne)
\ No newline at end of file
#include <itksys/SystemTools.hxx>
static inline void compare(std::string mhd, std::string refMhd, std::string refRaw){
std::ostringstream cmd_line;
+
+ //Ensure the description file exists
ASSERT_TRUE(itksys::SystemTools::FileExists(mhd.c_str(), true));
+
+ //Ensure the description reference file exists
ASSERT_TRUE(itksys::SystemTools::FileExists(refMhd.c_str(), true));
+
+ //Ensure our reference raw exists
ASSERT_TRUE(itksys::SystemTools::FileExists(refRaw.c_str(), true));
+//todo : test this on windows
+ //Generate the new mhd and the new raw
cmd_line << TOOLS_PATH<<"clitkAffineTransform -i " << mhd << " -o "<<"out.mhd >/dev/null";
system(cmd_line.str().c_str());
+
+ //Check the new file has been created
EXPECT_TRUE(itksys::SystemTools::FileExists("out.mhd", true));
+
+ //Check the mhd and the produced mhd are still equal
EXPECT_FALSE( itksys::SystemTools::FilesDiffer("out.mhd", refMhd.c_str()) );
- EXPECT_FALSE( itksys::SystemTools::FilesDiffer("out.raw", refRaw.c_str()) );
+
+ //Check the raw and the produced raw are different
+ EXPECT_TRUE( itksys::SystemTools::FilesDiffer("out.raw", refRaw.c_str()) );
+
+ //clean the produced junk
remove("out.mhd");
remove("out.raw");
}
-TEST(clitkAffineTransformTest, main){
+TEST(identity, clitkAffineTransformTest){
std::string mhd1=std::string(CLITK_DATA_PATH)+"Deformation4D.mhd";
std::string refMhd1=std::string(CLITK_DATA_PATH)+"Deformation4DRef.mhd";
std::string refRaw1=std::string(CLITK_DATA_PATH)+"Deformation4DRef.raw";