comparison UnitTestsSources/DicomMapTests.cpp @ 1364:111e23bb4904 query-retrieve

integration mainline->query-retrieve
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 21 May 2015 16:58:30 +0200
parents 0649c5aef34a
children b22ba8c5edbe
comparison
equal deleted inserted replaced
953:f894be6e7cc1 1364:111e23bb4904
1 /**
2 * Orthanc - A Lightweight, RESTful DICOM Store
3 * Copyright (C) 2012-2015 Sebastien Jodogne, Medical Physics
4 * Department, University Hospital of Liege, Belgium
5 *
6 * This program is free software: you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation, either version 3 of the
9 * License, or (at your option) any later version.
10 *
11 * In addition, as a special exception, the copyright holders of this
12 * program give permission to link the code of its release with the
13 * OpenSSL project's "OpenSSL" library (or with modified versions of it
14 * that use the same license as the "OpenSSL" library), and distribute
15 * the linked executables. You must obey the GNU General Public License
16 * in all respects for all of the code used other than "OpenSSL". If you
17 * modify file(s) with this exception, you may extend this exception to
18 * your version of the file(s), but you are not obligated to do so. If
19 * you do not wish to do so, delete this exception statement from your
20 * version. If you delete this exception statement from all source files
21 * in the program, then also delete it here.
22 *
23 * This program is distributed in the hope that it will be useful, but
24 * WITHOUT ANY WARRANTY; without even the implied warranty of
25 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
26 * General Public License for more details.
27 *
28 * You should have received a copy of the GNU General Public License
29 * along with this program. If not, see <http://www.gnu.org/licenses/>.
30 **/
31
32
33 #include "PrecompiledHeadersUnitTests.h"
34 #include "gtest/gtest.h"
35
36 #include "../Core/Uuid.h"
37 #include "../Core/OrthancException.h"
38 #include "../Core/DicomFormat/DicomMap.h"
39 #include "../Core/DicomFormat/DicomNullValue.h"
40 #include "../OrthancServer/FromDcmtkBridge.h"
41
42 #include <memory>
43
44 using namespace Orthanc;
45
46 TEST(DicomMap, MainTags)
47 {
48 ASSERT_TRUE(DicomMap::IsMainDicomTag(DICOM_TAG_PATIENT_ID));
49 ASSERT_TRUE(DicomMap::IsMainDicomTag(DICOM_TAG_PATIENT_ID, ResourceType_Patient));
50 ASSERT_FALSE(DicomMap::IsMainDicomTag(DICOM_TAG_PATIENT_ID, ResourceType_Study));
51
52 ASSERT_TRUE(DicomMap::IsMainDicomTag(DICOM_TAG_STUDY_INSTANCE_UID));
53 ASSERT_TRUE(DicomMap::IsMainDicomTag(DICOM_TAG_ACCESSION_NUMBER));
54 ASSERT_TRUE(DicomMap::IsMainDicomTag(DICOM_TAG_SERIES_INSTANCE_UID));
55 ASSERT_TRUE(DicomMap::IsMainDicomTag(DICOM_TAG_SOP_INSTANCE_UID));
56
57 std::set<DicomTag> s;
58 DicomMap::GetMainDicomTags(s);
59 ASSERT_TRUE(s.end() != s.find(DICOM_TAG_PATIENT_ID));
60 ASSERT_TRUE(s.end() != s.find(DICOM_TAG_STUDY_INSTANCE_UID));
61 ASSERT_TRUE(s.end() != s.find(DICOM_TAG_ACCESSION_NUMBER));
62 ASSERT_TRUE(s.end() != s.find(DICOM_TAG_SERIES_INSTANCE_UID));
63 ASSERT_TRUE(s.end() != s.find(DICOM_TAG_SOP_INSTANCE_UID));
64
65 DicomMap::GetMainDicomTags(s, ResourceType_Patient);
66 ASSERT_TRUE(s.end() != s.find(DICOM_TAG_PATIENT_ID));
67 ASSERT_TRUE(s.end() == s.find(DICOM_TAG_STUDY_INSTANCE_UID));
68
69 DicomMap::GetMainDicomTags(s, ResourceType_Study);
70 ASSERT_TRUE(s.end() != s.find(DICOM_TAG_STUDY_INSTANCE_UID));
71 ASSERT_TRUE(s.end() != s.find(DICOM_TAG_ACCESSION_NUMBER));
72 ASSERT_TRUE(s.end() == s.find(DICOM_TAG_PATIENT_ID));
73
74 DicomMap::GetMainDicomTags(s, ResourceType_Series);
75 ASSERT_TRUE(s.end() != s.find(DICOM_TAG_SERIES_INSTANCE_UID));
76 ASSERT_TRUE(s.end() == s.find(DICOM_TAG_PATIENT_ID));
77
78 DicomMap::GetMainDicomTags(s, ResourceType_Instance);
79 ASSERT_TRUE(s.end() != s.find(DICOM_TAG_SOP_INSTANCE_UID));
80 ASSERT_TRUE(s.end() == s.find(DICOM_TAG_PATIENT_ID));
81 }
82
83
84 TEST(DicomMap, Tags)
85 {
86 std::set<DicomTag> s;
87
88 DicomMap m;
89 m.GetTags(s);
90 ASSERT_EQ(0, s.size());
91
92 ASSERT_FALSE(m.HasTag(DICOM_TAG_PATIENT_NAME));
93 ASSERT_FALSE(m.HasTag(0x0010, 0x0010));
94 m.SetValue(0x0010, 0x0010, "PatientName");
95 ASSERT_TRUE(m.HasTag(DICOM_TAG_PATIENT_NAME));
96 ASSERT_TRUE(m.HasTag(0x0010, 0x0010));
97
98 m.GetTags(s);
99 ASSERT_EQ(1, s.size());
100 ASSERT_EQ(DICOM_TAG_PATIENT_NAME, *s.begin());
101
102 ASSERT_FALSE(m.HasTag(DICOM_TAG_PATIENT_ID));
103 m.SetValue(DICOM_TAG_PATIENT_ID, "PatientID");
104 ASSERT_TRUE(m.HasTag(0x0010, 0x0020));
105 m.SetValue(DICOM_TAG_PATIENT_ID, "PatientID2");
106 ASSERT_EQ("PatientID2", m.GetValue(0x0010, 0x0020).AsString());
107
108 m.GetTags(s);
109 ASSERT_EQ(2, s.size());
110
111 m.Remove(DICOM_TAG_PATIENT_ID);
112 ASSERT_THROW(m.GetValue(0x0010, 0x0020), OrthancException);
113
114 m.GetTags(s);
115 ASSERT_EQ(1, s.size());
116 ASSERT_EQ(DICOM_TAG_PATIENT_NAME, *s.begin());
117
118 std::auto_ptr<DicomMap> mm(m.Clone());
119 ASSERT_EQ("PatientName", mm->GetValue(DICOM_TAG_PATIENT_NAME).AsString());
120
121 m.SetValue(DICOM_TAG_PATIENT_ID, "Hello");
122 ASSERT_THROW(mm->GetValue(DICOM_TAG_PATIENT_ID), OrthancException);
123 mm->CopyTagIfExists(m, DICOM_TAG_PATIENT_ID);
124 ASSERT_EQ("Hello", mm->GetValue(DICOM_TAG_PATIENT_ID).AsString());
125
126 DicomNullValue v;
127 ASSERT_TRUE(v.IsNull());
128 }
129
130
131 TEST(DicomMap, FindTemplates)
132 {
133 DicomMap m;
134
135 DicomMap::SetupFindPatientTemplate(m);
136 ASSERT_TRUE(m.HasTag(DICOM_TAG_PATIENT_ID));
137
138 DicomMap::SetupFindStudyTemplate(m);
139 ASSERT_TRUE(m.HasTag(DICOM_TAG_STUDY_INSTANCE_UID));
140 ASSERT_TRUE(m.HasTag(DICOM_TAG_ACCESSION_NUMBER));
141
142 DicomMap::SetupFindSeriesTemplate(m);
143 ASSERT_TRUE(m.HasTag(DICOM_TAG_SERIES_INSTANCE_UID));
144
145 DicomMap::SetupFindInstanceTemplate(m);
146 ASSERT_TRUE(m.HasTag(DICOM_TAG_SOP_INSTANCE_UID));
147 }
148
149
150
151
152 static void TestModule(ResourceType level,
153 DicomModule module)
154 {
155 std::set<DicomTag> moduleTags, main;
156 DicomTag::GetTagsForModule(moduleTags, module);
157 DicomMap::GetMainDicomTags(main, level);
158
159 // The main dicom tags are a subset of the module
160 for (std::set<DicomTag>::const_iterator it = main.begin(); it != main.end(); ++it)
161 {
162 bool ok = moduleTags.find(*it) != moduleTags.end();
163
164 // Exceptions for the Series level
165 /*if ((//
166 *it == DicomTag(0x, 0x) &&
167 level == ResourceType_Series))
168 {
169 ok = true;
170 }*/
171
172 // Exceptions for the Instance level
173 if ((/* Accession number, from Image module */
174 *it == DicomTag(0x0020, 0x0012) &&
175 level == ResourceType_Instance) ||
176 (/* Image Index, from PET Image module */
177 *it == DicomTag(0x0054, 0x1330) &&
178 level == ResourceType_Instance) ||
179 (/* Temporal Position Identifier, from MR Image module */
180 *it == DicomTag(0x0020, 0x0100) &&
181 level == ResourceType_Instance) ||
182 (/* Number of Frames, from Multi-frame module attributes, related to Image IOD */
183 *it == DicomTag(0x0028, 0x0008) &&
184 level == ResourceType_Instance ))
185 {
186 ok = true;
187 }
188
189 if (!ok)
190 {
191 std::cout << it->Format() << ": " << FromDcmtkBridge::GetName(*it)
192 << " not expected at level " << EnumerationToString(level) << std::endl;
193 }
194
195 EXPECT_TRUE(ok);
196 }
197 }
198
199
200 TEST(DicomMap, Modules)
201 {
202 TestModule(ResourceType_Patient, DicomModule_Patient);
203 TestModule(ResourceType_Study, DicomModule_Study);
204 //TestModule(ResourceType_Series, DicomModule_Series); // TODO
205 TestModule(ResourceType_Instance, DicomModule_Instance);
206 }