32 CPPUNIT_TEST_SUITE_END();
35 mitk::NavigationDataSet::Pointer m_NavigationDataSet;
36 mitk::NavigationDataSequentialPlayer::Pointer m_Player;
37 mitk::NavigationDataRecorder::Pointer m_Recorder;
43 std::string path = GetTestDataFilePath(
"IGT-Data/RecordedNavigationData.xml");
47 m_Player = mitk::NavigationDataSequentialPlayer::New();
48 m_Player->SetNavigationDataSet(m_NavigationDataSet);
50 m_Recorder = mitk::NavigationDataRecorder::New();
51 m_Recorder->SetStandardizeTime(
false);
54 m_Recorder->ConnectTo(m_Player);
63 m_Recorder->StartRecording();
64 while (!m_Player->IsAtEnd())
67 m_Player->GoToNextSnapshot();
70 mitk::NavigationDataSet::Pointer recordedData = m_Recorder->GetNavigationDataSet();
72 MITK_TEST_CONDITION_REQUIRED(recordedData->Size() == m_NavigationDataSet->Size(),
"Test if recorded Dataset is of equal size as original");
73 MITK_TEST_CONDITION_REQUIRED(compareDataSet(recordedData),
"Test recorded dataset for equality with reference");
81 m_Recorder->StartRecording();
86 m_Player->GoToNextSnapshot();
90 m_Recorder->StopRecording();
91 MITK_TEST_CONDITION_REQUIRED(! m_Recorder->GetRecording(),
"Test if StopRecording is working, part 1");
95 m_Player->GoToNextSnapshot();
99 MITK_TEST_CONDITION_REQUIRED(m_Recorder->GetNavigationDataSet()->Size() == 5,
"Test if StopRecording is working, part 2");
105 m_Recorder->SetRecordCountLimit(30);
106 m_Recorder->StartRecording();
107 while (!m_Player->IsAtEnd())
109 m_Recorder->Update();
110 m_Player->GoToNextSnapshot();
113 MITK_TEST_CONDITION_REQUIRED(m_Recorder->GetNavigationDataSet()->Size() == 30,
"Test if SetRecordCountLimit works as intended.");
123 bool compareDataSet(mitk::NavigationDataSet::Pointer recorded)
125 for (
unsigned int tool = 0; tool < recorded->GetNumberOfTools(); tool++){
126 for (
unsigned int i = 0; i < recorded->Size(); i++)
128 mitk::NavigationData::Pointer ref = m_NavigationDataSet->GetNavigationDataForIndex(i,tool);
129 mitk::NavigationData::Pointer rec = recorded->GetNavigationDataForIndex(i,tool);
130 if (!(ref->GetOrientation().as_vector() == rec->GetOrientation().as_vector())) {
return false;}
131 if (!(ref->GetPosition().GetVnlVector() == rec->GetPosition().GetVnlVector())) {
return false;}