X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=Testing%2FTestAllVM.cxx;h=fadab1756cdfbf5d16f97f4a90648d0cc385e376;hb=7cd88a1f47eccb99922d30d19cda56a5fee5f697;hp=1dce8206204ea1a16d8749ad6ea56ba45a726ab6;hpb=0fc66fe8e0c0713d1896f1f991b7a24c5da28214;p=gdcm.git diff --git a/Testing/TestAllVM.cxx b/Testing/TestAllVM.cxx index 1dce8206..fadab175 100644 --- a/Testing/TestAllVM.cxx +++ b/Testing/TestAllVM.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: TestAllVM.cxx,v $ Language: C++ - Date: $Date: 2005/10/23 14:53:51 $ - Version: $Revision: 1.7 $ + Date: $Date: 2006/07/05 13:08:32 $ + Version: $Revision: 1.14 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -24,41 +24,48 @@ int DoTheVMTest(std::string const &filename) { - gdcm::File file; + gdcm::File *file = gdcm::File::New(); // - Do not test unknow VM in shadow groups (if element 0x0000 is present) // - Skip Sequences (if they are 'True Length'); loading will be quicker // (anyway, Sequences are skipped at processing time ...) - file.SetLoadMode( gdcm::LD_NOSHADOW | gdcm::LD_NOSEQ ); + file->SetLoadMode( gdcm::LD_NOSHADOW | gdcm::LD_NOSEQ ); - file.SetFileName( filename ); - if( !file.Load() ) //would be really bad... + file->SetFileName( filename ); + if( !file->Load() ) //would be really bad... return 1; - gdcm::DocEntry *d = file.GetFirstEntry(); + gdcm::DocEntry *d = file->GetFirstEntry(); std::cerr << "Testing file : " << filename << std::endl; + gdcm::DataEntry *de; while(d) { - if ( gdcm::DataEntry *de = dynamic_cast(d) ) + if ( (de = dynamic_cast(d)) ) { if ( !(de->GetGroup() % 2) ) // Don't check shadow elements. Righ now, // Private Dictionnary are not dealt with { - if( !de->IsValueCountValid() ) - { - std::cerr << "Element: " << de->GetKey() << + // We know OB and OW VM is always 1, whatever the actual + // found value is. + + if (de->GetVR() != "OB" && de->GetVR() != "OW" ) + if( !de->IsValueCountValid() ) + { + std::cerr << "Element: " << de->GetKey() << " (" << de->GetName() << ") " << "Contains a wrong VM: " << de->GetValueCount() << " should be: " << de->GetVM() << std::endl;; - } + } } } else { // We skip pb of SQ recursive exploration } - d = file.GetNextEntry(); + d = file->GetNextEntry(); } - return 0; + file->Delete(); + + return 0; } int TestAllVM(int argc, char *argv[]) @@ -78,6 +85,11 @@ int TestAllVM(int argc, char *argv[]) std::string filename = GDCM_DATA_ROOT; filename += "/"; filename += gdcmDataImages[i]; + + if (!strcmp(gdcmDataImages[i],"00191113.dcm")) // Track bug on Darwin + gdcm::Debug::DebugOn(); + else + gdcm::Debug::DebugOff(); if( DoTheVMTest( filename ) ) return 1;