55 m_TestFilter = mitk::USImageLoggingFilter::New();
56 m_TemporaryTestDirectory = mitk::IOUtil::GetTempPath();
57 m_RandomRestImage1 = mitk::ImageGenerator::GenerateRandomImage<float>(100, 100, 100, 1, 0.2, 0.3, 0.4);
58 m_RandomRestImage2 = mitk::ImageGenerator::GenerateRandomImage<float>(100, 100, 100, 1, 0.2, 0.3, 0.4);
59 m_RandomSingleSliceImage = mitk::ImageGenerator::GenerateRandomImage<float>(100, 100, 1, 1, 0.2, 0.3, 0.4);
60 m_RealTestImage = mitk::IOUtil::Load<mitk::Image>(GetTestDataFilePath(
"Pic3D.nrrd"));
80 m_TestFilter->SetInput(m_RandomRestImage1);
81 m_TestFilter->SetInput(
"secondImage",m_RandomRestImage2);
82 m_TestFilter->Update();
83 MITK_TEST_OUTPUT(<<
"Tested method Update() with valid data.");
84 std::vector<std::string> filenames;
85 std::string csvFileName;
86 m_TestFilter->SaveImages(m_TemporaryTestDirectory,filenames,csvFileName);
87 MITK_TEST_OUTPUT(<<
"Tested method SaveImages(...).");
88 CPPUNIT_ASSERT_MESSAGE(
"Testing if correct number of images was saved",filenames.size() == 1);
89 CPPUNIT_ASSERT_MESSAGE(
"Testing if image file exists",Poco::File(filenames.at(0).c_str()).exists());
90 CPPUNIT_ASSERT_MESSAGE(
"Testing if csv file exists",Poco::File(csvFileName.c_str()).exists());
93 std::remove(filenames.at(0).c_str());
94 std::remove(csvFileName.c_str());
100 m_TestFilter->SetInput(m_RandomRestImage1);
101 m_TestFilter->SetInput(
"secondImage",m_RandomRestImage2);
103 for(
int i=0; i<5; i++)
105 m_TestFilter->Update();
106 std::stringstream testmessage;
107 testmessage <<
"testmessage" << i;
108 m_TestFilter->AddMessageToCurrentImage(testmessage.str());
109 itksys::SystemTools::Delay(50);
111 MITK_TEST_OUTPUT(<<
"Call Update() 5 times.");
113 std::vector<std::string> filenames;
114 std::string csvFileName;
115 m_TestFilter->SaveImages(m_TemporaryTestDirectory,filenames,csvFileName);
116 MITK_TEST_OUTPUT(<<
"Tested method SaveImages(...).");
117 CPPUNIT_ASSERT_MESSAGE(
"Testing if correct number of images was saved",filenames.size() == 5);
118 CPPUNIT_ASSERT_MESSAGE(
"Testing if file 1 exists",Poco::File(filenames.at(0).c_str()).exists());
119 CPPUNIT_ASSERT_MESSAGE(
"Testing if file 2 exists",Poco::File(filenames.at(1).c_str()).exists());
120 CPPUNIT_ASSERT_MESSAGE(
"Testing if file 3 exists",Poco::File(filenames.at(2).c_str()).exists());
121 CPPUNIT_ASSERT_MESSAGE(
"Testing if file 4 exists",Poco::File(filenames.at(3).c_str()).exists());
122 CPPUNIT_ASSERT_MESSAGE(
"Testing if file 5 exists",Poco::File(filenames.at(4).c_str()).exists());
123 CPPUNIT_ASSERT_MESSAGE(
"Testing if csv file exists",Poco::File(csvFileName.c_str()).exists());
126 for(
size_t i=0; i<filenames.size(); i++) std::remove(filenames.at(i).c_str());
127 std::remove(csvFileName.c_str());
133 mitk::Image::Pointer testImage = mitk::Image::New();
134 mitk::Image::Pointer testImage2 = mitk::Image::New();
137 m_TestFilter->SetInput(testImage);
138 CPPUNIT_ASSERT_MESSAGE(
"Testing SetInput(...) for first input.",m_TestFilter->GetNumberOfInputs()==1);
139 m_TestFilter->SetInput(
"secondImage",testImage2);
140 CPPUNIT_ASSERT_MESSAGE(
"Testing SetInput(...) for second input.",m_TestFilter->GetNumberOfInputs()==2);
143 CPPUNIT_ASSERT_NO_THROW_MESSAGE(
"Tested method Update() with invalid data.",m_TestFilter->Update());
163 CPPUNIT_ASSERT_MESSAGE(
"Testing setting of jpg extension.",m_TestFilter->SetImageFilesExtension(
".jpg"));
164 m_TestFilter->SetInput(m_RandomSingleSliceImage);
165 m_TestFilter->Update();
167 std::vector<std::string> filenames;
168 std::string csvFileName;
169 m_TestFilter->SaveImages(m_TemporaryTestDirectory,filenames,csvFileName);
170 CPPUNIT_ASSERT_MESSAGE(
"Testing if correct number of images was saved",filenames.size() == 1);
171 CPPUNIT_ASSERT_MESSAGE(
"Testing if jpg image file exists",Poco::File(filenames.at(0).c_str()).exists());
172 CPPUNIT_ASSERT_MESSAGE(
"Testing if csv file exists",Poco::File(csvFileName.c_str()).exists());
175 std::remove(filenames.at(0).c_str());
176 std::remove(csvFileName.c_str());
181 CPPUNIT_ASSERT_MESSAGE(
"Testing if PIC extension can be set.",m_TestFilter->SetImageFilesExtension(
"PIC"));
182 CPPUNIT_ASSERT_MESSAGE(
"Testing if bmp extension can be set.",m_TestFilter->SetImageFilesExtension(
"bmp"));
183 CPPUNIT_ASSERT_MESSAGE(
"Testing if gdc extension can be set.",m_TestFilter->SetImageFilesExtension(
"gdcm"));
184 CPPUNIT_ASSERT_MESSAGE(
"Testing if dcm extension can be set.",m_TestFilter->SetImageFilesExtension(
"dcm"));
185 CPPUNIT_ASSERT_MESSAGE(
"Testing if dc3 extension can be set.",m_TestFilter->SetImageFilesExtension(
"dc3"));
186 CPPUNIT_ASSERT_MESSAGE(
"Testing if ima extension can be set.",m_TestFilter->SetImageFilesExtension(
".ima"));
187 CPPUNIT_ASSERT_MESSAGE(
"Testing if img extension can be set.",m_TestFilter->SetImageFilesExtension(
"img"));
188 CPPUNIT_ASSERT_MESSAGE(
"Testing if gip extension can be set.",m_TestFilter->SetImageFilesExtension(
"gipl"));
189 CPPUNIT_ASSERT_MESSAGE(
"Testing if gipl.gz extension can be set.",m_TestFilter->SetImageFilesExtension(
".gipl.gz"));
190 CPPUNIT_ASSERT_MESSAGE(
"Testing if jpg extension can be set.",m_TestFilter->SetImageFilesExtension(
"jpg"));
191 CPPUNIT_ASSERT_MESSAGE(
"Testing if jpe extension can be set.",m_TestFilter->SetImageFilesExtension(
"jpeg"));
192 CPPUNIT_ASSERT_MESSAGE(
"Testing if pic extension can be set.",m_TestFilter->SetImageFilesExtension(
"pic"));
198 CPPUNIT_ASSERT_MESSAGE(
"Testing if wrong obj extension is recognized",!m_TestFilter->SetImageFilesExtension(
"obj "));
199 CPPUNIT_ASSERT_MESSAGE(
"Testing if wrong stl extension is recognized",!m_TestFilter->SetImageFilesExtension(
"stl "));
200 CPPUNIT_ASSERT_MESSAGE(
"Testing if wrong pvtp extension is recognized",!m_TestFilter->SetImageFilesExtension(
"pvtp"));
201 CPPUNIT_ASSERT_MESSAGE(
"Testing if wrong vtp extension is recognized",!m_TestFilter->SetImageFilesExtension(
"vtp "));
202 CPPUNIT_ASSERT_MESSAGE(
"Testing if wrong vtk extension is recognized",!m_TestFilter->SetImageFilesExtension(
"vtk "));