]> Creatis software - clitk.git/blob - tests/tools/clitkImageInfoTest.cxx
tests with google tests coupled with cdash reporting
[clitk.git] / tests / tools / clitkImageInfoTest.cxx
1 /*=========================================================================
2   Program:   vv                     http://www.creatis.insa-lyon.fr/rio/vv
3
4   Authors belong to:
5   - University of LYON              http://www.universite-lyon.fr/
6   - Léon Bérard cancer center       http://www.centreleonberard.fr
7   - CREATIS CNRS laboratory         http://www.creatis.insa-lyon.fr
8
9   This software is distributed WITHOUT ANY WARRANTY; without even
10   the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
11   PURPOSE.  See the copyright notices for more information.
12
13   It is distributed under dual licence
14
15   - BSD        See included LICENSE.txt file
16   - CeCILL-B   http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
17 ===========================================================================*/
18 #include <iostream>
19 #include <sstream>
20 #include <string>
21 #include <fstream>
22 #include "gtest/gtest.h"
23 #include "stdio.h"
24 #include <itksys/SystemTools.hxx>
25 static inline void compare(std::string mhd, std::string ref){
26   std::ostringstream cmd_line;
27   ASSERT_TRUE(itksys::SystemTools::FileExists(mhd.c_str(), true));
28   cmd_line << TOOLS_PATH<<"clitkImageInfo " << mhd << " > clitkImageInfoTest.out";
29   std::cout << "Executing " << cmd_line.str() << std::endl;
30   system(cmd_line.str().c_str());
31   
32   bool differ = itksys::SystemTools::FilesDiffer("clitkImageInfoTest.out", ref.c_str());
33   remove("clitkImageInfoTest.out");
34   EXPECT_FALSE(differ);
35 }
36 TEST(clitkImageInfoTest, main){
37   std::string mhd1=std::string(CLITK_DATA_PATH)+"4d/mhd/00.mhd";
38   std::string ref1=std::string(CLITK_DATA_PATH)+"tools/clitkImageInfoTestValidate3D.out";
39   compare(mhd1, ref1);
40   
41   std::string mhd2=std::string(CLITK_DATA_PATH)+"4d/mhd/bh.mhd";
42   std::string ref2=std::string(CLITK_DATA_PATH)+"tools/clitkImageInfoTestValidate4D.out";
43   compare(mhd2, ref2);
44 }