Mercurial > hg > orthanc
annotate OrthancFramework/UnitTestsSources/FrameworkTests.cpp @ 4567:b812a5f2cef3 db-changes
cont
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Mon, 08 Mar 2021 14:41:29 +0100 |
parents | 8a7523da6a9b |
children | 9086aeb9d9d2 |
rev | line source |
---|---|
3987 | 1 /** |
2 * Orthanc - A Lightweight, RESTful DICOM Store | |
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics | |
4 * Department, University Hospital of Liege, Belgium | |
4437
d9473bd5ed43
upgrade to year 2021
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4399
diff
changeset
|
5 * Copyright (C) 2017-2021 Osimis S.A., Belgium |
3987 | 6 * |
7 * This program is free software: you can redistribute it and/or | |
4119
bf7b9edf6b81
re-licensing the OrthancFramework to LGPL, in order to license Stone of Orthanc under LGPL
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4063
diff
changeset
|
8 * modify it under the terms of the GNU Lesser General Public License |
bf7b9edf6b81
re-licensing the OrthancFramework to LGPL, in order to license Stone of Orthanc under LGPL
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4063
diff
changeset
|
9 * as published by the Free Software Foundation, either version 3 of |
bf7b9edf6b81
re-licensing the OrthancFramework to LGPL, in order to license Stone of Orthanc under LGPL
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4063
diff
changeset
|
10 * the License, or (at your option) any later version. |
3987 | 11 * |
12 * This program is distributed in the hope that it will be useful, but | |
13 * WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
4119
bf7b9edf6b81
re-licensing the OrthancFramework to LGPL, in order to license Stone of Orthanc under LGPL
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4063
diff
changeset
|
15 * Lesser General Public License for more details. |
3987 | 16 * |
4119
bf7b9edf6b81
re-licensing the OrthancFramework to LGPL, in order to license Stone of Orthanc under LGPL
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4063
diff
changeset
|
17 * You should have received a copy of the GNU Lesser General Public |
bf7b9edf6b81
re-licensing the OrthancFramework to LGPL, in order to license Stone of Orthanc under LGPL
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4063
diff
changeset
|
18 * License along with this program. If not, see |
bf7b9edf6b81
re-licensing the OrthancFramework to LGPL, in order to license Stone of Orthanc under LGPL
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4063
diff
changeset
|
19 * <http://www.gnu.org/licenses/>. |
3987 | 20 **/ |
21 | |
22 | |
3992
f9863630ec7f
working on the shared library for Orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3987
diff
changeset
|
23 #if ORTHANC_UNIT_TESTS_LINK_FRAMEWORK == 1 |
4063
e00f3d089991
shared library of orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4062
diff
changeset
|
24 // Must be the first to be sure to use the Orthanc framework shared library |
4014
27628b0f6ada
merging logging code for plugins and files
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3992
diff
changeset
|
25 # include <OrthancFramework.h> |
3992
f9863630ec7f
working on the shared library for Orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3987
diff
changeset
|
26 #endif |
f9863630ec7f
working on the shared library for Orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3987
diff
changeset
|
27 |
4063
e00f3d089991
shared library of orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4062
diff
changeset
|
28 #if !defined(ORTHANC_ENABLE_PUGIXML) |
e00f3d089991
shared library of orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4062
diff
changeset
|
29 # error ORTHANC_ENABLE_PUGIXML is not defined |
e00f3d089991
shared library of orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4062
diff
changeset
|
30 #endif |
e00f3d089991
shared library of orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4062
diff
changeset
|
31 |
4045 | 32 #include "../Sources/EnumerationDictionary.h" |
3987 | 33 |
4062 | 34 #include <gtest/gtest.h> |
3987 | 35 |
4045 | 36 #include "../Sources/DicomFormat/DicomTag.h" |
4330
a01b1c9cbef4
moving generic type definitions from IHttpHandler to HttpToolbox
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4327
diff
changeset
|
37 #include "../Sources/HttpServer/HttpToolbox.h" |
4045 | 38 #include "../Sources/Logging.h" |
39 #include "../Sources/OrthancException.h" | |
40 #include "../Sources/Toolbox.h" | |
3987 | 41 |
4325
b96aedfa8cc1
unit tests now running in WebAssembly
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4234
diff
changeset
|
42 #if ORTHANC_SANDBOXED != 1 |
b96aedfa8cc1
unit tests now running in WebAssembly
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4234
diff
changeset
|
43 # include "../Sources/FileBuffer.h" |
b96aedfa8cc1
unit tests now running in WebAssembly
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4234
diff
changeset
|
44 # include "../Sources/MetricsRegistry.h" |
b96aedfa8cc1
unit tests now running in WebAssembly
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4234
diff
changeset
|
45 # include "../Sources/SystemToolbox.h" |
b96aedfa8cc1
unit tests now running in WebAssembly
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4234
diff
changeset
|
46 # include "../Sources/TemporaryFile.h" |
b96aedfa8cc1
unit tests now running in WebAssembly
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4234
diff
changeset
|
47 #endif |
b96aedfa8cc1
unit tests now running in WebAssembly
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4234
diff
changeset
|
48 |
4062 | 49 #include <ctype.h> |
50 | |
3987 | 51 |
52 using namespace Orthanc; | |
53 | |
54 | |
55 TEST(Uuid, Generation) | |
56 { | |
57 for (int i = 0; i < 10; i++) | |
58 { | |
59 std::string s = Toolbox::GenerateUuid(); | |
60 ASSERT_TRUE(Toolbox::IsUuid(s)); | |
61 } | |
62 } | |
63 | |
64 TEST(Uuid, Test) | |
65 { | |
66 ASSERT_FALSE(Toolbox::IsUuid("")); | |
67 ASSERT_FALSE(Toolbox::IsUuid("012345678901234567890123456789012345")); | |
68 ASSERT_TRUE(Toolbox::IsUuid("550e8400-e29b-41d4-a716-446655440000")); | |
69 ASSERT_FALSE(Toolbox::IsUuid("550e8400-e29b-41d4-a716-44665544000_")); | |
70 ASSERT_FALSE(Toolbox::IsUuid("01234567890123456789012345678901234_")); | |
71 ASSERT_FALSE(Toolbox::StartsWithUuid("550e8400-e29b-41d4-a716-44665544000")); | |
72 ASSERT_TRUE(Toolbox::StartsWithUuid("550e8400-e29b-41d4-a716-446655440000")); | |
73 ASSERT_TRUE(Toolbox::StartsWithUuid("550e8400-e29b-41d4-a716-446655440000 ok")); | |
74 ASSERT_FALSE(Toolbox::StartsWithUuid("550e8400-e29b-41d4-a716-446655440000ok")); | |
75 } | |
76 | |
77 TEST(Toolbox, IsSHA1) | |
78 { | |
79 ASSERT_FALSE(Toolbox::IsSHA1("")); | |
80 ASSERT_FALSE(Toolbox::IsSHA1("01234567890123456789012345678901234567890123")); | |
81 ASSERT_FALSE(Toolbox::IsSHA1("012345678901234567890123456789012345678901234")); | |
82 ASSERT_TRUE(Toolbox::IsSHA1("b5ed549f-956400ce-69a8c063-bf5b78be-2732a4b9")); | |
83 | |
84 std::string sha = " b5ed549f-956400ce-69a8c063-bf5b78be-2732a4b9 "; | |
85 ASSERT_TRUE(Toolbox::IsSHA1(sha)); | |
86 sha[3] = '\0'; | |
87 sha[53] = '\0'; | |
88 ASSERT_TRUE(Toolbox::IsSHA1(sha)); | |
89 sha[40] = '\0'; | |
90 ASSERT_FALSE(Toolbox::IsSHA1(sha)); | |
91 ASSERT_FALSE(Toolbox::IsSHA1(" ")); | |
92 | |
93 ASSERT_TRUE(Toolbox::IsSHA1("16738bc3-e47ed42a-43ce044c-a3414a45-cb069bd0")); | |
94 | |
95 std::string s; | |
96 Toolbox::ComputeSHA1(s, "The quick brown fox jumps over the lazy dog"); | |
97 ASSERT_TRUE(Toolbox::IsSHA1(s)); | |
98 ASSERT_EQ("2fd4e1c6-7a2d28fc-ed849ee1-bb76e739-1b93eb12", s); | |
99 | |
100 ASSERT_FALSE(Toolbox::IsSHA1("b5ed549f-956400ce-69a8c063-bf5b78be-2732a4b_")); | |
101 } | |
102 | |
103 | |
104 TEST(ParseGetArguments, Basic) | |
105 { | |
4330
a01b1c9cbef4
moving generic type definitions from IHttpHandler to HttpToolbox
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4327
diff
changeset
|
106 HttpToolbox::GetArguments b; |
3987 | 107 HttpToolbox::ParseGetArguments(b, "aaa=baaa&bb=a&aa=c"); |
108 | |
4330
a01b1c9cbef4
moving generic type definitions from IHttpHandler to HttpToolbox
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4327
diff
changeset
|
109 HttpToolbox::Arguments a; |
3987 | 110 HttpToolbox::CompileGetArguments(a, b); |
111 | |
112 ASSERT_EQ(3u, a.size()); | |
113 ASSERT_EQ(a["aaa"], "baaa"); | |
114 ASSERT_EQ(a["bb"], "a"); | |
115 ASSERT_EQ(a["aa"], "c"); | |
116 } | |
117 | |
4330
a01b1c9cbef4
moving generic type definitions from IHttpHandler to HttpToolbox
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4327
diff
changeset
|
118 |
3987 | 119 TEST(ParseGetArguments, BasicEmpty) |
120 { | |
4330
a01b1c9cbef4
moving generic type definitions from IHttpHandler to HttpToolbox
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4327
diff
changeset
|
121 HttpToolbox::GetArguments b; |
3987 | 122 HttpToolbox::ParseGetArguments(b, "aaa&bb=aa&aa"); |
123 | |
4330
a01b1c9cbef4
moving generic type definitions from IHttpHandler to HttpToolbox
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4327
diff
changeset
|
124 HttpToolbox::Arguments a; |
3987 | 125 HttpToolbox::CompileGetArguments(a, b); |
126 | |
127 ASSERT_EQ(3u, a.size()); | |
128 ASSERT_EQ(a["aaa"], ""); | |
129 ASSERT_EQ(a["bb"], "aa"); | |
130 ASSERT_EQ(a["aa"], ""); | |
131 } | |
132 | |
4330
a01b1c9cbef4
moving generic type definitions from IHttpHandler to HttpToolbox
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4327
diff
changeset
|
133 |
3987 | 134 TEST(ParseGetArguments, Single) |
135 { | |
4330
a01b1c9cbef4
moving generic type definitions from IHttpHandler to HttpToolbox
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4327
diff
changeset
|
136 HttpToolbox::GetArguments b; |
3987 | 137 HttpToolbox::ParseGetArguments(b, "aaa=baaa"); |
138 | |
4330
a01b1c9cbef4
moving generic type definitions from IHttpHandler to HttpToolbox
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4327
diff
changeset
|
139 HttpToolbox::Arguments a; |
3987 | 140 HttpToolbox::CompileGetArguments(a, b); |
141 | |
142 ASSERT_EQ(1u, a.size()); | |
143 ASSERT_EQ(a["aaa"], "baaa"); | |
144 } | |
145 | |
4330
a01b1c9cbef4
moving generic type definitions from IHttpHandler to HttpToolbox
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4327
diff
changeset
|
146 |
3987 | 147 TEST(ParseGetArguments, SingleEmpty) |
148 { | |
4330
a01b1c9cbef4
moving generic type definitions from IHttpHandler to HttpToolbox
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4327
diff
changeset
|
149 HttpToolbox::GetArguments b; |
3987 | 150 HttpToolbox::ParseGetArguments(b, "aaa"); |
151 | |
4330
a01b1c9cbef4
moving generic type definitions from IHttpHandler to HttpToolbox
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4327
diff
changeset
|
152 HttpToolbox::Arguments a; |
3987 | 153 HttpToolbox::CompileGetArguments(a, b); |
154 | |
155 ASSERT_EQ(1u, a.size()); | |
156 ASSERT_EQ(a["aaa"], ""); | |
157 } | |
158 | |
4330
a01b1c9cbef4
moving generic type definitions from IHttpHandler to HttpToolbox
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4327
diff
changeset
|
159 |
3987 | 160 TEST(ParseGetQuery, Test1) |
161 { | |
162 UriComponents uri; | |
4330
a01b1c9cbef4
moving generic type definitions from IHttpHandler to HttpToolbox
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4327
diff
changeset
|
163 HttpToolbox::GetArguments b; |
3987 | 164 HttpToolbox::ParseGetQuery(uri, b, "/instances/test/world?aaa=baaa&bb=a&aa=c"); |
165 | |
4330
a01b1c9cbef4
moving generic type definitions from IHttpHandler to HttpToolbox
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4327
diff
changeset
|
166 HttpToolbox::Arguments a; |
3987 | 167 HttpToolbox::CompileGetArguments(a, b); |
168 | |
169 ASSERT_EQ(3u, uri.size()); | |
170 ASSERT_EQ("instances", uri[0]); | |
171 ASSERT_EQ("test", uri[1]); | |
172 ASSERT_EQ("world", uri[2]); | |
173 ASSERT_EQ(3u, a.size()); | |
174 ASSERT_EQ(a["aaa"], "baaa"); | |
175 ASSERT_EQ(a["bb"], "a"); | |
176 ASSERT_EQ(a["aa"], "c"); | |
177 } | |
178 | |
4330
a01b1c9cbef4
moving generic type definitions from IHttpHandler to HttpToolbox
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4327
diff
changeset
|
179 |
3987 | 180 TEST(ParseGetQuery, Test2) |
181 { | |
182 UriComponents uri; | |
4330
a01b1c9cbef4
moving generic type definitions from IHttpHandler to HttpToolbox
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4327
diff
changeset
|
183 HttpToolbox::GetArguments b; |
3987 | 184 HttpToolbox::ParseGetQuery(uri, b, "/instances/test/world"); |
185 | |
4330
a01b1c9cbef4
moving generic type definitions from IHttpHandler to HttpToolbox
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4327
diff
changeset
|
186 HttpToolbox::Arguments a; |
3987 | 187 HttpToolbox::CompileGetArguments(a, b); |
188 | |
189 ASSERT_EQ(3u, uri.size()); | |
190 ASSERT_EQ("instances", uri[0]); | |
191 ASSERT_EQ("test", uri[1]); | |
192 ASSERT_EQ("world", uri[2]); | |
193 ASSERT_EQ(0u, a.size()); | |
194 } | |
4330
a01b1c9cbef4
moving generic type definitions from IHttpHandler to HttpToolbox
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4327
diff
changeset
|
195 |
3987 | 196 |
197 TEST(Uri, SplitUriComponents) | |
198 { | |
199 UriComponents c, d; | |
200 Toolbox::SplitUriComponents(c, "/cou/hello/world"); | |
201 ASSERT_EQ(3u, c.size()); | |
202 ASSERT_EQ("cou", c[0]); | |
203 ASSERT_EQ("hello", c[1]); | |
204 ASSERT_EQ("world", c[2]); | |
205 | |
206 Toolbox::SplitUriComponents(c, "/cou/hello/world/"); | |
207 ASSERT_EQ(3u, c.size()); | |
208 ASSERT_EQ("cou", c[0]); | |
209 ASSERT_EQ("hello", c[1]); | |
210 ASSERT_EQ("world", c[2]); | |
211 | |
212 Toolbox::SplitUriComponents(c, "/cou/hello/world/a"); | |
213 ASSERT_EQ(4u, c.size()); | |
214 ASSERT_EQ("cou", c[0]); | |
215 ASSERT_EQ("hello", c[1]); | |
216 ASSERT_EQ("world", c[2]); | |
217 ASSERT_EQ("a", c[3]); | |
218 | |
219 Toolbox::SplitUriComponents(c, "/"); | |
220 ASSERT_EQ(0u, c.size()); | |
221 | |
222 Toolbox::SplitUriComponents(c, "/hello"); | |
223 ASSERT_EQ(1u, c.size()); | |
224 ASSERT_EQ("hello", c[0]); | |
225 | |
226 Toolbox::SplitUriComponents(c, "/hello/"); | |
227 ASSERT_EQ(1u, c.size()); | |
228 ASSERT_EQ("hello", c[0]); | |
229 | |
230 ASSERT_THROW(Toolbox::SplitUriComponents(c, ""), OrthancException); | |
231 ASSERT_THROW(Toolbox::SplitUriComponents(c, "a"), OrthancException); | |
232 ASSERT_THROW(Toolbox::SplitUriComponents(c, "/coucou//coucou"), OrthancException); | |
233 | |
234 c.clear(); | |
235 c.push_back("test"); | |
236 ASSERT_EQ("/", Toolbox::FlattenUri(c, 10)); | |
237 } | |
238 | |
239 | |
240 TEST(Uri, Truncate) | |
241 { | |
242 UriComponents c, d; | |
243 Toolbox::SplitUriComponents(c, "/cou/hello/world"); | |
244 | |
245 Toolbox::TruncateUri(d, c, 0); | |
246 ASSERT_EQ(3u, d.size()); | |
247 ASSERT_EQ("cou", d[0]); | |
248 ASSERT_EQ("hello", d[1]); | |
249 ASSERT_EQ("world", d[2]); | |
250 | |
251 Toolbox::TruncateUri(d, c, 1); | |
252 ASSERT_EQ(2u, d.size()); | |
253 ASSERT_EQ("hello", d[0]); | |
254 ASSERT_EQ("world", d[1]); | |
255 | |
256 Toolbox::TruncateUri(d, c, 2); | |
257 ASSERT_EQ(1u, d.size()); | |
258 ASSERT_EQ("world", d[0]); | |
259 | |
260 Toolbox::TruncateUri(d, c, 3); | |
261 ASSERT_EQ(0u, d.size()); | |
262 | |
263 Toolbox::TruncateUri(d, c, 4); | |
264 ASSERT_EQ(0u, d.size()); | |
265 | |
266 Toolbox::TruncateUri(d, c, 5); | |
267 ASSERT_EQ(0u, d.size()); | |
268 } | |
269 | |
270 | |
271 TEST(Uri, Child) | |
272 { | |
273 UriComponents c1; Toolbox::SplitUriComponents(c1, "/hello/world"); | |
274 UriComponents c2; Toolbox::SplitUriComponents(c2, "/hello/hello"); | |
275 UriComponents c3; Toolbox::SplitUriComponents(c3, "/hello"); | |
276 UriComponents c4; Toolbox::SplitUriComponents(c4, "/world"); | |
277 UriComponents c5; Toolbox::SplitUriComponents(c5, "/"); | |
278 | |
279 ASSERT_TRUE(Toolbox::IsChildUri(c1, c1)); | |
280 ASSERT_FALSE(Toolbox::IsChildUri(c1, c2)); | |
281 ASSERT_FALSE(Toolbox::IsChildUri(c1, c3)); | |
282 ASSERT_FALSE(Toolbox::IsChildUri(c1, c4)); | |
283 ASSERT_FALSE(Toolbox::IsChildUri(c1, c5)); | |
284 | |
285 ASSERT_FALSE(Toolbox::IsChildUri(c2, c1)); | |
286 ASSERT_TRUE(Toolbox::IsChildUri(c2, c2)); | |
287 ASSERT_FALSE(Toolbox::IsChildUri(c2, c3)); | |
288 ASSERT_FALSE(Toolbox::IsChildUri(c2, c4)); | |
289 ASSERT_FALSE(Toolbox::IsChildUri(c2, c5)); | |
290 | |
291 ASSERT_TRUE(Toolbox::IsChildUri(c3, c1)); | |
292 ASSERT_TRUE(Toolbox::IsChildUri(c3, c2)); | |
293 ASSERT_TRUE(Toolbox::IsChildUri(c3, c3)); | |
294 ASSERT_FALSE(Toolbox::IsChildUri(c3, c4)); | |
295 ASSERT_FALSE(Toolbox::IsChildUri(c3, c5)); | |
296 | |
297 ASSERT_FALSE(Toolbox::IsChildUri(c4, c1)); | |
298 ASSERT_FALSE(Toolbox::IsChildUri(c4, c2)); | |
299 ASSERT_FALSE(Toolbox::IsChildUri(c4, c3)); | |
300 ASSERT_TRUE(Toolbox::IsChildUri(c4, c4)); | |
301 ASSERT_FALSE(Toolbox::IsChildUri(c4, c5)); | |
302 | |
303 ASSERT_TRUE(Toolbox::IsChildUri(c5, c1)); | |
304 ASSERT_TRUE(Toolbox::IsChildUri(c5, c2)); | |
305 ASSERT_TRUE(Toolbox::IsChildUri(c5, c3)); | |
306 ASSERT_TRUE(Toolbox::IsChildUri(c5, c4)); | |
307 ASSERT_TRUE(Toolbox::IsChildUri(c5, c5)); | |
308 } | |
309 | |
4325
b96aedfa8cc1
unit tests now running in WebAssembly
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4234
diff
changeset
|
310 |
b96aedfa8cc1
unit tests now running in WebAssembly
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4234
diff
changeset
|
311 #if ORTHANC_SANDBOXED != 1 |
3987 | 312 TEST(Uri, AutodetectMimeType) |
313 { | |
314 ASSERT_EQ(MimeType_Binary, SystemToolbox::AutodetectMimeType("../NOTES")); | |
315 ASSERT_EQ(MimeType_Binary, SystemToolbox::AutodetectMimeType("")); | |
316 ASSERT_EQ(MimeType_Binary, SystemToolbox::AutodetectMimeType("/")); | |
317 ASSERT_EQ(MimeType_Binary, SystemToolbox::AutodetectMimeType("a/a")); | |
318 ASSERT_EQ(MimeType_Binary, SystemToolbox::AutodetectMimeType("..\\a\\")); | |
319 ASSERT_EQ(MimeType_Binary, SystemToolbox::AutodetectMimeType("..\\a\\a")); | |
320 | |
321 ASSERT_EQ(MimeType_PlainText, SystemToolbox::AutodetectMimeType("../NOTES.txt")); | |
322 ASSERT_EQ(MimeType_PlainText, SystemToolbox::AutodetectMimeType("../coucou.xml/NOTES.txt")); | |
323 ASSERT_EQ(MimeType_Xml, SystemToolbox::AutodetectMimeType("..\\coucou.\\NOTES.xml")); | |
324 ASSERT_EQ(MimeType_Xml, SystemToolbox::AutodetectMimeType("../.xml")); | |
325 ASSERT_EQ(MimeType_Xml, SystemToolbox::AutodetectMimeType("../.XmL")); | |
326 | |
327 ASSERT_EQ(MimeType_JavaScript, SystemToolbox::AutodetectMimeType("NOTES.js")); | |
328 ASSERT_EQ(MimeType_Json, SystemToolbox::AutodetectMimeType("NOTES.json")); | |
329 ASSERT_EQ(MimeType_Pdf, SystemToolbox::AutodetectMimeType("NOTES.pdf")); | |
330 ASSERT_EQ(MimeType_Css, SystemToolbox::AutodetectMimeType("NOTES.css")); | |
331 ASSERT_EQ(MimeType_Html, SystemToolbox::AutodetectMimeType("NOTES.html")); | |
332 ASSERT_EQ(MimeType_PlainText, SystemToolbox::AutodetectMimeType("NOTES.txt")); | |
333 ASSERT_EQ(MimeType_Xml, SystemToolbox::AutodetectMimeType("NOTES.xml")); | |
334 ASSERT_EQ(MimeType_Gif, SystemToolbox::AutodetectMimeType("NOTES.gif")); | |
335 ASSERT_EQ(MimeType_Jpeg, SystemToolbox::AutodetectMimeType("NOTES.jpg")); | |
336 ASSERT_EQ(MimeType_Jpeg, SystemToolbox::AutodetectMimeType("NOTES.jpeg")); | |
337 ASSERT_EQ(MimeType_Png, SystemToolbox::AutodetectMimeType("NOTES.png")); | |
338 ASSERT_EQ(MimeType_NaCl, SystemToolbox::AutodetectMimeType("NOTES.nexe")); | |
339 ASSERT_EQ(MimeType_Json, SystemToolbox::AutodetectMimeType("NOTES.nmf")); | |
340 ASSERT_EQ(MimeType_PNaCl, SystemToolbox::AutodetectMimeType("NOTES.pexe")); | |
341 ASSERT_EQ(MimeType_Svg, SystemToolbox::AutodetectMimeType("NOTES.svg")); | |
342 ASSERT_EQ(MimeType_Woff, SystemToolbox::AutodetectMimeType("NOTES.woff")); | |
343 ASSERT_EQ(MimeType_Woff2, SystemToolbox::AutodetectMimeType("NOTES.woff2")); | |
344 | |
345 // Test primitives from the "RegisterDefaultExtensions()" that was | |
346 // present in the sample "Serve Folders plugin" of Orthanc 1.4.2 | |
347 ASSERT_STREQ("application/javascript", EnumerationToString(SystemToolbox::AutodetectMimeType(".js"))); | |
348 ASSERT_STREQ("application/json", EnumerationToString(SystemToolbox::AutodetectMimeType(".json"))); | |
349 ASSERT_STREQ("application/json", EnumerationToString(SystemToolbox::AutodetectMimeType(".nmf"))); | |
350 ASSERT_STREQ("application/octet-stream", EnumerationToString(SystemToolbox::AutodetectMimeType(""))); | |
351 ASSERT_STREQ("application/wasm", EnumerationToString(SystemToolbox::AutodetectMimeType(".wasm"))); | |
352 ASSERT_STREQ("application/x-font-woff", EnumerationToString(SystemToolbox::AutodetectMimeType(".woff"))); | |
353 ASSERT_STREQ("application/x-nacl", EnumerationToString(SystemToolbox::AutodetectMimeType(".nexe"))); | |
354 ASSERT_STREQ("application/x-pnacl", EnumerationToString(SystemToolbox::AutodetectMimeType(".pexe"))); | |
355 ASSERT_STREQ("application/xml", EnumerationToString(SystemToolbox::AutodetectMimeType(".xml"))); | |
356 ASSERT_STREQ("font/woff2", EnumerationToString(SystemToolbox::AutodetectMimeType(".woff2"))); | |
357 ASSERT_STREQ("image/gif", EnumerationToString(SystemToolbox::AutodetectMimeType(".gif"))); | |
358 ASSERT_STREQ("image/jpeg", EnumerationToString(SystemToolbox::AutodetectMimeType(".jpeg"))); | |
359 ASSERT_STREQ("image/jpeg", EnumerationToString(SystemToolbox::AutodetectMimeType(".jpg"))); | |
360 ASSERT_STREQ("image/png", EnumerationToString(SystemToolbox::AutodetectMimeType(".png"))); | |
361 ASSERT_STREQ("image/svg+xml", EnumerationToString(SystemToolbox::AutodetectMimeType(".svg"))); | |
362 ASSERT_STREQ("text/css", EnumerationToString(SystemToolbox::AutodetectMimeType(".css"))); | |
363 ASSERT_STREQ("text/html", EnumerationToString(SystemToolbox::AutodetectMimeType(".html"))); | |
364 } | |
4325
b96aedfa8cc1
unit tests now running in WebAssembly
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4234
diff
changeset
|
365 #endif |
b96aedfa8cc1
unit tests now running in WebAssembly
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4234
diff
changeset
|
366 |
3987 | 367 |
368 TEST(Toolbox, ComputeMD5) | |
369 { | |
370 std::string s; | |
371 | |
372 // # echo -n "Hello" | md5sum | |
373 | |
374 Toolbox::ComputeMD5(s, "Hello"); | |
375 ASSERT_EQ("8b1a9953c4611296a827abf8c47804d7", s); | |
376 Toolbox::ComputeMD5(s, ""); | |
377 ASSERT_EQ("d41d8cd98f00b204e9800998ecf8427e", s); | |
378 } | |
379 | |
380 TEST(Toolbox, ComputeSHA1) | |
381 { | |
382 std::string s; | |
383 | |
384 Toolbox::ComputeSHA1(s, "The quick brown fox jumps over the lazy dog"); | |
385 ASSERT_EQ("2fd4e1c6-7a2d28fc-ed849ee1-bb76e739-1b93eb12", s); | |
386 Toolbox::ComputeSHA1(s, ""); | |
387 ASSERT_EQ("da39a3ee-5e6b4b0d-3255bfef-95601890-afd80709", s); | |
388 } | |
389 | |
4325
b96aedfa8cc1
unit tests now running in WebAssembly
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4234
diff
changeset
|
390 #if ORTHANC_SANDBOXED != 1 |
3987 | 391 TEST(Toolbox, PathToExecutable) |
392 { | |
393 printf("[%s]\n", SystemToolbox::GetPathToExecutable().c_str()); | |
394 printf("[%s]\n", SystemToolbox::GetDirectoryOfExecutable().c_str()); | |
395 } | |
4325
b96aedfa8cc1
unit tests now running in WebAssembly
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4234
diff
changeset
|
396 #endif |
3987 | 397 |
398 TEST(Toolbox, StripSpaces) | |
399 { | |
400 ASSERT_EQ("", Toolbox::StripSpaces(" \t \r \n ")); | |
401 ASSERT_EQ("coucou", Toolbox::StripSpaces(" coucou \t \r \n ")); | |
402 ASSERT_EQ("cou cou", Toolbox::StripSpaces(" cou cou \n ")); | |
403 ASSERT_EQ("c", Toolbox::StripSpaces(" \n\t c\r \n ")); | |
404 } | |
405 | |
406 TEST(Toolbox, Case) | |
407 { | |
408 std::string s = "CoU"; | |
409 std::string ss; | |
410 | |
411 Toolbox::ToUpperCase(ss, s); | |
412 ASSERT_EQ("COU", ss); | |
413 Toolbox::ToLowerCase(ss, s); | |
414 ASSERT_EQ("cou", ss); | |
415 | |
416 s = "CoU"; | |
417 Toolbox::ToUpperCase(s); | |
418 ASSERT_EQ("COU", s); | |
419 | |
420 s = "CoU"; | |
421 Toolbox::ToLowerCase(s); | |
422 ASSERT_EQ("cou", s); | |
423 } | |
424 | |
425 | |
426 TEST(Logger, Basic) | |
427 { | |
428 LOG(INFO) << "I say hello"; | |
429 } | |
430 | |
431 TEST(Toolbox, ConvertFromLatin1) | |
432 { | |
433 // This is a Latin-1 test string | |
434 const unsigned char data[10] = { 0xe0, 0xe9, 0xea, 0xe7, 0x26, 0xc6, 0x61, 0x62, 0x63, 0x00 }; | |
435 | |
436 std::string s((char*) &data[0], 10); | |
437 ASSERT_EQ("&abc", Toolbox::ConvertToAscii(s)); | |
438 | |
439 // Open in Emacs, then save with UTF-8 encoding, then "hexdump -C" | |
440 std::string utf8 = Toolbox::ConvertToUtf8(s, Encoding_Latin1, false); | |
441 ASSERT_EQ(15u, utf8.size()); | |
442 ASSERT_EQ(0xc3, static_cast<unsigned char>(utf8[0])); | |
443 ASSERT_EQ(0xa0, static_cast<unsigned char>(utf8[1])); | |
444 ASSERT_EQ(0xc3, static_cast<unsigned char>(utf8[2])); | |
445 ASSERT_EQ(0xa9, static_cast<unsigned char>(utf8[3])); | |
446 ASSERT_EQ(0xc3, static_cast<unsigned char>(utf8[4])); | |
447 ASSERT_EQ(0xaa, static_cast<unsigned char>(utf8[5])); | |
448 ASSERT_EQ(0xc3, static_cast<unsigned char>(utf8[6])); | |
449 ASSERT_EQ(0xa7, static_cast<unsigned char>(utf8[7])); | |
450 ASSERT_EQ(0x26, static_cast<unsigned char>(utf8[8])); | |
451 ASSERT_EQ(0xc3, static_cast<unsigned char>(utf8[9])); | |
452 ASSERT_EQ(0x86, static_cast<unsigned char>(utf8[10])); | |
453 ASSERT_EQ(0x61, static_cast<unsigned char>(utf8[11])); | |
454 ASSERT_EQ(0x62, static_cast<unsigned char>(utf8[12])); | |
455 ASSERT_EQ(0x63, static_cast<unsigned char>(utf8[13])); | |
456 ASSERT_EQ(0x00, static_cast<unsigned char>(utf8[14])); // Null-terminated string | |
457 } | |
458 | |
459 | |
460 TEST(Toolbox, FixUtf8) | |
461 { | |
462 // This is a Latin-1 test string: "crane" with a circumflex accent | |
463 const unsigned char latin1[] = { 0x63, 0x72, 0xe2, 0x6e, 0x65 }; | |
464 | |
465 std::string s((char*) &latin1[0], sizeof(latin1) / sizeof(char)); | |
466 | |
467 ASSERT_EQ(s, Toolbox::ConvertFromUtf8(Toolbox::ConvertToUtf8(s, Encoding_Latin1, false), Encoding_Latin1)); | |
468 ASSERT_EQ("cre", Toolbox::ConvertToUtf8(s, Encoding_Utf8, false)); | |
469 } | |
470 | |
471 | |
472 static int32_t GetUnicode(const uint8_t* data, | |
473 size_t size, | |
474 size_t expectedLength) | |
475 { | |
476 std::string s((char*) &data[0], size); | |
477 uint32_t unicode; | |
478 size_t length; | |
479 Toolbox::Utf8ToUnicodeCharacter(unicode, length, s, 0); | |
480 if (length != expectedLength) | |
481 { | |
482 return -1; // Error case | |
483 } | |
484 else | |
485 { | |
486 return unicode; | |
487 } | |
488 } | |
489 | |
490 | |
491 TEST(Toolbox, Utf8ToUnicode) | |
492 { | |
493 // https://en.wikipedia.org/wiki/UTF-8 | |
494 | |
495 ASSERT_EQ(1u, sizeof(char)); | |
496 ASSERT_EQ(1u, sizeof(uint8_t)); | |
497 | |
498 { | |
499 const uint8_t data[] = { 0x24 }; | |
500 ASSERT_EQ(0x24, GetUnicode(data, 1, 1)); | |
501 ASSERT_THROW(GetUnicode(data, 0, 1), OrthancException); | |
502 } | |
503 | |
504 { | |
505 const uint8_t data[] = { 0xc2, 0xa2 }; | |
506 ASSERT_EQ(0xa2, GetUnicode(data, 2, 2)); | |
507 ASSERT_THROW(GetUnicode(data, 1, 2), OrthancException); | |
508 } | |
509 | |
510 { | |
511 const uint8_t data[] = { 0xe0, 0xa4, 0xb9 }; | |
512 ASSERT_EQ(0x0939, GetUnicode(data, 3, 3)); | |
513 ASSERT_THROW(GetUnicode(data, 2, 3), OrthancException); | |
514 } | |
515 | |
516 { | |
517 const uint8_t data[] = { 0xe2, 0x82, 0xac }; | |
518 ASSERT_EQ(0x20ac, GetUnicode(data, 3, 3)); | |
519 ASSERT_THROW(GetUnicode(data, 2, 3), OrthancException); | |
520 } | |
521 | |
522 { | |
523 const uint8_t data[] = { 0xf0, 0x90, 0x8d, 0x88 }; | |
524 ASSERT_EQ(0x010348, GetUnicode(data, 4, 4)); | |
525 ASSERT_THROW(GetUnicode(data, 3, 4), OrthancException); | |
526 } | |
527 | |
528 { | |
529 const uint8_t data[] = { 0xe0 }; | |
530 ASSERT_THROW(GetUnicode(data, 1, 1), OrthancException); | |
531 } | |
532 } | |
533 | |
534 | |
535 TEST(Toolbox, UrlDecode) | |
536 { | |
537 std::string s; | |
538 | |
539 s = "Hello%20World"; | |
540 Toolbox::UrlDecode(s); | |
541 ASSERT_EQ("Hello World", s); | |
542 | |
543 s = "%21%23%24%26%27%28%29%2A%2B%2c%2f%3A%3b%3d%3f%40%5B%5D%90%ff"; | |
544 Toolbox::UrlDecode(s); | |
545 std::string ss = "!#$&'()*+,/:;=?@[]"; | |
546 ss.push_back((char) 144); | |
547 ss.push_back((char) 255); | |
548 ASSERT_EQ(ss, s); | |
549 | |
550 s = "(2000%2C00A4)+Other"; | |
551 Toolbox::UrlDecode(s); | |
552 ASSERT_EQ("(2000,00A4) Other", s); | |
553 } | |
554 | |
555 | |
556 TEST(Toolbox, IsAsciiString) | |
557 { | |
558 std::string s = "Hello 12 /"; | |
559 ASSERT_EQ(10u, s.size()); | |
560 ASSERT_TRUE(Toolbox::IsAsciiString(s)); | |
561 ASSERT_TRUE(Toolbox::IsAsciiString(s.c_str(), 10)); | |
562 ASSERT_FALSE(Toolbox::IsAsciiString(s.c_str(), 11)); // Taking the trailing hidden '\0' | |
563 | |
564 s[2] = '\0'; | |
565 ASSERT_EQ(10u, s.size()); | |
566 ASSERT_FALSE(Toolbox::IsAsciiString(s)); | |
567 | |
568 ASSERT_TRUE(Toolbox::IsAsciiString("Hello\nworld")); | |
569 ASSERT_FALSE(Toolbox::IsAsciiString("Hello\rworld")); | |
570 | |
571 ASSERT_EQ("Hello\nworld", Toolbox::ConvertToAscii("Hello\nworld")); | |
572 ASSERT_EQ("Helloworld", Toolbox::ConvertToAscii("Hello\r\tworld")); | |
573 } | |
574 | |
575 | |
576 #if defined(__linux__) | |
577 TEST(Toolbox, AbsoluteDirectory) | |
578 { | |
579 ASSERT_EQ("/tmp/hello", SystemToolbox::InterpretRelativePath("/tmp", "hello")); | |
580 ASSERT_EQ("/tmp", SystemToolbox::InterpretRelativePath("/tmp", "/tmp")); | |
581 } | |
582 #endif | |
583 | |
584 | |
4325
b96aedfa8cc1
unit tests now running in WebAssembly
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4234
diff
changeset
|
585 #if ORTHANC_SANDBOXED != 1 |
3987 | 586 TEST(Toolbox, WriteFile) |
587 { | |
588 std::string path; | |
589 | |
590 { | |
591 TemporaryFile tmp; | |
592 path = tmp.GetPath(); | |
593 | |
594 std::string s; | |
595 s.append("Hello"); | |
596 s.push_back('\0'); | |
597 s.append("World"); | |
598 ASSERT_EQ(11u, s.size()); | |
599 | |
600 SystemToolbox::WriteFile(s, path.c_str()); | |
601 | |
602 std::string t; | |
603 SystemToolbox::ReadFile(t, path.c_str()); | |
604 | |
605 ASSERT_EQ(11u, t.size()); | |
606 ASSERT_EQ(0, t[5]); | |
607 ASSERT_EQ(0, memcmp(s.c_str(), t.c_str(), s.size())); | |
608 | |
609 std::string h; | |
610 ASSERT_EQ(true, SystemToolbox::ReadHeader(h, path.c_str(), 1)); | |
611 ASSERT_EQ(1u, h.size()); | |
612 ASSERT_EQ('H', h[0]); | |
613 ASSERT_TRUE(SystemToolbox::ReadHeader(h, path.c_str(), 0)); | |
614 ASSERT_EQ(0u, h.size()); | |
615 ASSERT_FALSE(SystemToolbox::ReadHeader(h, path.c_str(), 32)); | |
616 ASSERT_EQ(11u, h.size()); | |
617 ASSERT_EQ(0, memcmp(s.c_str(), h.c_str(), s.size())); | |
618 } | |
619 | |
620 std::string u; | |
621 ASSERT_THROW(SystemToolbox::ReadFile(u, path.c_str()), OrthancException); | |
4186 | 622 |
623 { | |
624 TemporaryFile tmp; | |
625 std::string s = "Hello"; | |
626 SystemToolbox::WriteFile(s, tmp.GetPath(), true /* call fsync() */); | |
627 std::string t; | |
628 SystemToolbox::ReadFile(t, tmp.GetPath()); | |
629 ASSERT_EQ(s, t); | |
630 } | |
3987 | 631 } |
4325
b96aedfa8cc1
unit tests now running in WebAssembly
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4234
diff
changeset
|
632 #endif |
3987 | 633 |
634 | |
4325
b96aedfa8cc1
unit tests now running in WebAssembly
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4234
diff
changeset
|
635 #if ORTHANC_SANDBOXED != 1 |
3987 | 636 TEST(Toolbox, FileBuffer) |
637 { | |
638 FileBuffer f; | |
639 f.Append("a", 1); | |
640 f.Append("", 0); | |
641 f.Append("bc", 2); | |
642 | |
643 std::string s; | |
644 f.Read(s); | |
645 ASSERT_EQ("abc", s); | |
646 | |
647 ASSERT_THROW(f.Append("d", 1), OrthancException); // File is closed | |
648 } | |
4325
b96aedfa8cc1
unit tests now running in WebAssembly
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4234
diff
changeset
|
649 #endif |
3987 | 650 |
651 | |
652 TEST(Toolbox, Wildcard) | |
653 { | |
654 ASSERT_EQ("abcd", Toolbox::WildcardToRegularExpression("abcd")); | |
655 ASSERT_EQ("ab.*cd", Toolbox::WildcardToRegularExpression("ab*cd")); | |
656 ASSERT_EQ("ab..cd", Toolbox::WildcardToRegularExpression("ab??cd")); | |
657 ASSERT_EQ("a.*b.c.*d", Toolbox::WildcardToRegularExpression("a*b?c*d")); | |
658 ASSERT_EQ("a\\{b\\]", Toolbox::WildcardToRegularExpression("a{b]")); | |
659 } | |
660 | |
661 | |
662 TEST(Toolbox, Tokenize) | |
663 { | |
664 std::vector<std::string> t; | |
665 | |
666 Toolbox::TokenizeString(t, "", ','); | |
667 ASSERT_EQ(1u, t.size()); | |
668 ASSERT_EQ("", t[0]); | |
669 | |
670 Toolbox::TokenizeString(t, "abc", ','); | |
671 ASSERT_EQ(1u, t.size()); | |
672 ASSERT_EQ("abc", t[0]); | |
673 | |
674 Toolbox::TokenizeString(t, "ab,cd,ef,", ','); | |
675 ASSERT_EQ(4u, t.size()); | |
676 ASSERT_EQ("ab", t[0]); | |
677 ASSERT_EQ("cd", t[1]); | |
678 ASSERT_EQ("ef", t[2]); | |
679 ASSERT_EQ("", t[3]); | |
680 } | |
681 | |
682 TEST(Toolbox, Enumerations) | |
683 { | |
684 ASSERT_EQ(Encoding_Utf8, StringToEncoding(EnumerationToString(Encoding_Utf8))); | |
685 ASSERT_EQ(Encoding_Ascii, StringToEncoding(EnumerationToString(Encoding_Ascii))); | |
686 ASSERT_EQ(Encoding_Latin1, StringToEncoding(EnumerationToString(Encoding_Latin1))); | |
687 ASSERT_EQ(Encoding_Latin2, StringToEncoding(EnumerationToString(Encoding_Latin2))); | |
688 ASSERT_EQ(Encoding_Latin3, StringToEncoding(EnumerationToString(Encoding_Latin3))); | |
689 ASSERT_EQ(Encoding_Latin4, StringToEncoding(EnumerationToString(Encoding_Latin4))); | |
690 ASSERT_EQ(Encoding_Latin5, StringToEncoding(EnumerationToString(Encoding_Latin5))); | |
691 ASSERT_EQ(Encoding_Cyrillic, StringToEncoding(EnumerationToString(Encoding_Cyrillic))); | |
692 ASSERT_EQ(Encoding_Arabic, StringToEncoding(EnumerationToString(Encoding_Arabic))); | |
693 ASSERT_EQ(Encoding_Greek, StringToEncoding(EnumerationToString(Encoding_Greek))); | |
694 ASSERT_EQ(Encoding_Hebrew, StringToEncoding(EnumerationToString(Encoding_Hebrew))); | |
695 ASSERT_EQ(Encoding_Japanese, StringToEncoding(EnumerationToString(Encoding_Japanese))); | |
696 ASSERT_EQ(Encoding_Chinese, StringToEncoding(EnumerationToString(Encoding_Chinese))); | |
697 ASSERT_EQ(Encoding_Thai, StringToEncoding(EnumerationToString(Encoding_Thai))); | |
698 ASSERT_EQ(Encoding_Korean, StringToEncoding(EnumerationToString(Encoding_Korean))); | |
699 ASSERT_EQ(Encoding_JapaneseKanji, StringToEncoding(EnumerationToString(Encoding_JapaneseKanji))); | |
700 ASSERT_EQ(Encoding_SimplifiedChinese, StringToEncoding(EnumerationToString(Encoding_SimplifiedChinese))); | |
701 | |
702 ASSERT_EQ(ResourceType_Patient, StringToResourceType(EnumerationToString(ResourceType_Patient))); | |
703 ASSERT_EQ(ResourceType_Study, StringToResourceType(EnumerationToString(ResourceType_Study))); | |
704 ASSERT_EQ(ResourceType_Series, StringToResourceType(EnumerationToString(ResourceType_Series))); | |
705 ASSERT_EQ(ResourceType_Instance, StringToResourceType(EnumerationToString(ResourceType_Instance))); | |
706 | |
707 ASSERT_EQ(ImageFormat_Png, StringToImageFormat(EnumerationToString(ImageFormat_Png))); | |
708 | |
709 ASSERT_EQ(PhotometricInterpretation_ARGB, StringToPhotometricInterpretation(EnumerationToString(PhotometricInterpretation_ARGB))); | |
710 ASSERT_EQ(PhotometricInterpretation_CMYK, StringToPhotometricInterpretation(EnumerationToString(PhotometricInterpretation_CMYK))); | |
711 ASSERT_EQ(PhotometricInterpretation_HSV, StringToPhotometricInterpretation(EnumerationToString(PhotometricInterpretation_HSV))); | |
712 ASSERT_EQ(PhotometricInterpretation_Monochrome1, StringToPhotometricInterpretation(EnumerationToString(PhotometricInterpretation_Monochrome1))); | |
713 ASSERT_EQ(PhotometricInterpretation_Monochrome2, StringToPhotometricInterpretation(EnumerationToString(PhotometricInterpretation_Monochrome2))); | |
714 ASSERT_EQ(PhotometricInterpretation_Palette, StringToPhotometricInterpretation(EnumerationToString(PhotometricInterpretation_Palette))); | |
715 ASSERT_EQ(PhotometricInterpretation_RGB, StringToPhotometricInterpretation(EnumerationToString(PhotometricInterpretation_RGB))); | |
716 ASSERT_EQ(PhotometricInterpretation_YBRFull, StringToPhotometricInterpretation(EnumerationToString(PhotometricInterpretation_YBRFull))); | |
717 ASSERT_EQ(PhotometricInterpretation_YBRFull422, StringToPhotometricInterpretation(EnumerationToString(PhotometricInterpretation_YBRFull422))); | |
718 ASSERT_EQ(PhotometricInterpretation_YBRPartial420, StringToPhotometricInterpretation(EnumerationToString(PhotometricInterpretation_YBRPartial420))); | |
719 ASSERT_EQ(PhotometricInterpretation_YBRPartial422, StringToPhotometricInterpretation(EnumerationToString(PhotometricInterpretation_YBRPartial422))); | |
720 ASSERT_EQ(PhotometricInterpretation_YBR_ICT, StringToPhotometricInterpretation(EnumerationToString(PhotometricInterpretation_YBR_ICT))); | |
721 ASSERT_EQ(PhotometricInterpretation_YBR_RCT, StringToPhotometricInterpretation(EnumerationToString(PhotometricInterpretation_YBR_RCT))); | |
722 | |
723 ASSERT_STREQ("Unknown", EnumerationToString(PhotometricInterpretation_Unknown)); | |
724 ASSERT_THROW(StringToPhotometricInterpretation("Unknown"), OrthancException); | |
725 | |
726 ASSERT_EQ(DicomVersion_2008, StringToDicomVersion(EnumerationToString(DicomVersion_2008))); | |
727 ASSERT_EQ(DicomVersion_2017c, StringToDicomVersion(EnumerationToString(DicomVersion_2017c))); | |
728 | |
729 for (int i = static_cast<int>(ValueRepresentation_ApplicationEntity); | |
730 i < static_cast<int>(ValueRepresentation_NotSupported); i += 1) | |
731 { | |
732 ValueRepresentation vr = static_cast<ValueRepresentation>(i); | |
733 ASSERT_EQ(vr, StringToValueRepresentation(EnumerationToString(vr), true)); | |
734 } | |
735 | |
736 ASSERT_THROW(StringToValueRepresentation("nope", true), OrthancException); | |
737 | |
738 ASSERT_EQ(JobState_Pending, StringToJobState(EnumerationToString(JobState_Pending))); | |
739 ASSERT_EQ(JobState_Running, StringToJobState(EnumerationToString(JobState_Running))); | |
740 ASSERT_EQ(JobState_Success, StringToJobState(EnumerationToString(JobState_Success))); | |
741 ASSERT_EQ(JobState_Failure, StringToJobState(EnumerationToString(JobState_Failure))); | |
742 ASSERT_EQ(JobState_Paused, StringToJobState(EnumerationToString(JobState_Paused))); | |
743 ASSERT_EQ(JobState_Retry, StringToJobState(EnumerationToString(JobState_Retry))); | |
744 ASSERT_THROW(StringToJobState("nope"), OrthancException); | |
745 | |
746 ASSERT_EQ(MimeType_Binary, StringToMimeType(EnumerationToString(MimeType_Binary))); | |
747 ASSERT_EQ(MimeType_Css, StringToMimeType(EnumerationToString(MimeType_Css))); | |
748 ASSERT_EQ(MimeType_Dicom, StringToMimeType(EnumerationToString(MimeType_Dicom))); | |
749 ASSERT_EQ(MimeType_Gif, StringToMimeType(EnumerationToString(MimeType_Gif))); | |
750 ASSERT_EQ(MimeType_Gzip, StringToMimeType(EnumerationToString(MimeType_Gzip))); | |
751 ASSERT_EQ(MimeType_Html, StringToMimeType(EnumerationToString(MimeType_Html))); | |
752 ASSERT_EQ(MimeType_JavaScript, StringToMimeType(EnumerationToString(MimeType_JavaScript))); | |
753 ASSERT_EQ(MimeType_Jpeg, StringToMimeType(EnumerationToString(MimeType_Jpeg))); | |
754 ASSERT_EQ(MimeType_Jpeg2000, StringToMimeType(EnumerationToString(MimeType_Jpeg2000))); | |
755 ASSERT_EQ(MimeType_Json, StringToMimeType(EnumerationToString(MimeType_Json))); | |
756 ASSERT_EQ(MimeType_NaCl, StringToMimeType(EnumerationToString(MimeType_NaCl))); | |
757 ASSERT_EQ(MimeType_PNaCl, StringToMimeType(EnumerationToString(MimeType_PNaCl))); | |
758 ASSERT_EQ(MimeType_Pam, StringToMimeType(EnumerationToString(MimeType_Pam))); | |
759 ASSERT_EQ(MimeType_Pdf, StringToMimeType(EnumerationToString(MimeType_Pdf))); | |
760 ASSERT_EQ(MimeType_PlainText, StringToMimeType(EnumerationToString(MimeType_PlainText))); | |
761 ASSERT_EQ(MimeType_Png, StringToMimeType(EnumerationToString(MimeType_Png))); | |
762 ASSERT_EQ(MimeType_Svg, StringToMimeType(EnumerationToString(MimeType_Svg))); | |
763 ASSERT_EQ(MimeType_WebAssembly, StringToMimeType(EnumerationToString(MimeType_WebAssembly))); | |
764 ASSERT_EQ(MimeType_Xml, StringToMimeType("application/xml")); | |
765 ASSERT_EQ(MimeType_Xml, StringToMimeType("text/xml")); | |
766 ASSERT_EQ(MimeType_Xml, StringToMimeType(EnumerationToString(MimeType_Xml))); | |
767 ASSERT_EQ(MimeType_DicomWebJson, StringToMimeType(EnumerationToString(MimeType_DicomWebJson))); | |
768 ASSERT_EQ(MimeType_DicomWebXml, StringToMimeType(EnumerationToString(MimeType_DicomWebXml))); | |
769 ASSERT_THROW(StringToMimeType("nope"), OrthancException); | |
770 | |
771 ASSERT_TRUE(IsResourceLevelAboveOrEqual(ResourceType_Patient, ResourceType_Patient)); | |
772 ASSERT_TRUE(IsResourceLevelAboveOrEqual(ResourceType_Patient, ResourceType_Study)); | |
773 ASSERT_TRUE(IsResourceLevelAboveOrEqual(ResourceType_Patient, ResourceType_Series)); | |
774 ASSERT_TRUE(IsResourceLevelAboveOrEqual(ResourceType_Patient, ResourceType_Instance)); | |
775 | |
776 ASSERT_FALSE(IsResourceLevelAboveOrEqual(ResourceType_Study, ResourceType_Patient)); | |
777 ASSERT_TRUE(IsResourceLevelAboveOrEqual(ResourceType_Study, ResourceType_Study)); | |
778 ASSERT_TRUE(IsResourceLevelAboveOrEqual(ResourceType_Study, ResourceType_Series)); | |
779 ASSERT_TRUE(IsResourceLevelAboveOrEqual(ResourceType_Study, ResourceType_Instance)); | |
780 | |
781 ASSERT_FALSE(IsResourceLevelAboveOrEqual(ResourceType_Series, ResourceType_Patient)); | |
782 ASSERT_FALSE(IsResourceLevelAboveOrEqual(ResourceType_Series, ResourceType_Study)); | |
783 ASSERT_TRUE(IsResourceLevelAboveOrEqual(ResourceType_Series, ResourceType_Series)); | |
784 ASSERT_TRUE(IsResourceLevelAboveOrEqual(ResourceType_Series, ResourceType_Instance)); | |
785 | |
786 ASSERT_FALSE(IsResourceLevelAboveOrEqual(ResourceType_Instance, ResourceType_Patient)); | |
787 ASSERT_FALSE(IsResourceLevelAboveOrEqual(ResourceType_Instance, ResourceType_Study)); | |
788 ASSERT_FALSE(IsResourceLevelAboveOrEqual(ResourceType_Instance, ResourceType_Series)); | |
789 ASSERT_TRUE(IsResourceLevelAboveOrEqual(ResourceType_Instance, ResourceType_Instance)); | |
4399
80fd140b12ba
New command-line option: "--openapi" to write the OpenAPI documentation of the REST API to a file
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4342
diff
changeset
|
790 |
80fd140b12ba
New command-line option: "--openapi" to write the OpenAPI documentation of the REST API to a file
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4342
diff
changeset
|
791 ASSERT_STREQ("Patients", GetResourceTypeText(ResourceType_Patient, true /* plural */, true /* upper case */)); |
80fd140b12ba
New command-line option: "--openapi" to write the OpenAPI documentation of the REST API to a file
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4342
diff
changeset
|
792 ASSERT_STREQ("patients", GetResourceTypeText(ResourceType_Patient, true, false)); |
80fd140b12ba
New command-line option: "--openapi" to write the OpenAPI documentation of the REST API to a file
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4342
diff
changeset
|
793 ASSERT_STREQ("Patient", GetResourceTypeText(ResourceType_Patient, false, true)); |
80fd140b12ba
New command-line option: "--openapi" to write the OpenAPI documentation of the REST API to a file
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4342
diff
changeset
|
794 ASSERT_STREQ("patient", GetResourceTypeText(ResourceType_Patient, false, false)); |
80fd140b12ba
New command-line option: "--openapi" to write the OpenAPI documentation of the REST API to a file
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4342
diff
changeset
|
795 ASSERT_STREQ("Studies", GetResourceTypeText(ResourceType_Study, true, true)); |
80fd140b12ba
New command-line option: "--openapi" to write the OpenAPI documentation of the REST API to a file
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4342
diff
changeset
|
796 ASSERT_STREQ("studies", GetResourceTypeText(ResourceType_Study, true, false)); |
80fd140b12ba
New command-line option: "--openapi" to write the OpenAPI documentation of the REST API to a file
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4342
diff
changeset
|
797 ASSERT_STREQ("Study", GetResourceTypeText(ResourceType_Study, false, true)); |
80fd140b12ba
New command-line option: "--openapi" to write the OpenAPI documentation of the REST API to a file
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4342
diff
changeset
|
798 ASSERT_STREQ("study", GetResourceTypeText(ResourceType_Study, false, false)); |
80fd140b12ba
New command-line option: "--openapi" to write the OpenAPI documentation of the REST API to a file
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4342
diff
changeset
|
799 ASSERT_STREQ("Series", GetResourceTypeText(ResourceType_Series, true, true)); |
80fd140b12ba
New command-line option: "--openapi" to write the OpenAPI documentation of the REST API to a file
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4342
diff
changeset
|
800 ASSERT_STREQ("series", GetResourceTypeText(ResourceType_Series, true, false)); |
80fd140b12ba
New command-line option: "--openapi" to write the OpenAPI documentation of the REST API to a file
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4342
diff
changeset
|
801 ASSERT_STREQ("Series", GetResourceTypeText(ResourceType_Series, false, true)); |
80fd140b12ba
New command-line option: "--openapi" to write the OpenAPI documentation of the REST API to a file
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4342
diff
changeset
|
802 ASSERT_STREQ("series", GetResourceTypeText(ResourceType_Series, false, false)); |
80fd140b12ba
New command-line option: "--openapi" to write the OpenAPI documentation of the REST API to a file
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4342
diff
changeset
|
803 ASSERT_STREQ("Instances", GetResourceTypeText(ResourceType_Instance, true, true)); |
80fd140b12ba
New command-line option: "--openapi" to write the OpenAPI documentation of the REST API to a file
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4342
diff
changeset
|
804 ASSERT_STREQ("instances", GetResourceTypeText(ResourceType_Instance, true, false)); |
80fd140b12ba
New command-line option: "--openapi" to write the OpenAPI documentation of the REST API to a file
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4342
diff
changeset
|
805 ASSERT_STREQ("Instance", GetResourceTypeText(ResourceType_Instance, false, true)); |
80fd140b12ba
New command-line option: "--openapi" to write the OpenAPI documentation of the REST API to a file
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4342
diff
changeset
|
806 ASSERT_STREQ("instance", GetResourceTypeText(ResourceType_Instance, false, false)); |
3987 | 807 } |
808 | |
809 | |
810 #if defined(__linux__) || defined(__OpenBSD__) | |
811 #include <endian.h> | |
812 #elif defined(__FreeBSD__) | |
813 #include <machine/endian.h> | |
814 #endif | |
815 | |
816 | |
817 TEST(Toolbox, Endianness) | |
818 { | |
819 // Parts of this test come from Adam Conrad | |
820 // http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=728822#5 | |
821 | |
822 | |
823 /** | |
824 * Windows and OS X are assumed to always little-endian. | |
825 **/ | |
826 | |
827 #if defined(_WIN32) || defined(__APPLE__) | |
828 ASSERT_EQ(Endianness_Little, Toolbox::DetectEndianness()); | |
829 | |
830 | |
831 /** | |
832 * FreeBSD. | |
833 **/ | |
834 | |
835 #elif defined(__FreeBSD__) || defined(__OpenBSD__) | |
836 # if _BYTE_ORDER == _BIG_ENDIAN | |
837 ASSERT_EQ(Endianness_Big, Toolbox::DetectEndianness()); | |
838 # else // _LITTLE_ENDIAN | |
839 ASSERT_EQ(Endianness_Little, Toolbox::DetectEndianness()); | |
840 # endif | |
841 | |
842 | |
843 /** | |
844 * Linux. | |
845 **/ | |
846 | |
847 #elif defined(__linux__) || defined(__FreeBSD_kernel__) | |
848 | |
849 #if !defined(__BYTE_ORDER) | |
850 # error Support your platform here | |
851 #endif | |
852 | |
853 # if __BYTE_ORDER == __BIG_ENDIAN | |
854 ASSERT_EQ(Endianness_Big, Toolbox::DetectEndianness()); | |
855 # else // __LITTLE_ENDIAN | |
856 ASSERT_EQ(Endianness_Little, Toolbox::DetectEndianness()); | |
857 # endif | |
858 | |
4325
b96aedfa8cc1
unit tests now running in WebAssembly
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4234
diff
changeset
|
859 |
b96aedfa8cc1
unit tests now running in WebAssembly
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4234
diff
changeset
|
860 /** |
b96aedfa8cc1
unit tests now running in WebAssembly
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4234
diff
changeset
|
861 * WebAssembly is always little-endian. |
b96aedfa8cc1
unit tests now running in WebAssembly
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4234
diff
changeset
|
862 **/ |
b96aedfa8cc1
unit tests now running in WebAssembly
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4234
diff
changeset
|
863 |
b96aedfa8cc1
unit tests now running in WebAssembly
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4234
diff
changeset
|
864 #elif defined(__EMSCRIPTEN__) |
b96aedfa8cc1
unit tests now running in WebAssembly
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4234
diff
changeset
|
865 ASSERT_EQ(Endianness_Little, Toolbox::DetectEndianness()); |
3987 | 866 #else |
4325
b96aedfa8cc1
unit tests now running in WebAssembly
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4234
diff
changeset
|
867 # error Support your platform here |
3987 | 868 #endif |
869 } | |
870 | |
871 | |
4045 | 872 #include "../Sources/Endianness.h" |
3987 | 873 |
874 static void ASSERT_EQ16(uint16_t a, uint16_t b) | |
875 { | |
876 #ifdef __MINGW32__ | |
877 // This cast solves a linking problem with MinGW | |
878 ASSERT_EQ(static_cast<unsigned int>(a), static_cast<unsigned int>(b)); | |
879 #else | |
880 ASSERT_EQ(a, b); | |
881 #endif | |
882 } | |
883 | |
884 static void ASSERT_NE16(uint16_t a, uint16_t b) | |
885 { | |
886 #ifdef __MINGW32__ | |
887 // This cast solves a linking problem with MinGW | |
888 ASSERT_NE(static_cast<unsigned int>(a), static_cast<unsigned int>(b)); | |
889 #else | |
890 ASSERT_NE(a, b); | |
891 #endif | |
892 } | |
893 | |
894 static void ASSERT_EQ32(uint32_t a, uint32_t b) | |
895 { | |
896 #ifdef __MINGW32__ | |
897 // This cast solves a linking problem with MinGW | |
898 ASSERT_EQ(static_cast<unsigned int>(a), static_cast<unsigned int>(b)); | |
899 #else | |
900 ASSERT_EQ(a, b); | |
901 #endif | |
902 } | |
903 | |
904 static void ASSERT_NE32(uint32_t a, uint32_t b) | |
905 { | |
906 #ifdef __MINGW32__ | |
907 // This cast solves a linking problem with MinGW | |
908 ASSERT_NE(static_cast<unsigned int>(a), static_cast<unsigned int>(b)); | |
909 #else | |
910 ASSERT_NE(a, b); | |
911 #endif | |
912 } | |
913 | |
914 static void ASSERT_EQ64(uint64_t a, uint64_t b) | |
915 { | |
916 #ifdef __MINGW32__ | |
917 // This cast solves a linking problem with MinGW | |
918 ASSERT_EQ(static_cast<unsigned int>(a), static_cast<unsigned int>(b)); | |
919 #else | |
920 ASSERT_EQ(a, b); | |
921 #endif | |
922 } | |
923 | |
924 static void ASSERT_NE64(uint64_t a, uint64_t b) | |
925 { | |
926 #ifdef __MINGW32__ | |
927 // This cast solves a linking problem with MinGW | |
928 ASSERT_NE(static_cast<unsigned long long>(a), static_cast<unsigned long long>(b)); | |
929 #else | |
930 ASSERT_NE(a, b); | |
931 #endif | |
932 } | |
933 | |
934 | |
935 | |
936 TEST(Toolbox, EndiannessConversions16) | |
937 { | |
938 Endianness e = Toolbox::DetectEndianness(); | |
939 | |
940 for (unsigned int i = 0; i < 65536; i += 17) | |
941 { | |
942 uint16_t v = static_cast<uint16_t>(i); | |
943 ASSERT_EQ16(v, be16toh(htobe16(v))); | |
944 ASSERT_EQ16(v, le16toh(htole16(v))); | |
945 | |
946 const uint8_t* bytes = reinterpret_cast<const uint8_t*>(&v); | |
947 if (bytes[0] != bytes[1]) | |
948 { | |
949 ASSERT_NE16(v, le16toh(htobe16(v))); | |
950 ASSERT_NE16(v, be16toh(htole16(v))); | |
951 } | |
952 else | |
953 { | |
954 ASSERT_EQ16(v, le16toh(htobe16(v))); | |
955 ASSERT_EQ16(v, be16toh(htole16(v))); | |
956 } | |
957 | |
958 switch (e) | |
959 { | |
960 case Endianness_Little: | |
961 ASSERT_EQ16(v, htole16(v)); | |
962 if (bytes[0] != bytes[1]) | |
963 { | |
964 ASSERT_NE16(v, htobe16(v)); | |
965 } | |
966 else | |
967 { | |
968 ASSERT_EQ16(v, htobe16(v)); | |
969 } | |
970 break; | |
971 | |
972 case Endianness_Big: | |
973 ASSERT_EQ16(v, htobe16(v)); | |
974 if (bytes[0] != bytes[1]) | |
975 { | |
976 ASSERT_NE16(v, htole16(v)); | |
977 } | |
978 else | |
979 { | |
980 ASSERT_EQ16(v, htole16(v)); | |
981 } | |
982 break; | |
983 | |
984 default: | |
985 throw OrthancException(ErrorCode_ParameterOutOfRange); | |
986 } | |
987 } | |
988 } | |
989 | |
990 | |
991 TEST(Toolbox, EndiannessConversions32) | |
992 { | |
993 const uint32_t v = 0xff010203u; | |
994 const uint32_t r = 0x030201ffu; | |
995 ASSERT_EQ32(v, be32toh(htobe32(v))); | |
996 ASSERT_EQ32(v, le32toh(htole32(v))); | |
997 ASSERT_NE32(v, be32toh(htole32(v))); | |
998 ASSERT_NE32(v, le32toh(htobe32(v))); | |
999 | |
1000 switch (Toolbox::DetectEndianness()) | |
1001 { | |
1002 case Endianness_Little: | |
1003 ASSERT_EQ32(r, htobe32(v)); | |
1004 ASSERT_EQ32(v, htole32(v)); | |
1005 ASSERT_EQ32(r, be32toh(v)); | |
1006 ASSERT_EQ32(v, le32toh(v)); | |
1007 break; | |
1008 | |
1009 case Endianness_Big: | |
1010 ASSERT_EQ32(v, htobe32(v)); | |
1011 ASSERT_EQ32(r, htole32(v)); | |
1012 ASSERT_EQ32(v, be32toh(v)); | |
1013 ASSERT_EQ32(r, le32toh(v)); | |
1014 break; | |
1015 | |
1016 default: | |
1017 throw OrthancException(ErrorCode_ParameterOutOfRange); | |
1018 } | |
1019 } | |
1020 | |
1021 | |
1022 TEST(Toolbox, EndiannessConversions64) | |
1023 { | |
1024 const uint64_t v = 0xff01020304050607LL; | |
1025 const uint64_t r = 0x07060504030201ffLL; | |
1026 ASSERT_EQ64(v, be64toh(htobe64(v))); | |
1027 ASSERT_EQ64(v, le64toh(htole64(v))); | |
1028 ASSERT_NE64(v, be64toh(htole64(v))); | |
1029 ASSERT_NE64(v, le64toh(htobe64(v))); | |
1030 | |
1031 switch (Toolbox::DetectEndianness()) | |
1032 { | |
1033 case Endianness_Little: | |
1034 ASSERT_EQ64(r, htobe64(v)); | |
1035 ASSERT_EQ64(v, htole64(v)); | |
1036 ASSERT_EQ64(r, be64toh(v)); | |
1037 ASSERT_EQ64(v, le64toh(v)); | |
1038 break; | |
1039 | |
1040 case Endianness_Big: | |
1041 ASSERT_EQ64(v, htobe64(v)); | |
1042 ASSERT_EQ64(r, htole64(v)); | |
1043 ASSERT_EQ64(v, be64toh(v)); | |
1044 ASSERT_EQ64(r, le64toh(v)); | |
1045 break; | |
1046 | |
1047 default: | |
1048 throw OrthancException(ErrorCode_ParameterOutOfRange); | |
1049 } | |
1050 } | |
1051 | |
1052 | |
4325
b96aedfa8cc1
unit tests now running in WebAssembly
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4234
diff
changeset
|
1053 #if ORTHANC_SANDBOXED != 1 |
3987 | 1054 TEST(Toolbox, Now) |
1055 { | |
1056 LOG(WARNING) << "Local time: " << SystemToolbox::GetNowIsoString(false); | |
1057 LOG(WARNING) << "Universal time: " << SystemToolbox::GetNowIsoString(true); | |
1058 | |
1059 std::string date, time; | |
1060 SystemToolbox::GetNowDicom(date, time, false); | |
1061 LOG(WARNING) << "Local DICOM time: [" << date << "] [" << time << "]"; | |
1062 | |
1063 SystemToolbox::GetNowDicom(date, time, true); | |
1064 LOG(WARNING) << "Universal DICOM time: [" << date << "] [" << time << "]"; | |
1065 } | |
4325
b96aedfa8cc1
unit tests now running in WebAssembly
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4234
diff
changeset
|
1066 #endif |
3987 | 1067 |
1068 | |
1069 #if ORTHANC_ENABLE_PUGIXML == 1 | |
1070 TEST(Toolbox, Xml) | |
1071 { | |
1072 Json::Value a; | |
1073 a["hello"] = "world"; | |
1074 a["42"] = 43; | |
1075 a["b"] = Json::arrayValue; | |
1076 a["b"].append("test"); | |
1077 a["b"].append("test2"); | |
1078 | |
1079 std::string s; | |
1080 Toolbox::JsonToXml(s, a); | |
1081 | |
1082 std::cout << s; | |
1083 } | |
1084 #endif | |
1085 | |
1086 | |
4325
b96aedfa8cc1
unit tests now running in WebAssembly
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4234
diff
changeset
|
1087 #if !defined(_WIN32) && (ORTHANC_SANDBOXED != 1) |
3987 | 1088 TEST(Toolbox, ExecuteSystemCommand) |
1089 { | |
1090 std::vector<std::string> args(2); | |
1091 args[0] = "Hello"; | |
1092 args[1] = "World"; | |
1093 | |
1094 SystemToolbox::ExecuteSystemCommand("echo", args); | |
1095 } | |
1096 #endif | |
1097 | |
1098 | |
1099 TEST(Toolbox, IsInteger) | |
1100 { | |
1101 ASSERT_TRUE(Toolbox::IsInteger("00236")); | |
1102 ASSERT_TRUE(Toolbox::IsInteger("-0042")); | |
1103 ASSERT_TRUE(Toolbox::IsInteger("0")); | |
1104 ASSERT_TRUE(Toolbox::IsInteger("-0")); | |
1105 | |
1106 ASSERT_FALSE(Toolbox::IsInteger("")); | |
1107 ASSERT_FALSE(Toolbox::IsInteger("42a")); | |
1108 ASSERT_FALSE(Toolbox::IsInteger("42-")); | |
1109 } | |
1110 | |
1111 | |
1112 TEST(Toolbox, StartsWith) | |
1113 { | |
1114 ASSERT_TRUE(Toolbox::StartsWith("hello world", "")); | |
1115 ASSERT_TRUE(Toolbox::StartsWith("hello world", "hello")); | |
1116 ASSERT_TRUE(Toolbox::StartsWith("hello world", "h")); | |
1117 ASSERT_FALSE(Toolbox::StartsWith("hello world", "H")); | |
1118 ASSERT_FALSE(Toolbox::StartsWith("h", "hello")); | |
1119 ASSERT_TRUE(Toolbox::StartsWith("h", "h")); | |
1120 ASSERT_FALSE(Toolbox::StartsWith("", "h")); | |
1121 } | |
1122 | |
1123 | |
1124 TEST(Toolbox, UriEncode) | |
1125 { | |
1126 std::string s; | |
1127 | |
1128 // Unreserved characters must not be modified | |
1129 std::string t = "aAzZ09.-~_"; | |
1130 Toolbox::UriEncode(s, t); | |
1131 ASSERT_EQ(t, s); | |
1132 | |
4234
a38376b80cd1
WebDAV: by-studies and by-patients
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4186
diff
changeset
|
1133 Toolbox::UriEncode(s, "!#$&'()*+,/:;=?@[]"); ASSERT_EQ("%21%23%24%26%27%28%29%2A%2B%2C/%3A%3B%3D%3F%40%5B%5D", s); |
3987 | 1134 Toolbox::UriEncode(s, "%"); ASSERT_EQ("%25", s); |
1135 | |
1136 // Encode characters from UTF-8. This is the test string from the | |
1137 // file "../Resources/EncodingTests.py" | |
1138 Toolbox::UriEncode(s, "\x54\x65\x73\x74\xc3\xa9\xc3\xa4\xc3\xb6\xc3\xb2\xd0\x94\xce\x98\xc4\x9d\xd7\x93\xd8\xb5\xc4\xb7\xd1\x9b\xe0\xb9\x9b\xef\xbe\x88\xc4\xb0"); | |
1139 ASSERT_EQ("Test%C3%A9%C3%A4%C3%B6%C3%B2%D0%94%CE%98%C4%9D%D7%93%D8%B5%C4%B7%D1%9B%E0%B9%9B%EF%BE%88%C4%B0", s); | |
1140 } | |
1141 | |
1142 | |
1143 TEST(Toolbox, AccessJson) | |
1144 { | |
1145 Json::Value v = Json::arrayValue; | |
1146 ASSERT_EQ("nope", Toolbox::GetJsonStringField(v, "hello", "nope")); | |
1147 | |
1148 v = Json::objectValue; | |
1149 ASSERT_EQ("nope", Toolbox::GetJsonStringField(v, "hello", "nope")); | |
1150 ASSERT_EQ(-10, Toolbox::GetJsonIntegerField(v, "hello", -10)); | |
1151 ASSERT_EQ(10u, Toolbox::GetJsonUnsignedIntegerField(v, "hello", 10)); | |
1152 ASSERT_TRUE(Toolbox::GetJsonBooleanField(v, "hello", true)); | |
1153 | |
1154 v["hello"] = "world"; | |
1155 ASSERT_EQ("world", Toolbox::GetJsonStringField(v, "hello", "nope")); | |
1156 ASSERT_THROW(Toolbox::GetJsonIntegerField(v, "hello", -10), OrthancException); | |
1157 ASSERT_THROW(Toolbox::GetJsonUnsignedIntegerField(v, "hello", 10), OrthancException); | |
1158 ASSERT_THROW(Toolbox::GetJsonBooleanField(v, "hello", true), OrthancException); | |
1159 | |
1160 v["hello"] = -42; | |
1161 ASSERT_THROW(Toolbox::GetJsonStringField(v, "hello", "nope"), OrthancException); | |
1162 ASSERT_EQ(-42, Toolbox::GetJsonIntegerField(v, "hello", -10)); | |
1163 ASSERT_THROW(Toolbox::GetJsonUnsignedIntegerField(v, "hello", 10), OrthancException); | |
1164 ASSERT_THROW(Toolbox::GetJsonBooleanField(v, "hello", true), OrthancException); | |
1165 | |
1166 v["hello"] = 42; | |
1167 ASSERT_THROW(Toolbox::GetJsonStringField(v, "hello", "nope"), OrthancException); | |
1168 ASSERT_EQ(42, Toolbox::GetJsonIntegerField(v, "hello", -10)); | |
1169 ASSERT_EQ(42u, Toolbox::GetJsonUnsignedIntegerField(v, "hello", 10)); | |
1170 ASSERT_THROW(Toolbox::GetJsonBooleanField(v, "hello", true), OrthancException); | |
1171 | |
1172 v["hello"] = false; | |
1173 ASSERT_THROW(Toolbox::GetJsonStringField(v, "hello", "nope"), OrthancException); | |
1174 ASSERT_THROW(Toolbox::GetJsonIntegerField(v, "hello", -10), OrthancException); | |
1175 ASSERT_THROW(Toolbox::GetJsonUnsignedIntegerField(v, "hello", 10), OrthancException); | |
1176 ASSERT_FALSE(Toolbox::GetJsonBooleanField(v, "hello", true)); | |
1177 } | |
1178 | |
1179 | |
1180 TEST(Toolbox, LinesIterator) | |
1181 { | |
1182 std::string s; | |
1183 | |
1184 { | |
1185 std::string content; | |
1186 Toolbox::LinesIterator it(content); | |
1187 ASSERT_FALSE(it.GetLine(s)); | |
1188 } | |
1189 | |
1190 { | |
1191 std::string content = "\n\r"; | |
1192 Toolbox::LinesIterator it(content); | |
1193 ASSERT_TRUE(it.GetLine(s)); it.Next(); ASSERT_EQ("", s); | |
1194 ASSERT_FALSE(it.GetLine(s)); | |
1195 } | |
1196 | |
1197 { | |
1198 std::string content = "\n Hello \n\nWorld\n\n"; | |
1199 Toolbox::LinesIterator it(content); | |
1200 ASSERT_TRUE(it.GetLine(s)); it.Next(); ASSERT_EQ("", s); | |
1201 ASSERT_TRUE(it.GetLine(s)); it.Next(); ASSERT_EQ(" Hello ", s); | |
1202 ASSERT_TRUE(it.GetLine(s)); it.Next(); ASSERT_EQ("", s); | |
1203 ASSERT_TRUE(it.GetLine(s)); it.Next(); ASSERT_EQ("World", s); | |
1204 ASSERT_TRUE(it.GetLine(s)); it.Next(); ASSERT_EQ("", s); | |
1205 ASSERT_FALSE(it.GetLine(s)); it.Next(); | |
1206 ASSERT_FALSE(it.GetLine(s)); | |
1207 } | |
1208 | |
1209 { | |
1210 std::string content = "\r Hello \r\rWorld\r\r"; | |
1211 Toolbox::LinesIterator it(content); | |
1212 ASSERT_TRUE(it.GetLine(s)); it.Next(); ASSERT_EQ("", s); | |
1213 ASSERT_TRUE(it.GetLine(s)); it.Next(); ASSERT_EQ(" Hello ", s); | |
1214 ASSERT_TRUE(it.GetLine(s)); it.Next(); ASSERT_EQ("", s); | |
1215 ASSERT_TRUE(it.GetLine(s)); it.Next(); ASSERT_EQ("World", s); | |
1216 ASSERT_TRUE(it.GetLine(s)); it.Next(); ASSERT_EQ("", s); | |
1217 ASSERT_FALSE(it.GetLine(s)); it.Next(); | |
1218 ASSERT_FALSE(it.GetLine(s)); | |
1219 } | |
1220 | |
1221 { | |
1222 std::string content = "\n\r Hello \n\r\n\rWorld\n\r\n\r"; | |
1223 Toolbox::LinesIterator it(content); | |
1224 ASSERT_TRUE(it.GetLine(s)); it.Next(); ASSERT_EQ("", s); | |
1225 ASSERT_TRUE(it.GetLine(s)); it.Next(); ASSERT_EQ(" Hello ", s); | |
1226 ASSERT_TRUE(it.GetLine(s)); it.Next(); ASSERT_EQ("", s); | |
1227 ASSERT_TRUE(it.GetLine(s)); it.Next(); ASSERT_EQ("World", s); | |
1228 ASSERT_TRUE(it.GetLine(s)); it.Next(); ASSERT_EQ("", s); | |
1229 ASSERT_FALSE(it.GetLine(s)); it.Next(); | |
1230 ASSERT_FALSE(it.GetLine(s)); | |
1231 } | |
1232 | |
1233 { | |
1234 std::string content = "\r\n Hello \r\n\r\nWorld\r\n\r\n"; | |
1235 Toolbox::LinesIterator it(content); | |
1236 ASSERT_TRUE(it.GetLine(s)); it.Next(); ASSERT_EQ("", s); | |
1237 ASSERT_TRUE(it.GetLine(s)); it.Next(); ASSERT_EQ(" Hello ", s); | |
1238 ASSERT_TRUE(it.GetLine(s)); it.Next(); ASSERT_EQ("", s); | |
1239 ASSERT_TRUE(it.GetLine(s)); it.Next(); ASSERT_EQ("World", s); | |
1240 ASSERT_TRUE(it.GetLine(s)); it.Next(); ASSERT_EQ("", s); | |
1241 ASSERT_FALSE(it.GetLine(s)); it.Next(); | |
1242 ASSERT_FALSE(it.GetLine(s)); | |
1243 } | |
1244 } | |
1245 | |
1246 | |
4325
b96aedfa8cc1
unit tests now running in WebAssembly
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4234
diff
changeset
|
1247 #if ORTHANC_SANDBOXED != 1 |
3987 | 1248 TEST(Toolbox, SubstituteVariables) |
1249 { | |
1250 std::map<std::string, std::string> env; | |
1251 env["NOPE"] = "nope"; | |
1252 env["WORLD"] = "world"; | |
1253 | |
1254 ASSERT_EQ("Hello world\r\nWorld \r\nDone world\r\n", | |
1255 Toolbox::SubstituteVariables( | |
1256 "Hello ${WORLD}\r\nWorld ${HELLO}\r\nDone ${WORLD}\r\n", | |
1257 env)); | |
1258 | |
1259 ASSERT_EQ("world A a B world C 'c' D {\"a\":\"b\"} E ", | |
1260 Toolbox::SubstituteVariables( | |
1261 "${WORLD} A ${WORLD2:-a} B ${WORLD:-b} C ${WORLD2:-\"'c'\"} D ${WORLD2:-'{\"a\":\"b\"}'} E ${WORLD2:-}", | |
1262 env)); | |
1263 | |
1264 SystemToolbox::GetEnvironmentVariables(env); | |
1265 ASSERT_TRUE(env.find("NOPE") == env.end()); | |
1266 | |
1267 // The "PATH" environment variable should always be available on | |
1268 // machines running the unit tests | |
1269 ASSERT_TRUE(env.find("PATH") != env.end() /* Case used by UNIX */ || | |
1270 env.find("Path") != env.end() /* Case used by Windows */); | |
1271 | |
1272 env["PATH"] = "hello"; | |
1273 ASSERT_EQ("AhelloB", | |
1274 Toolbox::SubstituteVariables("A${PATH}B", env)); | |
1275 } | |
4325
b96aedfa8cc1
unit tests now running in WebAssembly
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4234
diff
changeset
|
1276 #endif |
3987 | 1277 |
1278 | |
4325
b96aedfa8cc1
unit tests now running in WebAssembly
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4234
diff
changeset
|
1279 #if ORTHANC_SANDBOXED != 1 |
3987 | 1280 TEST(MetricsRegistry, Basic) |
1281 { | |
1282 { | |
1283 MetricsRegistry m; | |
1284 m.SetEnabled(false); | |
1285 m.SetValue("hello.world", 42.5f); | |
1286 | |
1287 std::string s; | |
1288 m.ExportPrometheusText(s); | |
1289 ASSERT_TRUE(s.empty()); | |
1290 } | |
1291 | |
1292 { | |
1293 MetricsRegistry m; | |
1294 m.Register("hello.world", MetricsType_Default); | |
1295 | |
1296 std::string s; | |
1297 m.ExportPrometheusText(s); | |
1298 ASSERT_TRUE(s.empty()); | |
1299 } | |
1300 | |
1301 { | |
1302 MetricsRegistry m; | |
1303 m.SetValue("hello.world", 42.5f); | |
1304 ASSERT_EQ(MetricsType_Default, m.GetMetricsType("hello.world")); | |
1305 ASSERT_THROW(m.GetMetricsType("nope"), OrthancException); | |
1306 | |
1307 std::string s; | |
1308 m.ExportPrometheusText(s); | |
1309 | |
1310 std::vector<std::string> t; | |
1311 Toolbox::TokenizeString(t, s, '\n'); | |
1312 ASSERT_EQ(2u, t.size()); | |
1313 ASSERT_EQ("hello.world 42.5 ", t[0].substr(0, 17)); | |
1314 ASSERT_TRUE(t[1].empty()); | |
1315 } | |
1316 | |
1317 { | |
1318 MetricsRegistry m; | |
1319 m.Register("hello.max", MetricsType_MaxOver10Seconds); | |
1320 m.SetValue("hello.max", 10); | |
1321 m.SetValue("hello.max", 20); | |
1322 m.SetValue("hello.max", -10); | |
1323 m.SetValue("hello.max", 5); | |
1324 | |
1325 m.Register("hello.min", MetricsType_MinOver10Seconds); | |
1326 m.SetValue("hello.min", 10); | |
1327 m.SetValue("hello.min", 20); | |
1328 m.SetValue("hello.min", -10); | |
1329 m.SetValue("hello.min", 5); | |
1330 | |
1331 m.Register("hello.default", MetricsType_Default); | |
1332 m.SetValue("hello.default", 10); | |
1333 m.SetValue("hello.default", 20); | |
1334 m.SetValue("hello.default", -10); | |
1335 m.SetValue("hello.default", 5); | |
1336 | |
1337 ASSERT_EQ(MetricsType_MaxOver10Seconds, m.GetMetricsType("hello.max")); | |
1338 ASSERT_EQ(MetricsType_MinOver10Seconds, m.GetMetricsType("hello.min")); | |
1339 ASSERT_EQ(MetricsType_Default, m.GetMetricsType("hello.default")); | |
1340 | |
1341 std::string s; | |
1342 m.ExportPrometheusText(s); | |
1343 | |
1344 std::vector<std::string> t; | |
1345 Toolbox::TokenizeString(t, s, '\n'); | |
1346 ASSERT_EQ(4u, t.size()); | |
1347 ASSERT_TRUE(t[3].empty()); | |
1348 | |
1349 std::map<std::string, std::string> u; | |
1350 for (size_t i = 0; i < t.size() - 1; i++) | |
1351 { | |
1352 std::vector<std::string> v; | |
1353 Toolbox::TokenizeString(v, t[i], ' '); | |
1354 u[v[0]] = v[1]; | |
1355 } | |
1356 | |
1357 ASSERT_EQ("20", u["hello.max"]); | |
1358 ASSERT_EQ("-10", u["hello.min"]); | |
1359 ASSERT_EQ("5", u["hello.default"]); | |
1360 } | |
1361 | |
1362 { | |
1363 MetricsRegistry m; | |
1364 | |
1365 m.SetValue("a", 10); | |
1366 m.SetValue("b", 10, MetricsType_MinOver10Seconds); | |
1367 | |
1368 m.Register("c", MetricsType_MaxOver10Seconds); | |
1369 m.SetValue("c", 10, MetricsType_MinOver10Seconds); | |
1370 | |
1371 m.Register("d", MetricsType_MaxOver10Seconds); | |
1372 m.Register("d", MetricsType_Default); | |
1373 | |
1374 ASSERT_EQ(MetricsType_Default, m.GetMetricsType("a")); | |
1375 ASSERT_EQ(MetricsType_MinOver10Seconds, m.GetMetricsType("b")); | |
1376 ASSERT_EQ(MetricsType_MaxOver10Seconds, m.GetMetricsType("c")); | |
1377 ASSERT_EQ(MetricsType_Default, m.GetMetricsType("d")); | |
1378 } | |
1379 | |
1380 { | |
1381 MetricsRegistry m; | |
1382 | |
1383 { | |
1384 MetricsRegistry::Timer t1(m, "a"); | |
1385 MetricsRegistry::Timer t2(m, "b", MetricsType_MinOver10Seconds); | |
1386 } | |
1387 | |
1388 ASSERT_EQ(MetricsType_MaxOver10Seconds, m.GetMetricsType("a")); | |
1389 ASSERT_EQ(MetricsType_MinOver10Seconds, m.GetMetricsType("b")); | |
1390 } | |
1391 } | |
4325
b96aedfa8cc1
unit tests now running in WebAssembly
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4234
diff
changeset
|
1392 #endif |
4342
52166629239f
SystemToolbox::ReadFileRange()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4330
diff
changeset
|
1393 |
52166629239f
SystemToolbox::ReadFileRange()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4330
diff
changeset
|
1394 |
52166629239f
SystemToolbox::ReadFileRange()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4330
diff
changeset
|
1395 #if ORTHANC_SANDBOXED != 1 |
52166629239f
SystemToolbox::ReadFileRange()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4330
diff
changeset
|
1396 TEST(Toolbox, ReadFileRange) |
52166629239f
SystemToolbox::ReadFileRange()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4330
diff
changeset
|
1397 { |
52166629239f
SystemToolbox::ReadFileRange()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4330
diff
changeset
|
1398 TemporaryFile tmp; |
52166629239f
SystemToolbox::ReadFileRange()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4330
diff
changeset
|
1399 std::string s; |
52166629239f
SystemToolbox::ReadFileRange()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4330
diff
changeset
|
1400 |
52166629239f
SystemToolbox::ReadFileRange()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4330
diff
changeset
|
1401 tmp.Write(""); |
52166629239f
SystemToolbox::ReadFileRange()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4330
diff
changeset
|
1402 tmp.Read(s); ASSERT_TRUE(s.empty()); |
52166629239f
SystemToolbox::ReadFileRange()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4330
diff
changeset
|
1403 tmp.ReadRange(s, 0, 0, true); ASSERT_TRUE(s.empty()); |
52166629239f
SystemToolbox::ReadFileRange()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4330
diff
changeset
|
1404 tmp.ReadRange(s, 0, 10, false); ASSERT_TRUE(s.empty()); |
52166629239f
SystemToolbox::ReadFileRange()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4330
diff
changeset
|
1405 |
52166629239f
SystemToolbox::ReadFileRange()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4330
diff
changeset
|
1406 ASSERT_THROW(tmp.ReadRange(s, 0, 1, true), OrthancException); |
52166629239f
SystemToolbox::ReadFileRange()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4330
diff
changeset
|
1407 |
52166629239f
SystemToolbox::ReadFileRange()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4330
diff
changeset
|
1408 tmp.Write("Hello"); |
52166629239f
SystemToolbox::ReadFileRange()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4330
diff
changeset
|
1409 tmp.Read(s); ASSERT_EQ("Hello", s); |
52166629239f
SystemToolbox::ReadFileRange()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4330
diff
changeset
|
1410 tmp.ReadRange(s, 0, 5, true); ASSERT_EQ("Hello", s); |
52166629239f
SystemToolbox::ReadFileRange()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4330
diff
changeset
|
1411 tmp.ReadRange(s, 0, 1, true); ASSERT_EQ("H", s); |
52166629239f
SystemToolbox::ReadFileRange()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4330
diff
changeset
|
1412 tmp.ReadRange(s, 1, 2, true); ASSERT_EQ("e", s); |
52166629239f
SystemToolbox::ReadFileRange()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4330
diff
changeset
|
1413 tmp.ReadRange(s, 2, 3, true); ASSERT_EQ("l", s); |
52166629239f
SystemToolbox::ReadFileRange()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4330
diff
changeset
|
1414 tmp.ReadRange(s, 3, 4, true); ASSERT_EQ("l", s); |
52166629239f
SystemToolbox::ReadFileRange()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4330
diff
changeset
|
1415 tmp.ReadRange(s, 4, 5, true); ASSERT_EQ("o", s); |
52166629239f
SystemToolbox::ReadFileRange()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4330
diff
changeset
|
1416 tmp.ReadRange(s, 2, 5, true); ASSERT_EQ("llo", s); |
52166629239f
SystemToolbox::ReadFileRange()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4330
diff
changeset
|
1417 tmp.ReadRange(s, 2, 50, false); ASSERT_EQ("llo", s); |
52166629239f
SystemToolbox::ReadFileRange()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4330
diff
changeset
|
1418 tmp.ReadRange(s, 2, 2, false); ASSERT_TRUE(s.empty()); |
52166629239f
SystemToolbox::ReadFileRange()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4330
diff
changeset
|
1419 tmp.ReadRange(s, 10, 50, false); ASSERT_TRUE(s.empty()); |
52166629239f
SystemToolbox::ReadFileRange()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4330
diff
changeset
|
1420 |
52166629239f
SystemToolbox::ReadFileRange()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4330
diff
changeset
|
1421 ASSERT_THROW(tmp.ReadRange(s, 5, 10, true), OrthancException); |
52166629239f
SystemToolbox::ReadFileRange()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4330
diff
changeset
|
1422 ASSERT_THROW(tmp.ReadRange(s, 10, 50, true), OrthancException); |
52166629239f
SystemToolbox::ReadFileRange()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4330
diff
changeset
|
1423 ASSERT_THROW(tmp.ReadRange(s, 50, 10, true), OrthancException); |
52166629239f
SystemToolbox::ReadFileRange()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4330
diff
changeset
|
1424 ASSERT_THROW(tmp.ReadRange(s, 2, 1, true), OrthancException); |
52166629239f
SystemToolbox::ReadFileRange()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4330
diff
changeset
|
1425 } |
52166629239f
SystemToolbox::ReadFileRange()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4330
diff
changeset
|
1426 #endif |
4538
8a7523da6a9b
added SystemToolbox::GetMacAddresses()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4437
diff
changeset
|
1427 |
8a7523da6a9b
added SystemToolbox::GetMacAddresses()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4437
diff
changeset
|
1428 |
8a7523da6a9b
added SystemToolbox::GetMacAddresses()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4437
diff
changeset
|
1429 #if ORTHANC_SANDBOXED != 1 |
8a7523da6a9b
added SystemToolbox::GetMacAddresses()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4437
diff
changeset
|
1430 TEST(Toolbox, GetMacAddressess) |
8a7523da6a9b
added SystemToolbox::GetMacAddresses()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4437
diff
changeset
|
1431 { |
8a7523da6a9b
added SystemToolbox::GetMacAddresses()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4437
diff
changeset
|
1432 std::set<std::string> mac; |
8a7523da6a9b
added SystemToolbox::GetMacAddresses()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4437
diff
changeset
|
1433 SystemToolbox::GetMacAddresses(mac); |
8a7523da6a9b
added SystemToolbox::GetMacAddresses()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4437
diff
changeset
|
1434 |
8a7523da6a9b
added SystemToolbox::GetMacAddresses()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4437
diff
changeset
|
1435 for (std::set<std::string>::const_iterator it = mac.begin(); it != mac.end(); ++it) |
8a7523da6a9b
added SystemToolbox::GetMacAddresses()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4437
diff
changeset
|
1436 { |
8a7523da6a9b
added SystemToolbox::GetMacAddresses()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4437
diff
changeset
|
1437 printf("MAC address: [%s]\n", it->c_str()); |
8a7523da6a9b
added SystemToolbox::GetMacAddresses()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4437
diff
changeset
|
1438 } |
8a7523da6a9b
added SystemToolbox::GetMacAddresses()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4437
diff
changeset
|
1439 } |
8a7523da6a9b
added SystemToolbox::GetMacAddresses()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4437
diff
changeset
|
1440 #endif |