123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- // Copyright (C) 2012-2013 Internet Systems Consortium, Inc. ("ISC")
- //
- // Permission to use, copy, modify, and/or distribute this software for any
- // purpose with or without fee is hereby granted, provided that the above
- // copyright notice and this permission notice appear in all copies.
- //
- // THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
- // REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
- // AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
- // INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
- // LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
- // OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- // PERFORMANCE OF THIS SOFTWARE.
- #include <config.h>
- #include <config/ccsession.h>
- #include <dhcp/dhcp4.h>
- #include <dhcp4/ctrl_dhcp4_srv.h>
- #include <hooks/hooks_manager.h>
- #include "marker_file.h"
- #include "test_libraries.h"
- #include <boost/scoped_ptr.hpp>
- #include <gtest/gtest.h>
- #include <fstream>
- #include <iostream>
- #include <sstream>
- #include <arpa/inet.h>
- #include <unistd.h>
- using namespace std;
- using namespace isc;
- using namespace isc::asiolink;
- using namespace isc::config;
- using namespace isc::data;
- using namespace isc::dhcp;
- using namespace isc::dhcp::test;
- using namespace isc::hooks;
- namespace {
- class NakedControlledDhcpv4Srv: public ControlledDhcpv4Srv {
- // "Naked" DHCPv4 server, exposes internal fields
- public:
- NakedControlledDhcpv4Srv():ControlledDhcpv4Srv(DHCP4_SERVER_PORT + 10000) { }
- };
- class CtrlDhcpv4SrvTest : public ::testing::Test {
- public:
- CtrlDhcpv4SrvTest() {
- reset();
- }
- ~CtrlDhcpv4SrvTest() {
- reset();
- };
- /// @brief Reset hooks data
- ///
- /// Resets the data for the hooks-related portion of the test by ensuring
- /// that no libraries are loaded and that any marker files are deleted.
- void reset() {
- // Unload any previously-loaded libraries.
- HooksManager::unloadLibraries();
- // Get rid of any marker files.
- static_cast<void>(unlink(LOAD_MARKER_FILE));
- static_cast<void>(unlink(UNLOAD_MARKER_FILE));
- }
- };
- TEST_F(CtrlDhcpv4SrvTest, commands) {
- boost::scoped_ptr<ControlledDhcpv4Srv> srv;
- ASSERT_NO_THROW(
- srv.reset(new ControlledDhcpv4Srv(DHCP4_SERVER_PORT + 10000))
- );
- // Use empty parameters list
- ElementPtr params(new isc::data::MapElement());
- int rcode = -1;
- // Case 1: send bogus command
- ConstElementPtr result = ControlledDhcpv4Srv::execDhcpv4ServerCommand("blah", params);
- ConstElementPtr comment = parseAnswer(rcode, result);
- EXPECT_EQ(1, rcode); // expect failure (no such command as blah)
- // Case 2: send shutdown command without any parameters
- result = ControlledDhcpv4Srv::execDhcpv4ServerCommand("shutdown", params);
- comment = parseAnswer(rcode, result);
- EXPECT_EQ(0, rcode); // expect success
- const pid_t pid(getpid());
- ConstElementPtr x(new isc::data::IntElement(pid));
- params->set("pid", x);
- // Case 3: send shutdown command with 1 parameter: pid
- result = ControlledDhcpv4Srv::execDhcpv4ServerCommand("shutdown", params);
- comment = parseAnswer(rcode, result);
- EXPECT_EQ(0, rcode); // expect success
- }
- // Check that the "libreload" command will reload libraries
- TEST_F(CtrlDhcpv4SrvTest, libreload) {
- // Ensure no marker files to start with.
- ASSERT_FALSE(checkMarkerFileExists(LOAD_MARKER_FILE));
- ASSERT_FALSE(checkMarkerFileExists(UNLOAD_MARKER_FILE));
- // Load two libraries
- std::vector<std::string> libraries;
- libraries.push_back(CALLOUT_LIBRARY_1);
- libraries.push_back(CALLOUT_LIBRARY_2);
- HooksManager::loadLibraries(libraries);
- // Check they are loaded.
- std::vector<std::string> loaded_libraries =
- HooksManager::getLibraryNames();
- ASSERT_TRUE(libraries == loaded_libraries);
- // ... which also included checking that the marker file created by the
- // load functions exists and holds the correct value (of "12" - the
- // first library appends "1" to the file, the second appends "2"). Also
- // check that the unload marker file does not yet exist.
- EXPECT_TRUE(checkMarkerFile(LOAD_MARKER_FILE, "12"));
- EXPECT_FALSE(checkMarkerFileExists(UNLOAD_MARKER_FILE));
- // Now execute the "libreload" command. This should cause the libraries
- // to unload and to reload.
- // Use empty parameters list
- ElementPtr params(new isc::data::MapElement());
- int rcode = -1;
- ConstElementPtr result =
- ControlledDhcpv4Srv::execDhcpv4ServerCommand("libreload", params);
- ConstElementPtr comment = parseAnswer(rcode, result);
- EXPECT_EQ(0, rcode); // Expect success
- // Check that the libraries have unloaded and reloaded. The libraries are
- // unloaded in the reverse order to which they are loaded. When they load,
- // they should append information to the loading marker file.
- EXPECT_TRUE(checkMarkerFile(UNLOAD_MARKER_FILE, "21"));
- EXPECT_TRUE(checkMarkerFile(LOAD_MARKER_FILE, "1212"));
- }
- } // End of anonymous namespace
|