Mercurial > hg > orthanc
annotate UnitTestsSources/PluginsTests.cpp @ 2366:26f3a346226f
more consistent handling of libiconv in cmake
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Mon, 21 Aug 2017 21:21:48 +0200 |
parents | ae50eccd41b7 |
children | 878b59270859 |
rev | line source |
---|---|
885 | 1 /** |
2 * Orthanc - A Lightweight, RESTful DICOM Store | |
1900 | 3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics |
1288
6e7e5ed91c2d
upgrade to year 2015
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1032
diff
changeset
|
4 * Department, University Hospital of Liege, Belgium |
2244
a3a65de1840f
shared copyright with osimis
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2136
diff
changeset
|
5 * Copyright (C) 2017 Osimis, Belgium |
885 | 6 * |
7 * This program is free software: you can redistribute it and/or | |
8 * modify it under the terms of the GNU General Public License as | |
9 * published by the Free Software Foundation, either version 3 of the | |
10 * License, or (at your option) any later version. | |
11 * | |
12 * In addition, as a special exception, the copyright holders of this | |
13 * program give permission to link the code of its release with the | |
14 * OpenSSL project's "OpenSSL" library (or with modified versions of it | |
15 * that use the same license as the "OpenSSL" library), and distribute | |
16 * the linked executables. You must obey the GNU General Public License | |
17 * in all respects for all of the code used other than "OpenSSL". If you | |
18 * modify file(s) with this exception, you may extend this exception to | |
19 * your version of the file(s), but you are not obligated to do so. If | |
20 * you do not wish to do so, delete this exception statement from your | |
21 * version. If you delete this exception statement from all source files | |
22 * in the program, then also delete it here. | |
23 * | |
24 * This program is distributed in the hope that it will be useful, but | |
25 * WITHOUT ANY WARRANTY; without even the implied warranty of | |
26 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
27 * General Public License for more details. | |
28 * | |
29 * You should have received a copy of the GNU General Public License | |
30 * along with this program. If not, see <http://www.gnu.org/licenses/>. | |
31 **/ | |
32 | |
33 | |
34 #include "PrecompiledHeadersUnitTests.h" | |
35 #include "gtest/gtest.h" | |
36 | |
887 | 37 #include "../Plugins/Engine/PluginsManager.h" |
885 | 38 |
39 using namespace Orthanc; | |
40 | |
1578 | 41 |
2136
dd609a99d39a
uniformization of the macro naming
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1976
diff
changeset
|
42 #if ORTHANC_ENABLE_PLUGINS == 1 |
1578 | 43 |
44 TEST(SharedLibrary, Enumerations) | |
45 { | |
46 // The plugin engine cannot work if the size of an enumeration does | |
47 // not correspond to the size of "int32_t" | |
48 ASSERT_EQ(sizeof(int32_t), sizeof(OrthancPluginErrorCode)); | |
49 } | |
50 | |
51 | |
885 | 52 TEST(SharedLibrary, Basic) |
53 { | |
54 #if defined(_WIN32) | |
893
f57802f8b4dc
plugins for windows
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
888
diff
changeset
|
55 SharedLibrary l("kernel32.dll"); |
f57802f8b4dc
plugins for windows
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
888
diff
changeset
|
56 ASSERT_THROW(l.GetFunction("world"), OrthancException); |
f57802f8b4dc
plugins for windows
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
888
diff
changeset
|
57 ASSERT_TRUE(l.GetFunction("GetVersionExW") != NULL); |
f57802f8b4dc
plugins for windows
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
888
diff
changeset
|
58 ASSERT_TRUE(l.HasFunction("GetVersionExW")); |
f57802f8b4dc
plugins for windows
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
888
diff
changeset
|
59 ASSERT_FALSE(l.HasFunction("world")); |
885 | 60 |
1976
325772dadcd6
Macro "__linux" (now obsolete) replaced by macro "__linux__"
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1900
diff
changeset
|
61 #elif defined(__linux__) || defined(__FreeBSD_kernel__) |
885 | 62 SharedLibrary l("libdl.so"); |
63 ASSERT_THROW(l.GetFunction("world"), OrthancException); | |
64 ASSERT_TRUE(l.GetFunction("dlopen") != NULL); | |
65 ASSERT_TRUE(l.HasFunction("dlclose")); | |
66 ASSERT_FALSE(l.HasFunction("world")); | |
67 | |
2364 | 68 #elif defined(__FreeBSD__) || defined(__OpenBSD__) |
69 // dlopen() in FreeBSD/OpenBSD is supplied by libc, libc.so is | |
1337 | 70 // a ldscript, so we can't actually use it. Use thread |
71 // library instead - if it works - dlopen() is good. | |
72 SharedLibrary l("libpthread.so"); | |
73 ASSERT_THROW(l.GetFunction("world"), OrthancException); | |
74 ASSERT_TRUE(l.GetFunction("pthread_create") != NULL); | |
75 ASSERT_TRUE(l.HasFunction("pthread_cancel")); | |
76 ASSERT_FALSE(l.HasFunction("world")); | |
77 | |
1026 | 78 #elif defined(__APPLE__) && defined(__MACH__) |
79 SharedLibrary l("libdl.dylib"); | |
80 ASSERT_THROW(l.GetFunction("world"), OrthancException); | |
81 ASSERT_TRUE(l.GetFunction("dlopen") != NULL); | |
82 ASSERT_TRUE(l.HasFunction("dlclose")); | |
83 ASSERT_FALSE(l.HasFunction("world")); | |
84 | |
885 | 85 #else |
86 #error Support your platform here | |
87 #endif | |
88 } | |
1578 | 89 |
90 #endif |