MITK-IGT
IGT Extension of MITK
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
mitkNavigationDataRecorderTest.cpp
Go to the documentation of this file.
1/*============================================================================
2
3The Medical Imaging Interaction Toolkit (MITK)
4
5Copyright (c) German Cancer Research Center (DKFZ)
6All rights reserved.
7
8Use of this source code is governed by a 3-clause BSD license that can be
9found in the LICENSE file.
10
11============================================================================*/
12
16#include <mitkStandardFileLocations.h>
17#include <mitkTestingMacros.h>
18#include <mitkTestFixture.h>
19#include <mitkIOUtil.h>
20
21//for exceptions
22#include "mitkIGTException.h"
23#include "mitkIGTIOException.h"
24
25class mitkNavigationDataRecorderTestSuite : public mitk::TestFixture
26{
27 CPPUNIT_TEST_SUITE(mitkNavigationDataRecorderTestSuite);
28 MITK_TEST(TestRecording);
29 MITK_TEST(TestStopRecording);
30 MITK_TEST(TestLimiting);
31
32 CPPUNIT_TEST_SUITE_END();
33
34private:
35 mitk::NavigationDataSet::Pointer m_NavigationDataSet;
36 mitk::NavigationDataSequentialPlayer::Pointer m_Player;
37 mitk::NavigationDataRecorder::Pointer m_Recorder;
38
39public:
40
41 void setUp() override
42 {
43 std::string path = GetTestDataFilePath("IGT-Data/RecordedNavigationData.xml");
44 m_NavigationDataSet = dynamic_cast<mitk::NavigationDataSet*> (mitk::IOUtil::Load(path)[0].GetPointer());
45
46
47 m_Player = mitk::NavigationDataSequentialPlayer::New();
48 m_Player->SetNavigationDataSet(m_NavigationDataSet);
49
50 m_Recorder = mitk::NavigationDataRecorder::New();
51 m_Recorder->SetStandardizeTime(false);
52
53 // connect player to recorder
54 m_Recorder->ConnectTo(m_Player);
55 }
56
57 void tearDown() override
58 {
59 }
60
62 {
63 m_Recorder->StartRecording();
64 while (!m_Player->IsAtEnd())
65 {
66 m_Recorder->Update();
67 m_Player->GoToNextSnapshot();
68 }
69
70 mitk::NavigationDataSet::Pointer recordedData = m_Recorder->GetNavigationDataSet();
71
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");
74 }
75
77 {
78 // Aim is to read an xml into a pointset, play that set with a sequentialplayer, record it
79 // again, write the result to xml , and compare the output
80
81 m_Recorder->StartRecording();
82 int i = 0;
83 while (i < 5)
84 {
85 m_Recorder->Update();
86 m_Player->GoToNextSnapshot();
87 i++;
88 }
89
90 m_Recorder->StopRecording();
91 MITK_TEST_CONDITION_REQUIRED(! m_Recorder->GetRecording(), "Test if StopRecording is working, part 1");
92 while (i < 5)
93 {
94 m_Recorder->Update();
95 m_Player->GoToNextSnapshot();
96 i++;
97 }
98
99 MITK_TEST_CONDITION_REQUIRED(m_Recorder->GetNavigationDataSet()->Size() == 5, "Test if StopRecording is working, part 2");
100 }
101
103 {
104 // Check if Limiting recording works
105 m_Recorder->SetRecordCountLimit(30);
106 m_Recorder->StartRecording();
107 while (!m_Player->IsAtEnd())
108 {
109 m_Recorder->Update();
110 m_Player->GoToNextSnapshot();
111 }
112
113 MITK_TEST_CONDITION_REQUIRED(m_Recorder->GetNavigationDataSet()->Size() == 30, "Test if SetRecordCountLimit works as intended.");
114 }
115
116private:
117
118 /*
119 * private hepler method that compares the recorded Dataset against the member variable.
120 * This is a reasonable test only under the assumption that the Data should be equal from coyping - It does not consider
121 * homonymus Quaternions and NO FLOAT ROUNDING ISSUES
122 */
123 bool compareDataSet(mitk::NavigationDataSet::Pointer recorded)
124 {
125 for (unsigned int tool = 0; tool < recorded->GetNumberOfTools(); tool++){
126 for (unsigned int i = 0; i < recorded->Size(); i++)
127 {
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;}
132 }
133 }
134 return true;
135 }
136};
137MITK_TEST_SUITE_REGISTRATION(mitkNavigationDataRecorder)
Data structure which stores streams of mitk::NavigationData for multiple tools.