]> Creatis software - clitk.git/commitdiff
Modification for nightly builds
authormpech <maxime.pech@insa-lyon.fr>
Wed, 29 Jun 2011 11:31:10 +0000 (13:31 +0200)
committermpech <maxime.pech@insa-lyon.fr>
Wed, 29 Jun 2011 11:31:10 +0000 (13:31 +0200)
tests/CMakeLists.txt
tests/tools/CMakeLists.txt
tests/tools/clitkAffineTransformTest.cxx

index fcacae041d9ce5432b9f831754bdb18fe8a49951..04a0b0aa44ff44f5f87be0437f2ffedf49d8bd00 100644 (file)
@@ -1,5 +1,21 @@
 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})
@@ -18,11 +34,6 @@ SET(EXECUTABLE_OUTPUT_PATH ${PROJECT_BINARY_DIR}/tests/bin)
 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/)
index 8c6c282779e0a280d5f389fdce066cdc4dda2c28..6f4bcbffeb2f188b0e0c17203d591217030d84c4 100644 (file)
@@ -12,4 +12,9 @@ target_link_libraries(toolsTest vvLib ${vvExternalLibs} gtest)
 # 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
index 1af7cc2dc7fcb8d6567cd4a14923d07eb1cf7dbb..82d4df99d0e2ca232d4f96c002797fe1982da54a 100644 (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";