-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathLoadTest.cpp
81 lines (62 loc) · 2.32 KB
/
LoadTest.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/** @file
@brief Test Implementation
@date 2014
@author
Ryan Pavlik
<ryan@sensics.com>
<http://sensics.com>
*/
// Copyright 2014 Sensics, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Internal Includes
#include <libfunctionality/LoadPlugin.h>
#include <libfunctionality/PluginInterface.h>
// Library/third-party includes
#include "gtest/gtest.h"
// Standard includes
#include <string>
using std::string;
// loading from the global symbol table is only implemented currently in the libdl path
// @todo implement global symbol table plugin loading in the win32 path and remove this ifdef
#ifdef LIBFUNC_DL_LIBDL
LIBFUNC_PLUGIN_NO_PARAM(com_sensics_libfunc_tests_staticplugin) {
return LIBFUNC_RETURN_SUCCESS;
}
TEST(load_static_plugin, load_from_global) {
ASSERT_NO_THROW((libfunc::loadPluginByName("com_sensics_libfunc_tests_staticplugin", NULL)));
}
#endif
TEST(load_dummy_plugin, cstr_name_null_data) {
ASSERT_NO_THROW((libfunc::loadPluginByName("DummyPlugin", NULL)));
}
TEST(load_dummy_plugin, string_name_null_data) {
ASSERT_NO_THROW((libfunc::loadPluginByName(string("DummyPlugin"), NULL)));
}
TEST(load_dummy_plugin, cstr_name_no_data) {
ASSERT_NO_THROW((libfunc::loadPluginByName("DummyPlugin")));
}
TEST(load_dummy_plugin, string_name_no_data) {
ASSERT_NO_THROW((libfunc::loadPluginByName(string("DummyPlugin"))));
}
const int orignum = 5;
TEST(load_dummy_plugin, cstr_name_int_data) {
int num = orignum;
ASSERT_NO_THROW((libfunc::loadPluginByName("DummyPlugin", &num)));
ASSERT_EQ(orignum, num) << "This plugin shouldn't modify the data";
}
TEST(load_dummy_plugin, string_name_int_data) {
int num = orignum;
ASSERT_NO_THROW((libfunc::loadPluginByName(string("DummyPlugin"), &num)));
ASSERT_EQ(orignum, num) << "This plugin shouldn't modify the data";
}