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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116 | // Copyright (C) 2018-2024 Internet Systems Consortium, Inc. ("ISC")
//
// This Source Code Form is subject to the terms of the Kea Hooks Basic
// Commercial End User License Agreement v2.0. See COPYING file in the premium/
// directory.
/// @file This file contains tests which exercise the load and unload
/// functions in the Host Cache hooks library. In order to test the load
/// function, one must be able to pass it hook library parameters. The
/// the only way to populate these parameters is by actually loading the
/// library via HooksManager::loadLibraries().
#include <config.h>
#include <config/command_mgr.h>
#include <dhcpsrv/testutils/lib_load_test_fixture.h>
#include <testutils/gtest_utils.h>
#include <gtest/gtest.h><--- Include file: not found. Please note: Cppcheck does not need standard library headers to get proper results.
#include <errno.h><--- Include file: not found. Please note: Cppcheck does not need standard library headers to get proper results.
using namespace std;
using namespace isc;
using namespace hooks;
using namespace isc::config;
using namespace isc::data;
using namespace isc::dhcp;
using namespace isc::process;
namespace {
/// @brief Test fixture for testing loading and unloading the
/// host-cache library
class HostCacheLibLoadTest : public isc::test::LibLoadTest {
public:
/// @brief Constructor
HostCacheLibLoadTest() : LibLoadTest(LIB_SO) {
}
/// @brief Destructor
virtual ~HostCacheLibLoadTest() {
}
};
// Simple test that checks the library can be loaded and unloaded several times.
TEST_F(HostCacheLibLoadTest, validLoad) {<--- syntax error
validDaemonTest("kea-dhcp4", AF_INET);
validDaemonTest("kea-dhcp6", AF_INET6);
}
// Simple test that checks the library cannot by loaded by invalid daemons.
TEST_F(HostCacheLibLoadTest, invalidDaemonLoad) {
// V4 is invalid when family is AF_INET6
invalidDaemonTest("kea-dhcp4", AF_INET6, valid_params_);
// V6 is invalid when family is AF_INET
invalidDaemonTest("kea-dhcp6", AF_INET, valid_params_);
invalidDaemonTest("kea-ctrl-agent", AF_INET, valid_params_);
invalidDaemonTest("kea-dhcp-ddns", AF_INET, valid_params_);
invalidDaemonTest("bogus", AF_INET, valid_params_);
}
// Check that expected commands are registered (v4).
TEST_F(HostCacheLibLoadTest, commands4) {
CfgMgr::instance().setFamily(AF_INET);
Daemon::setProcName("kea-dhcp4");
addLibrary(LIB_SO, ConstElementPtr());
EXPECT_TRUE(loadLibraries());
// Prepare and send a list-commands to get the list of registered commands.
ConstElementPtr cmd =
Element::fromJSON("{ \"command\": \"list-commands\" }");
ConstElementPtr rsp = CommandMgr::instance().processCommand(cmd);
ASSERT_TRUE(rsp);
ConstElementPtr args = rsp->get("arguments");
ASSERT_TRUE(args);
string args_txt = args->str();
EXPECT_NE(string::npos, args_txt.find("cache-size"));
EXPECT_NE(string::npos, args_txt.find("cache-clear"));
EXPECT_NE(string::npos, args_txt.find("cache-flush"));
EXPECT_NE(string::npos, args_txt.find("cache-get"));
EXPECT_NE(string::npos, args_txt.find("cache-get-by-id"));
EXPECT_NE(string::npos, args_txt.find("cache-write"));
EXPECT_NE(string::npos, args_txt.find("cache-insert"));
EXPECT_NE(string::npos, args_txt.find("cache-load"));
EXPECT_NE(string::npos, args_txt.find("cache-remove"));
}
// Check that expected commands are registered (v6).
TEST_F(HostCacheLibLoadTest, commands6) {
CfgMgr::instance().setFamily(AF_INET6);
Daemon::setProcName("kea-dhcp6");
addLibrary(LIB_SO, ConstElementPtr());
EXPECT_TRUE(loadLibraries());
// Prepare and send a list-commands to get the list of registered commands.
ConstElementPtr cmd =
Element::fromJSON("{ \"command\": \"list-commands\" }");
ConstElementPtr rsp = CommandMgr::instance().processCommand(cmd);
ASSERT_TRUE(rsp);
ConstElementPtr args = rsp->get("arguments");
ASSERT_TRUE(args);
string args_txt = args->str();
EXPECT_NE(string::npos, args_txt.find("cache-size"));
EXPECT_NE(string::npos, args_txt.find("cache-clear"));
EXPECT_NE(string::npos, args_txt.find("cache-flush"));
EXPECT_NE(string::npos, args_txt.find("cache-get"));
EXPECT_NE(string::npos, args_txt.find("cache-get-by-id"));
EXPECT_NE(string::npos, args_txt.find("cache-write"));
EXPECT_NE(string::npos, args_txt.find("cache-insert"));
EXPECT_NE(string::npos, args_txt.find("cache-load"));
EXPECT_NE(string::npos, args_txt.find("cache-remove"));
}
} // end of anonymous namespace
|