X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=Testing%2FTestReadWriteReadCompare.cxx;h=468b8721840febb9fa0087fc72fb81cc8d511422;hb=c55ef12ae4b89631bd3d7eacca2b72a3087ea873;hp=b5359ba8990b8b00f27ae8afcff8bd76687ac4c7;hpb=e5e7b1bd7ee84e8f9dc7da5d1d42b598fac68399;p=gdcm.git diff --git a/Testing/TestReadWriteReadCompare.cxx b/Testing/TestReadWriteReadCompare.cxx index b5359ba8..468b8721 100644 --- a/Testing/TestReadWriteReadCompare.cxx +++ b/Testing/TestReadWriteReadCompare.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: TestReadWriteReadCompare.cxx,v $ Language: C++ - Date: $Date: 2004/11/25 10:24:34 $ - Version: $Revision: 1.16 $ + Date: $Date: 2005/01/21 11:40:54 $ + Version: $Revision: 1.20 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -15,8 +15,8 @@ PURPOSE. See the above copyright notices for more information. =========================================================================*/ -#include "gdcmHeader.h" #include "gdcmFile.h" +#include "gdcmFileHelper.h" //Generated file: #include "gdcmDataImages.h" @@ -27,7 +27,7 @@ int CompareInternal(std::string const & filename, std::string const & output) //////////////// Step 1 (see above description): - gdcm::Header *header = new gdcm::Header( filename ); + gdcm::File *header = new gdcm::File( filename ); if( !header->IsReadable() ) { std::cerr << "Test::TestReadWriteReadCompare: Image not gdcm compatible:" @@ -39,7 +39,7 @@ int CompareInternal(std::string const & filename, std::string const & output) //////////////// Step 2: - gdcm::File* file = new gdcm::File( header ); + gdcm::FileHelper* file = new gdcm::FileHelper( header ); int dataSize = file->GetImageDataSize(); uint8_t* imageData = file->GetImageData(); //EXTREMELY IMPORTANT // Sure, it is : It's up to the user to decide if he wants to @@ -70,8 +70,8 @@ int CompareInternal(std::string const & filename, std::string const & output) //////////////// Step 3: - gdcm::File* reread = new gdcm::File( output ); - if( !reread->GetHeader()->IsReadable() ) + gdcm::FileHelper* reread = new gdcm::FileHelper( output ); + if( !reread->GetFile()->IsReadable() ) { std::cerr << "Failed" << std::endl << "Test::TestReadWriteReadCompare: Could not reread image " @@ -87,7 +87,26 @@ int CompareInternal(std::string const & filename, std::string const & output) uint8_t* imageDataWritten = reread->GetImageData(); //////////////// Step 4: + // Test the image size + if (header->GetXSize() != reread->GetFile()->GetXSize() || + header->GetYSize() != reread->GetFile()->GetYSize() || + header->GetZSize() != reread->GetFile()->GetZSize()) + { + std::cout << "Failed" << std::endl + << " X Size differs: " + << "X: " << header->GetXSize() << " # " + << reread->GetFile()->GetXSize() << " | " + << "Y: " << header->GetYSize() << " # " + << reread->GetFile()->GetYSize() << " | " + << "Z: " << header->GetZSize() << " # " + << reread->GetFile()->GetZSize() << std::endl; + delete header; + delete file; + delete reread; + return 1; + } + // Test the data size if (dataSize != dataSizeWritten) { std::cout << "Failed" << std::endl @@ -99,6 +118,7 @@ int CompareInternal(std::string const & filename, std::string const & output) return 1; } + // Test the data's content if (int res = memcmp(imageData, imageDataWritten, dataSize) !=0) { (void)res; @@ -138,7 +158,7 @@ int TestReadWriteReadCompare(int argc, char* argv[]) std::cout << " For all images in gdcmData (and not blacklisted in " "Test/CMakeLists.txt)" << std::endl; std::cout << " apply the following multistep test: " << std::endl; - std::cout << " step 1: parse the image (as gdcmHeader) and call" + std::cout << " step 1: parse the image (as gdcmFile) and call" << " IsReadable(). " << std::endl; std::cout << " step 2: write the corresponding image in DICOM V3 " << "with explicit" << std::endl