|
@@ -24,8 +24,10 @@
|
|
#include <dhcp/option6_ia.h>
|
|
#include <dhcp/option6_ia.h>
|
|
#include <dhcp/option6_iaaddr.h>
|
|
#include <dhcp/option6_iaaddr.h>
|
|
#include <dhcp/option_int_array.h>
|
|
#include <dhcp/option_int_array.h>
|
|
|
|
+#include <dhcp/iface_mgr.h>
|
|
#include <dhcp6/config_parser.h>
|
|
#include <dhcp6/config_parser.h>
|
|
#include <dhcp6/dhcp6_srv.h>
|
|
#include <dhcp6/dhcp6_srv.h>
|
|
|
|
+#include <dhcp/dhcp6.h>
|
|
#include <dhcpsrv/cfgmgr.h>
|
|
#include <dhcpsrv/cfgmgr.h>
|
|
#include <dhcpsrv/lease_mgr.h>
|
|
#include <dhcpsrv/lease_mgr.h>
|
|
#include <dhcpsrv/lease_mgr_factory.h>
|
|
#include <dhcpsrv/lease_mgr_factory.h>
|
|
@@ -33,12 +35,16 @@
|
|
#include <util/buffer.h>
|
|
#include <util/buffer.h>
|
|
#include <util/range_utilities.h>
|
|
#include <util/range_utilities.h>
|
|
|
|
|
|
|
|
+#include <hooks/server_hooks.h>
|
|
|
|
+#include <hooks/hooks_manager.h>
|
|
|
|
+
|
|
#include <boost/scoped_ptr.hpp>
|
|
#include <boost/scoped_ptr.hpp>
|
|
#include <gtest/gtest.h>
|
|
#include <gtest/gtest.h>
|
|
#include <unistd.h>
|
|
#include <unistd.h>
|
|
#include <fstream>
|
|
#include <fstream>
|
|
#include <iostream>
|
|
#include <iostream>
|
|
#include <sstream>
|
|
#include <sstream>
|
|
|
|
+#include <list>
|
|
|
|
|
|
using namespace isc;
|
|
using namespace isc;
|
|
using namespace isc::asiolink;
|
|
using namespace isc::asiolink;
|
|
@@ -46,6 +52,7 @@ using namespace isc::config;
|
|
using namespace isc::data;
|
|
using namespace isc::data;
|
|
using namespace isc::dhcp;
|
|
using namespace isc::dhcp;
|
|
using namespace isc::util;
|
|
using namespace isc::util;
|
|
|
|
+using namespace isc::hooks;
|
|
using namespace std;
|
|
using namespace std;
|
|
|
|
|
|
// namespace has to be named, because friends are defined in Dhcpv6Srv class
|
|
// namespace has to be named, because friends are defined in Dhcpv6Srv class
|
|
@@ -61,6 +68,46 @@ public:
|
|
LeaseMgrFactory::create(memfile);
|
|
LeaseMgrFactory::create(memfile);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /// @brief fakes packet reception
|
|
|
|
+ /// @param timeout ignored
|
|
|
|
+ ///
|
|
|
|
+ /// The method receives all packets queued in receive
|
|
|
|
+ /// queue, one after another. Once the queue is empty,
|
|
|
|
+ /// it initiates the shutdown procedure.
|
|
|
|
+ ///
|
|
|
|
+ /// See fake_received_ field for description
|
|
|
|
+ virtual Pkt6Ptr receivePacket(int /*timeout*/) {
|
|
|
|
+
|
|
|
|
+ // If there is anything prepared as fake incoming
|
|
|
|
+ // traffic, use it
|
|
|
|
+ if (!fake_received_.empty()) {
|
|
|
|
+ Pkt6Ptr pkt = fake_received_.front();
|
|
|
|
+ fake_received_.pop_front();
|
|
|
|
+ return (pkt);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ // If not, just trigger shutdown and
|
|
|
|
+ // return immediately
|
|
|
|
+ shutdown();
|
|
|
|
+ return (Pkt6Ptr());
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /// @brief fake packet sending
|
|
|
|
+ ///
|
|
|
|
+ /// Pretend to send a packet, but instead just store
|
|
|
|
+ /// it in fake_send_ list where test can later inspect
|
|
|
|
+ /// server's response.
|
|
|
|
+ virtual void sendPacket(const Pkt6Ptr& pkt) {
|
|
|
|
+ fake_sent_.push_back(pkt);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /// @brief adds a packet to fake receive queue
|
|
|
|
+ ///
|
|
|
|
+ /// See fake_received_ field for description
|
|
|
|
+ void fakeReceive(const Pkt6Ptr& pkt) {
|
|
|
|
+ fake_received_.push_back(pkt);
|
|
|
|
+ }
|
|
|
|
+
|
|
virtual ~NakedDhcpv6Srv() {
|
|
virtual ~NakedDhcpv6Srv() {
|
|
// Close the lease database
|
|
// Close the lease database
|
|
LeaseMgrFactory::destroy();
|
|
LeaseMgrFactory::destroy();
|
|
@@ -75,6 +122,16 @@ public:
|
|
using Dhcpv6Srv::sanityCheck;
|
|
using Dhcpv6Srv::sanityCheck;
|
|
using Dhcpv6Srv::loadServerID;
|
|
using Dhcpv6Srv::loadServerID;
|
|
using Dhcpv6Srv::writeServerID;
|
|
using Dhcpv6Srv::writeServerID;
|
|
|
|
+
|
|
|
|
+ /// @brief packets we pretend to receive
|
|
|
|
+ ///
|
|
|
|
+ /// Instead of setting up sockets on interfaces that change between OSes, it
|
|
|
|
+ /// is much easier to fake packet reception. This is a list of packets that
|
|
|
|
+ /// we pretend to have received. You can schedule new packets to be received
|
|
|
|
+ /// using fakeReceive() and NakedDhcpv6Srv::receivePacket() methods.
|
|
|
|
+ list<Pkt6Ptr> fake_received_;
|
|
|
|
+
|
|
|
|
+ list<Pkt6Ptr> fake_sent_;
|
|
};
|
|
};
|
|
|
|
|
|
static const char* DUID_FILE = "server-id-test.txt";
|
|
static const char* DUID_FILE = "server-id-test.txt";
|
|
@@ -87,6 +144,16 @@ public:
|
|
NakedDhcpv6SrvTest() : rcode_(-1) {
|
|
NakedDhcpv6SrvTest() : rcode_(-1) {
|
|
// it's ok if that fails. There should not be such a file anyway
|
|
// it's ok if that fails. There should not be such a file anyway
|
|
unlink(DUID_FILE);
|
|
unlink(DUID_FILE);
|
|
|
|
+
|
|
|
|
+ const IfaceMgr::IfaceCollection& ifaces = IfaceMgr::instance().getIfaces();
|
|
|
|
+
|
|
|
|
+ // There must be some interface detected
|
|
|
|
+ if (ifaces.empty()) {
|
|
|
|
+ // We can't use ASSERT in constructor
|
|
|
|
+ ADD_FAILURE() << "No interfaces detected.";
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ valid_iface_ = ifaces.begin()->getName();
|
|
}
|
|
}
|
|
|
|
|
|
// Generate IA_NA option with specified parameters
|
|
// Generate IA_NA option with specified parameters
|
|
@@ -228,6 +295,13 @@ public:
|
|
virtual ~NakedDhcpv6SrvTest() {
|
|
virtual ~NakedDhcpv6SrvTest() {
|
|
// Let's clean up if there is such a file.
|
|
// Let's clean up if there is such a file.
|
|
unlink(DUID_FILE);
|
|
unlink(DUID_FILE);
|
|
|
|
+ HooksManager::preCalloutsLibraryHandle().deregisterAllCallouts(
|
|
|
|
+ "pkt6_receive");
|
|
|
|
+ HooksManager::preCalloutsLibraryHandle().deregisterAllCallouts(
|
|
|
|
+ "pkt6_send");
|
|
|
|
+ HooksManager::preCalloutsLibraryHandle().deregisterAllCallouts(
|
|
|
|
+ "subnet6_select");
|
|
|
|
+
|
|
};
|
|
};
|
|
|
|
|
|
// A DUID used in most tests (typically as client-id)
|
|
// A DUID used in most tests (typically as client-id)
|
|
@@ -235,6 +309,9 @@ public:
|
|
|
|
|
|
int rcode_;
|
|
int rcode_;
|
|
ConstElementPtr comment_;
|
|
ConstElementPtr comment_;
|
|
|
|
+
|
|
|
|
+ // Name of a valid network interface
|
|
|
|
+ string valid_iface_;
|
|
};
|
|
};
|
|
|
|
|
|
// Provides suport for tests against a preconfigured subnet6
|
|
// Provides suport for tests against a preconfigured subnet6
|
|
@@ -480,7 +557,7 @@ TEST_F(Dhcpv6SrvTest, DUID) {
|
|
|
|
|
|
boost::scoped_ptr<Dhcpv6Srv> srv;
|
|
boost::scoped_ptr<Dhcpv6Srv> srv;
|
|
ASSERT_NO_THROW( {
|
|
ASSERT_NO_THROW( {
|
|
- srv.reset(new Dhcpv6Srv(0));
|
|
|
|
|
|
+ srv.reset(new NakedDhcpv6Srv(0));
|
|
});
|
|
});
|
|
|
|
|
|
OptionPtr srvid = srv->getServerID();
|
|
OptionPtr srvid = srv->getServerID();
|
|
@@ -1756,6 +1833,709 @@ TEST_F(Dhcpv6SrvTest, ServerID) {
|
|
EXPECT_EQ(duid1_text, text);
|
|
EXPECT_EQ(duid1_text, text);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+// Checks if hooks are implemented properly.
|
|
|
|
+TEST_F(Dhcpv6SrvTest, Hooks) {
|
|
|
|
+ NakedDhcpv6Srv srv(0);
|
|
|
|
+
|
|
|
|
+ // check if appropriate hooks are registered
|
|
|
|
+ int hook_index_pkt6_received = -1;
|
|
|
|
+ int hook_index_select_subnet = -1;
|
|
|
|
+ int hook_index_pkt6_send = -1;
|
|
|
|
+
|
|
|
|
+ // check if appropriate indexes are set
|
|
|
|
+ EXPECT_NO_THROW(hook_index_pkt6_received = ServerHooks::getServerHooks()
|
|
|
|
+ .getIndex("pkt6_receive"));
|
|
|
|
+ EXPECT_NO_THROW(hook_index_select_subnet = ServerHooks::getServerHooks()
|
|
|
|
+ .getIndex("subnet6_select"));
|
|
|
|
+ EXPECT_NO_THROW(hook_index_pkt6_send = ServerHooks::getServerHooks()
|
|
|
|
+ .getIndex("pkt6_send"));
|
|
|
|
+
|
|
|
|
+ EXPECT_TRUE(hook_index_pkt6_received > 0);
|
|
|
|
+ EXPECT_TRUE(hook_index_select_subnet > 0);
|
|
|
|
+ EXPECT_TRUE(hook_index_pkt6_send > 0);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// This function returns buffer for empty packet (just DHCPv6 header)
|
|
|
|
+Pkt6* captureEmpty() {
|
|
|
|
+ Pkt6* pkt;
|
|
|
|
+ uint8_t data[4];
|
|
|
|
+ data[0] = 1; // type 1 = SOLICIT
|
|
|
|
+ data[1] = 0xca; // trans-id = 0xcafe01
|
|
|
|
+ data[2] = 0xfe;
|
|
|
|
+ data[3] = 0x01;
|
|
|
|
+
|
|
|
|
+ pkt = new Pkt6(data, sizeof(data));
|
|
|
|
+ pkt->setRemotePort(546);
|
|
|
|
+ pkt->setRemoteAddr(IOAddress("fe80::1"));
|
|
|
|
+ pkt->setLocalPort(0);
|
|
|
|
+ pkt->setLocalAddr(IOAddress("ff02::1:2"));
|
|
|
|
+ pkt->setIndex(2);
|
|
|
|
+ pkt->setIface("eth0");
|
|
|
|
+
|
|
|
|
+ return (pkt);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// This function returns buffer for very simple Solicit
|
|
|
|
+Pkt6* captureSimpleSolicit() {
|
|
|
|
+ Pkt6* pkt;
|
|
|
|
+ uint8_t data[] = {
|
|
|
|
+ 1, // type 1 = SOLICIT
|
|
|
|
+ 0xca, 0xfe, 0x01, // trans-id = 0xcafe01
|
|
|
|
+ 0, 1, // option type 1 (client-id)
|
|
|
|
+ 0, 10, // option lenth 10
|
|
|
|
+ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, // DUID
|
|
|
|
+ 0, 3, // option type 3 (IA_NA)
|
|
|
|
+ 0, 12, // option length 12
|
|
|
|
+ 0, 0, 0, 1, // iaid = 1
|
|
|
|
+ 0, 0, 0, 0, // T1 = 0
|
|
|
|
+ 0, 0, 0, 0 // T2 = 0
|
|
|
|
+ };
|
|
|
|
+
|
|
|
|
+ pkt = new Pkt6(data, sizeof(data));
|
|
|
|
+ pkt->setRemotePort(546);
|
|
|
|
+ pkt->setRemoteAddr(IOAddress("fe80::1"));
|
|
|
|
+ pkt->setLocalPort(0);
|
|
|
|
+ pkt->setLocalAddr(IOAddress("ff02::1:2"));
|
|
|
|
+ pkt->setIndex(2);
|
|
|
|
+ pkt->setIface("eth0");
|
|
|
|
+
|
|
|
|
+ return (pkt);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+/// @brief a class dedicated to Hooks testing in DHCPv6 server
|
|
|
|
+///
|
|
|
|
+/// This class has a number of static members, because each non-static
|
|
|
|
+/// method has implicit 'this' parameter, so it does not match callout
|
|
|
|
+/// signature and couldn't be registered. Furthermore, static methods
|
|
|
|
+/// can't modify non-static members (for obvious reasons), so many
|
|
|
|
+/// fields are declared static. It is still better to keep them as
|
|
|
|
+/// one class rather than unrelated collection of global objects.
|
|
|
|
+class HooksDhcpv6SrvTest : public Dhcpv6SrvTest {
|
|
|
|
+
|
|
|
|
+public:
|
|
|
|
+
|
|
|
|
+ /// @brief creates Dhcpv6Srv and prepares buffers for callouts
|
|
|
|
+ HooksDhcpv6SrvTest() {
|
|
|
|
+
|
|
|
|
+ // Allocate new DHCPv6 Server
|
|
|
|
+ srv_ = new NakedDhcpv6Srv(0);
|
|
|
|
+
|
|
|
|
+ // clear static buffers
|
|
|
|
+ resetCalloutBuffers();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /// @brief destructor (deletes Dhcpv6Srv)
|
|
|
|
+ ~HooksDhcpv6SrvTest() {
|
|
|
|
+ delete srv_;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /// @brief creates an option with specified option code
|
|
|
|
+ ///
|
|
|
|
+ /// This method is static, because it is used from callouts
|
|
|
|
+ /// that do not have a pointer to HooksDhcpv6SSrvTest object
|
|
|
|
+ ///
|
|
|
|
+ /// @param option_code code of option to be created
|
|
|
|
+ ///
|
|
|
|
+ /// @return pointer to create option object
|
|
|
|
+ static OptionPtr createOption(uint16_t option_code) {
|
|
|
|
+
|
|
|
|
+ char payload[] = {
|
|
|
|
+ 0xa, 0xb, 0xc, 0xe, 0xf, 0x10, 0x11, 0x12, 0x13, 0x14
|
|
|
|
+ };
|
|
|
|
+
|
|
|
|
+ OptionBuffer tmp(payload, payload + sizeof(payload));
|
|
|
|
+ return OptionPtr(new Option(Option::V6, option_code, tmp));
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /// test callback that stores received callout name and pkt6 value
|
|
|
|
+ /// @param callout_handle handle passed by the hooks framework
|
|
|
|
+ /// @return always 0
|
|
|
|
+ static int
|
|
|
|
+ pkt6_receive_callout(CalloutHandle& callout_handle) {
|
|
|
|
+ callback_name_ = string("pkt6_receive");
|
|
|
|
+
|
|
|
|
+ callout_handle.getArgument("query6", callback_pkt6_);
|
|
|
|
+
|
|
|
|
+ callback_argument_names_ = callout_handle.getArgumentNames();
|
|
|
|
+ return (0);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /// test callback that changes client-id value
|
|
|
|
+ /// @param callout_handle handle passed by the hooks framework
|
|
|
|
+ /// @return always 0
|
|
|
|
+ static int
|
|
|
|
+ pkt6_receive_change_clientid(CalloutHandle& callout_handle) {
|
|
|
|
+
|
|
|
|
+ Pkt6Ptr pkt;
|
|
|
|
+ callout_handle.getArgument("query6", pkt);
|
|
|
|
+
|
|
|
|
+ // get rid of the old client-id
|
|
|
|
+ pkt->delOption(D6O_CLIENTID);
|
|
|
|
+
|
|
|
|
+ // add a new option
|
|
|
|
+ pkt->addOption(createOption(D6O_CLIENTID));
|
|
|
|
+
|
|
|
|
+ // carry on as usual
|
|
|
|
+ return pkt6_receive_callout(callout_handle);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /// test callback that deletes client-id
|
|
|
|
+ /// @param callout_handle handle passed by the hooks framework
|
|
|
|
+ /// @return always 0
|
|
|
|
+ static int
|
|
|
|
+ pkt6_receive_delete_clientid(CalloutHandle& callout_handle) {
|
|
|
|
+
|
|
|
|
+ Pkt6Ptr pkt;
|
|
|
|
+ callout_handle.getArgument("query6", pkt);
|
|
|
|
+
|
|
|
|
+ // get rid of the old client-id
|
|
|
|
+ pkt->delOption(D6O_CLIENTID);
|
|
|
|
+
|
|
|
|
+ // carry on as usual
|
|
|
|
+ return pkt6_receive_callout(callout_handle);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /// test callback that sets skip flag
|
|
|
|
+ /// @param callout_handle handle passed by the hooks framework
|
|
|
|
+ /// @return always 0
|
|
|
|
+ static int
|
|
|
|
+ pkt6_receive_skip(CalloutHandle& callout_handle) {
|
|
|
|
+
|
|
|
|
+ Pkt6Ptr pkt;
|
|
|
|
+ callout_handle.getArgument("query6", pkt);
|
|
|
|
+
|
|
|
|
+ callout_handle.setSkip(true);
|
|
|
|
+
|
|
|
|
+ // carry on as usual
|
|
|
|
+ return pkt6_receive_callout(callout_handle);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /// Test callback that stores received callout name and pkt6 value
|
|
|
|
+ /// @param callout_handle handle passed by the hooks framework
|
|
|
|
+ /// @return always 0
|
|
|
|
+ static int
|
|
|
|
+ pkt6_send_callout(CalloutHandle& callout_handle) {
|
|
|
|
+ callback_name_ = string("pkt6_send");
|
|
|
|
+
|
|
|
|
+ callout_handle.getArgument("response6", callback_pkt6_);
|
|
|
|
+
|
|
|
|
+ callback_argument_names_ = callout_handle.getArgumentNames();
|
|
|
|
+ return (0);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ // Test callback that changes server-id
|
|
|
|
+ /// @param callout_handle handle passed by the hooks framework
|
|
|
|
+ /// @return always 0
|
|
|
|
+ static int
|
|
|
|
+ pkt6_send_change_serverid(CalloutHandle& callout_handle) {
|
|
|
|
+
|
|
|
|
+ Pkt6Ptr pkt;
|
|
|
|
+ callout_handle.getArgument("response6", pkt);
|
|
|
|
+
|
|
|
|
+ // get rid of the old server-id
|
|
|
|
+ pkt->delOption(D6O_SERVERID);
|
|
|
|
+
|
|
|
|
+ // add a new option
|
|
|
|
+ pkt->addOption(createOption(D6O_SERVERID));
|
|
|
|
+
|
|
|
|
+ // carry on as usual
|
|
|
|
+ return pkt6_send_callout(callout_handle);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /// test callback that deletes server-id
|
|
|
|
+ /// @param callout_handle handle passed by the hooks framework
|
|
|
|
+ /// @return always 0
|
|
|
|
+ static int
|
|
|
|
+ pkt6_send_delete_serverid(CalloutHandle& callout_handle) {
|
|
|
|
+
|
|
|
|
+ Pkt6Ptr pkt;
|
|
|
|
+ callout_handle.getArgument("response6", pkt);
|
|
|
|
+
|
|
|
|
+ // get rid of the old client-id
|
|
|
|
+ pkt->delOption(D6O_SERVERID);
|
|
|
|
+
|
|
|
|
+ // carry on as usual
|
|
|
|
+ return pkt6_send_callout(callout_handle);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /// Test callback that sets skip flag
|
|
|
|
+ /// @param callout_handle handle passed by the hooks framework
|
|
|
|
+ /// @return always 0
|
|
|
|
+ static int
|
|
|
|
+ pkt6_send_skip(CalloutHandle& callout_handle) {
|
|
|
|
+
|
|
|
|
+ Pkt6Ptr pkt;
|
|
|
|
+ callout_handle.getArgument("response6", pkt);
|
|
|
|
+
|
|
|
|
+ callout_handle.setSkip(true);
|
|
|
|
+
|
|
|
|
+ // carry on as usual
|
|
|
|
+ return pkt6_send_callout(callout_handle);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /// Test callback that stores received callout name and subnet6 values
|
|
|
|
+ /// @param callout_handle handle passed by the hooks framework
|
|
|
|
+ /// @return always 0
|
|
|
|
+ static int
|
|
|
|
+ subnet6_select_callout(CalloutHandle& callout_handle) {
|
|
|
|
+ callback_name_ = string("subnet6_select");
|
|
|
|
+
|
|
|
|
+ callout_handle.getArgument("query6", callback_pkt6_);
|
|
|
|
+ callout_handle.getArgument("subnet6", callback_subnet6_);
|
|
|
|
+ callout_handle.getArgument("subnet6collection", callback_subnet6collection_);
|
|
|
|
+
|
|
|
|
+ callback_argument_names_ = callout_handle.getArgumentNames();
|
|
|
|
+ return (0);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /// Test callback that picks the other subnet if possible.
|
|
|
|
+ /// @param callout_handle handle passed by the hooks framework
|
|
|
|
+ /// @return always 0
|
|
|
|
+ static int
|
|
|
|
+ subnet6_select_different_subnet_callout(CalloutHandle& callout_handle) {
|
|
|
|
+
|
|
|
|
+ // Call the basic calllout to record all passed values
|
|
|
|
+ subnet6_select_callout(callout_handle);
|
|
|
|
+
|
|
|
|
+ const Subnet6Collection* subnets;
|
|
|
|
+ Subnet6Ptr subnet;
|
|
|
|
+ callout_handle.getArgument("subnet6", subnet);
|
|
|
|
+ callout_handle.getArgument("subnet6collection", subnets);
|
|
|
|
+
|
|
|
|
+ // Let's change to a different subnet
|
|
|
|
+ if (subnets->size() > 1) {
|
|
|
|
+ subnet = (*subnets)[1]; // Let's pick the other subnet
|
|
|
|
+ callout_handle.setArgument("subnet6", subnet);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ return (0);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /// resets buffers used to store data received by callouts
|
|
|
|
+ void resetCalloutBuffers() {
|
|
|
|
+ callback_name_ = string("");
|
|
|
|
+ callback_pkt6_.reset();
|
|
|
|
+ callback_subnet6_.reset();
|
|
|
|
+ callback_subnet6collection_ = NULL;
|
|
|
|
+ callback_argument_names_.clear();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /// pointer to Dhcpv6Srv that is used in tests
|
|
|
|
+ NakedDhcpv6Srv* srv_;
|
|
|
|
+
|
|
|
|
+ // The following fields are used in testing pkt6_receive_callout
|
|
|
|
+
|
|
|
|
+ /// String name of the received callout
|
|
|
|
+ static string callback_name_;
|
|
|
|
+
|
|
|
|
+ /// Pkt6 structure returned in the callout
|
|
|
|
+ static Pkt6Ptr callback_pkt6_;
|
|
|
|
+
|
|
|
|
+ /// Pointer to a subnet received by callout
|
|
|
|
+ static Subnet6Ptr callback_subnet6_;
|
|
|
|
+
|
|
|
|
+ /// A list of all available subnets (received by callout)
|
|
|
|
+ static const Subnet6Collection* callback_subnet6collection_;
|
|
|
|
+
|
|
|
|
+ /// A list of all received arguments
|
|
|
|
+ static vector<string> callback_argument_names_;
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+// The following fields are used in testing pkt6_receive_callout.
|
|
|
|
+// See fields description in the class for details
|
|
|
|
+string HooksDhcpv6SrvTest::callback_name_;
|
|
|
|
+Pkt6Ptr HooksDhcpv6SrvTest::callback_pkt6_;
|
|
|
|
+Subnet6Ptr HooksDhcpv6SrvTest::callback_subnet6_;
|
|
|
|
+const Subnet6Collection* HooksDhcpv6SrvTest::callback_subnet6collection_;
|
|
|
|
+vector<string> HooksDhcpv6SrvTest::callback_argument_names_;
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+// Checks if callouts installed on pkt6_received are indeed called and the
|
|
|
|
+// all necessary parameters are passed.
|
|
|
|
+//
|
|
|
|
+// Note that the test name does not follow test naming convention,
|
|
|
|
+// but the proper hook name is "pkt6_receive".
|
|
|
|
+TEST_F(HooksDhcpv6SrvTest, simple_pkt6_receive) {
|
|
|
|
+
|
|
|
|
+ // Install pkt6_receive_callout
|
|
|
|
+ EXPECT_NO_THROW(HooksManager::preCalloutsLibraryHandle().registerCallout(
|
|
|
|
+ "pkt6_receive", pkt6_receive_callout));
|
|
|
|
+
|
|
|
|
+ // Let's create a simple SOLICIT
|
|
|
|
+ Pkt6Ptr sol = Pkt6Ptr(captureSimpleSolicit());
|
|
|
|
+
|
|
|
|
+ // Simulate that we have received that traffic
|
|
|
|
+ srv_->fakeReceive(sol);
|
|
|
|
+
|
|
|
|
+ // Server will now process to run its normal loop, but instead of calling
|
|
|
|
+ // IfaceMgr::receive6(), it will read all packets from the list set by
|
|
|
|
+ // fakeReceive()
|
|
|
|
+ // In particular, it should call registered pkt6_receive callback.
|
|
|
|
+ srv_->run();
|
|
|
|
+
|
|
|
|
+ // check that the callback called is indeed the one we installed
|
|
|
|
+ EXPECT_EQ("pkt6_receive", callback_name_);
|
|
|
|
+
|
|
|
|
+ // check that pkt6 argument passing was successful and returned proper value
|
|
|
|
+ EXPECT_TRUE(callback_pkt6_.get() == sol.get());
|
|
|
|
+
|
|
|
|
+ // Check that all expected parameters are there
|
|
|
|
+ vector<string> expected_argument_names;
|
|
|
|
+ expected_argument_names.push_back(string("query6"));
|
|
|
|
+
|
|
|
|
+ EXPECT_TRUE(expected_argument_names == callback_argument_names_);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// Checks if callouts installed on pkt6_received is able to change
|
|
|
|
+// the values and the parameters are indeed used by the server.
|
|
|
|
+TEST_F(HooksDhcpv6SrvTest, valueChange_pkt6_receive) {
|
|
|
|
+
|
|
|
|
+ // Install pkt6_receive_callout
|
|
|
|
+ EXPECT_NO_THROW(HooksManager::preCalloutsLibraryHandle().registerCallout(
|
|
|
|
+ "pkt6_receive", pkt6_receive_change_clientid));
|
|
|
|
+
|
|
|
|
+ // Let's create a simple SOLICIT
|
|
|
|
+ Pkt6Ptr sol = Pkt6Ptr(captureSimpleSolicit());
|
|
|
|
+
|
|
|
|
+ // Simulate that we have received that traffic
|
|
|
|
+ srv_->fakeReceive(sol);
|
|
|
|
+
|
|
|
|
+ // Server will now process to run its normal loop, but instead of calling
|
|
|
|
+ // IfaceMgr::receive6(), it will read all packets from the list set by
|
|
|
|
+ // fakeReceive()
|
|
|
|
+ // In particular, it should call registered pkt6_receive callback.
|
|
|
|
+ srv_->run();
|
|
|
|
+
|
|
|
|
+ // check that the server did send a reposonce
|
|
|
|
+ ASSERT_EQ(1, srv_->fake_sent_.size());
|
|
|
|
+
|
|
|
|
+ // Make sure that we received a response
|
|
|
|
+ Pkt6Ptr adv = srv_->fake_sent_.front();
|
|
|
|
+ ASSERT_TRUE(adv);
|
|
|
|
+
|
|
|
|
+ // Get client-id...
|
|
|
|
+ OptionPtr clientid = adv->getOption(D6O_CLIENTID);
|
|
|
|
+
|
|
|
|
+ // ... and check if it is the modified value
|
|
|
|
+ OptionPtr expected = createOption(D6O_CLIENTID);
|
|
|
|
+ EXPECT_TRUE(clientid->equal(expected));
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// Checks if callouts installed on pkt6_received is able to delete
|
|
|
|
+// existing options and that change impacts server processing (mandatory
|
|
|
|
+// client-id option is deleted, so the packet is expected to be dropped)
|
|
|
|
+TEST_F(HooksDhcpv6SrvTest, deleteClientId_pkt6_receive) {
|
|
|
|
+
|
|
|
|
+ // Install pkt6_receive_callout
|
|
|
|
+ EXPECT_NO_THROW(HooksManager::preCalloutsLibraryHandle().registerCallout(
|
|
|
|
+ "pkt6_receive", pkt6_receive_delete_clientid));
|
|
|
|
+
|
|
|
|
+ // Let's create a simple SOLICIT
|
|
|
|
+ Pkt6Ptr sol = Pkt6Ptr(captureSimpleSolicit());
|
|
|
|
+
|
|
|
|
+ // Simulate that we have received that traffic
|
|
|
|
+ srv_->fakeReceive(sol);
|
|
|
|
+
|
|
|
|
+ // Server will now process to run its normal loop, but instead of calling
|
|
|
|
+ // IfaceMgr::receive6(), it will read all packets from the list set by
|
|
|
|
+ // fakeReceive()
|
|
|
|
+ // In particular, it should call registered pkt6_receive callback.
|
|
|
|
+ srv_->run();
|
|
|
|
+
|
|
|
|
+ // Check that the server dropped the packet and did not send a response
|
|
|
|
+ ASSERT_EQ(0, srv_->fake_sent_.size());
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// Checks if callouts installed on pkt6_received is able to set skip flag that
|
|
|
|
+// will cause the server to not process the packet (drop), even though it is valid.
|
|
|
|
+TEST_F(HooksDhcpv6SrvTest, skip_pkt6_receive) {
|
|
|
|
+
|
|
|
|
+ // Install pkt6_receive_callout
|
|
|
|
+ EXPECT_NO_THROW(HooksManager::preCalloutsLibraryHandle().registerCallout(
|
|
|
|
+ "pkt6_receive", pkt6_receive_skip));
|
|
|
|
+
|
|
|
|
+ // Let's create a simple SOLICIT
|
|
|
|
+ Pkt6Ptr sol = Pkt6Ptr(captureSimpleSolicit());
|
|
|
|
+
|
|
|
|
+ // Simulate that we have received that traffic
|
|
|
|
+ srv_->fakeReceive(sol);
|
|
|
|
+
|
|
|
|
+ // Server will now process to run its normal loop, but instead of calling
|
|
|
|
+ // IfaceMgr::receive6(), it will read all packets from the list set by
|
|
|
|
+ // fakeReceive()
|
|
|
|
+ // In particular, it should call registered pkt6_receive callback.
|
|
|
|
+ srv_->run();
|
|
|
|
+
|
|
|
|
+ // check that the server dropped the packet and did not produce any response
|
|
|
|
+ ASSERT_EQ(0, srv_->fake_sent_.size());
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+// Checks if callouts installed on pkt6_send are indeed called and the
|
|
|
|
+// all necessary parameters are passed.
|
|
|
|
+TEST_F(HooksDhcpv6SrvTest, simple_pkt6_send) {
|
|
|
|
+
|
|
|
|
+ // Install pkt6_receive_callout
|
|
|
|
+ EXPECT_NO_THROW(HooksManager::preCalloutsLibraryHandle().registerCallout(
|
|
|
|
+ "pkt6_send", pkt6_send_callout));
|
|
|
|
+
|
|
|
|
+ // Let's create a simple SOLICIT
|
|
|
|
+ Pkt6Ptr sol = Pkt6Ptr(captureSimpleSolicit());
|
|
|
|
+
|
|
|
|
+ // Simulate that we have received that traffic
|
|
|
|
+ srv_->fakeReceive(sol);
|
|
|
|
+
|
|
|
|
+ // Server will now process to run its normal loop, but instead of calling
|
|
|
|
+ // IfaceMgr::receive6(), it will read all packets from the list set by
|
|
|
|
+ // fakeReceive()
|
|
|
|
+ // In particular, it should call registered pkt6_receive callback.
|
|
|
|
+ srv_->run();
|
|
|
|
+
|
|
|
|
+ // Check that the callback called is indeed the one we installed
|
|
|
|
+ EXPECT_EQ("pkt6_send", callback_name_);
|
|
|
|
+
|
|
|
|
+ // Check that there is one packet sent
|
|
|
|
+ ASSERT_EQ(1, srv_->fake_sent_.size());
|
|
|
|
+ Pkt6Ptr adv = srv_->fake_sent_.front();
|
|
|
|
+
|
|
|
|
+ // Check that pkt6 argument passing was successful and returned proper value
|
|
|
|
+ EXPECT_TRUE(callback_pkt6_.get() == adv.get());
|
|
|
|
+
|
|
|
|
+ // Check that all expected parameters are there
|
|
|
|
+ vector<string> expected_argument_names;
|
|
|
|
+ expected_argument_names.push_back(string("response6"));
|
|
|
|
+ EXPECT_TRUE(expected_argument_names == callback_argument_names_);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// Checks if callouts installed on pkt6_send is able to change
|
|
|
|
+// the values and the packet sent contains those changes
|
|
|
|
+TEST_F(HooksDhcpv6SrvTest, valueChange_pkt6_send) {
|
|
|
|
+
|
|
|
|
+ // Install pkt6_receive_callout
|
|
|
|
+ EXPECT_NO_THROW(HooksManager::preCalloutsLibraryHandle().registerCallout(
|
|
|
|
+ "pkt6_send", pkt6_send_change_serverid));
|
|
|
|
+
|
|
|
|
+ // Let's create a simple SOLICIT
|
|
|
|
+ Pkt6Ptr sol = Pkt6Ptr(captureSimpleSolicit());
|
|
|
|
+
|
|
|
|
+ // Simulate that we have received that traffic
|
|
|
|
+ srv_->fakeReceive(sol);
|
|
|
|
+
|
|
|
|
+ // Server will now process to run its normal loop, but instead of calling
|
|
|
|
+ // IfaceMgr::receive6(), it will read all packets from the list set by
|
|
|
|
+ // fakeReceive()
|
|
|
|
+ // In particular, it should call registered pkt6_receive callback.
|
|
|
|
+ srv_->run();
|
|
|
|
+
|
|
|
|
+ // check that the server did send a reposonce
|
|
|
|
+ ASSERT_EQ(1, srv_->fake_sent_.size());
|
|
|
|
+
|
|
|
|
+ // Make sure that we received a response
|
|
|
|
+ Pkt6Ptr adv = srv_->fake_sent_.front();
|
|
|
|
+ ASSERT_TRUE(adv);
|
|
|
|
+
|
|
|
|
+ // Get client-id...
|
|
|
|
+ OptionPtr clientid = adv->getOption(D6O_SERVERID);
|
|
|
|
+
|
|
|
|
+ // ... and check if it is the modified value
|
|
|
|
+ OptionPtr expected = createOption(D6O_SERVERID);
|
|
|
|
+ EXPECT_TRUE(clientid->equal(expected));
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// Checks if callouts installed on pkt6_send is able to delete
|
|
|
|
+// existing options and that server applies those changes. In particular,
|
|
|
|
+// we are trying to send a packet without server-id. The packet should
|
|
|
|
+// be sent
|
|
|
|
+TEST_F(HooksDhcpv6SrvTest, deleteServerId_pkt6_send) {
|
|
|
|
+
|
|
|
|
+ // Install pkt6_receive_callout
|
|
|
|
+ EXPECT_NO_THROW(HooksManager::preCalloutsLibraryHandle().registerCallout(
|
|
|
|
+ "pkt6_send", pkt6_send_delete_serverid));
|
|
|
|
+
|
|
|
|
+ // Let's create a simple SOLICIT
|
|
|
|
+ Pkt6Ptr sol = Pkt6Ptr(captureSimpleSolicit());
|
|
|
|
+
|
|
|
|
+ // Simulate that we have received that traffic
|
|
|
|
+ srv_->fakeReceive(sol);
|
|
|
|
+
|
|
|
|
+ // Server will now process to run its normal loop, but instead of calling
|
|
|
|
+ // IfaceMgr::receive6(), it will read all packets from the list set by
|
|
|
|
+ // fakeReceive()
|
|
|
|
+ // In particular, it should call registered pkt6_receive callback.
|
|
|
|
+ srv_->run();
|
|
|
|
+
|
|
|
|
+ // Check that the server indeed sent a malformed ADVERTISE
|
|
|
|
+ ASSERT_EQ(1, srv_->fake_sent_.size());
|
|
|
|
+
|
|
|
|
+ // Get that ADVERTISE
|
|
|
|
+ Pkt6Ptr adv = srv_->fake_sent_.front();
|
|
|
|
+ ASSERT_TRUE(adv);
|
|
|
|
+
|
|
|
|
+ // Make sure that it does not have server-id
|
|
|
|
+ EXPECT_FALSE(adv->getOption(D6O_SERVERID));
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// Checks if callouts installed on pkt6_skip is able to set skip flag that
|
|
|
|
+// will cause the server to not process the packet (drop), even though it is valid.
|
|
|
|
+TEST_F(HooksDhcpv6SrvTest, skip_pkt6_send) {
|
|
|
|
+
|
|
|
|
+ // Install pkt6_receive_callout
|
|
|
|
+ EXPECT_NO_THROW(HooksManager::preCalloutsLibraryHandle().registerCallout(
|
|
|
|
+ "pkt6_send", pkt6_send_skip));
|
|
|
|
+
|
|
|
|
+ // Let's create a simple REQUEST
|
|
|
|
+ Pkt6Ptr sol = Pkt6Ptr(captureSimpleSolicit());
|
|
|
|
+
|
|
|
|
+ // Simulate that we have received that traffic
|
|
|
|
+ srv_->fakeReceive(sol);
|
|
|
|
+
|
|
|
|
+ // Server will now process to run its normal loop, but instead of calling
|
|
|
|
+ // IfaceMgr::receive6(), it will read all packets from the list set by
|
|
|
|
+ // fakeReceive()
|
|
|
|
+ // In particular, it should call registered pkt6_receive callback.
|
|
|
|
+ srv_->run();
|
|
|
|
+
|
|
|
|
+ // check that the server dropped the packet and did not produce any response
|
|
|
|
+ ASSERT_EQ(0, srv_->fake_sent_.size());
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// This test checks if subnet6_select callout is triggered and reports
|
|
|
|
+// valid parameters
|
|
|
|
+TEST_F(HooksDhcpv6SrvTest, subnet6_select) {
|
|
|
|
+
|
|
|
|
+ // Install pkt6_receive_callout
|
|
|
|
+ EXPECT_NO_THROW(HooksManager::preCalloutsLibraryHandle().registerCallout(
|
|
|
|
+ "subnet6_select", subnet6_select_callout));
|
|
|
|
+
|
|
|
|
+ // Configure 2 subnets, both directly reachable over local interface
|
|
|
|
+ // (let's not complicate the matter with relays)
|
|
|
|
+ string config = "{ \"interface\": [ \"all\" ],"
|
|
|
|
+ "\"preferred-lifetime\": 3000,"
|
|
|
|
+ "\"rebind-timer\": 2000, "
|
|
|
|
+ "\"renew-timer\": 1000, "
|
|
|
|
+ "\"subnet6\": [ { "
|
|
|
|
+ " \"pool\": [ \"2001:db8:1::/64\" ],"
|
|
|
|
+ " \"subnet\": \"2001:db8:1::/48\", "
|
|
|
|
+ " \"interface\": \"" + valid_iface_ + "\" "
|
|
|
|
+ " }, {"
|
|
|
|
+ " \"pool\": [ \"2001:db8:2::/64\" ],"
|
|
|
|
+ " \"subnet\": \"2001:db8:2::/48\" "
|
|
|
|
+ " } ],"
|
|
|
|
+ "\"valid-lifetime\": 4000 }";
|
|
|
|
+
|
|
|
|
+ ElementPtr json = Element::fromJSON(config);
|
|
|
|
+ ConstElementPtr status;
|
|
|
|
+
|
|
|
|
+ // Configure the server and make sure the config is accepted
|
|
|
|
+ EXPECT_NO_THROW(status = configureDhcp6Server(*srv_, json));
|
|
|
|
+ ASSERT_TRUE(status);
|
|
|
|
+ comment_ = parseAnswer(rcode_, status);
|
|
|
|
+ ASSERT_EQ(0, rcode_);
|
|
|
|
+
|
|
|
|
+ // Prepare solicit packet. Server should select first subnet for it
|
|
|
|
+ Pkt6Ptr sol = Pkt6Ptr(new Pkt6(DHCPV6_SOLICIT, 1234));
|
|
|
|
+ sol->setRemoteAddr(IOAddress("fe80::abcd"));
|
|
|
|
+ sol->setIface(valid_iface_);
|
|
|
|
+ sol->addOption(generateIA(234, 1500, 3000));
|
|
|
|
+ OptionPtr clientid = generateClientId();
|
|
|
|
+ sol->addOption(clientid);
|
|
|
|
+
|
|
|
|
+ // Pass it to the server and get an advertise
|
|
|
|
+ Pkt6Ptr adv = srv_->processSolicit(sol);
|
|
|
|
+
|
|
|
|
+ // check if we get response at all
|
|
|
|
+ ASSERT_TRUE(adv);
|
|
|
|
+
|
|
|
|
+ // Check that the callback called is indeed the one we installed
|
|
|
|
+ EXPECT_EQ("subnet6_select", callback_name_);
|
|
|
|
+
|
|
|
|
+ // Check that pkt6 argument passing was successful and returned proper value
|
|
|
|
+ EXPECT_TRUE(callback_pkt6_.get() == sol.get());
|
|
|
|
+
|
|
|
|
+ const Subnet6Collection* exp_subnets = CfgMgr::instance().getSubnets6();
|
|
|
|
+
|
|
|
|
+ // The server is supposed to pick the first subnet, because of matching
|
|
|
|
+ // interface. Check that the value is reported properly.
|
|
|
|
+ ASSERT_TRUE(callback_subnet6_);
|
|
|
|
+ EXPECT_EQ(callback_subnet6_.get(), exp_subnets->front().get());
|
|
|
|
+
|
|
|
|
+ // Server is supposed to report two subnets
|
|
|
|
+ ASSERT_EQ(exp_subnets->size(), callback_subnet6collection_->size());
|
|
|
|
+
|
|
|
|
+ // Compare that the available subnets are reported as expected
|
|
|
|
+ EXPECT_TRUE((*exp_subnets)[0].get() == (*callback_subnet6collection_)[0].get());
|
|
|
|
+ EXPECT_TRUE((*exp_subnets)[1].get() == (*callback_subnet6collection_)[1].get());
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// This test checks if callout installed on subnet6_select hook point can pick
|
|
|
|
+// a different subnet.
|
|
|
|
+TEST_F(HooksDhcpv6SrvTest, subnet_select_change) {
|
|
|
|
+
|
|
|
|
+ // Install pkt6_receive_callout
|
|
|
|
+ EXPECT_NO_THROW(HooksManager::preCalloutsLibraryHandle().registerCallout(
|
|
|
|
+ "subnet6_select", subnet6_select_different_subnet_callout));
|
|
|
|
+
|
|
|
|
+ // Configure 2 subnets, both directly reachable over local interface
|
|
|
|
+ // (let's not complicate the matter with relays)
|
|
|
|
+ string config = "{ \"interface\": [ \"all\" ],"
|
|
|
|
+ "\"preferred-lifetime\": 3000,"
|
|
|
|
+ "\"rebind-timer\": 2000, "
|
|
|
|
+ "\"renew-timer\": 1000, "
|
|
|
|
+ "\"subnet6\": [ { "
|
|
|
|
+ " \"pool\": [ \"2001:db8:1::/64\" ],"
|
|
|
|
+ " \"subnet\": \"2001:db8:1::/48\", "
|
|
|
|
+ " \"interface\": \"" + valid_iface_ + "\" "
|
|
|
|
+ " }, {"
|
|
|
|
+ " \"pool\": [ \"2001:db8:2::/64\" ],"
|
|
|
|
+ " \"subnet\": \"2001:db8:2::/48\" "
|
|
|
|
+ " } ],"
|
|
|
|
+ "\"valid-lifetime\": 4000 }";
|
|
|
|
+
|
|
|
|
+ ElementPtr json = Element::fromJSON(config);
|
|
|
|
+ ConstElementPtr status;
|
|
|
|
+
|
|
|
|
+ // Configure the server and make sure the config is accepted
|
|
|
|
+ EXPECT_NO_THROW(status = configureDhcp6Server(*srv_, json));
|
|
|
|
+ ASSERT_TRUE(status);
|
|
|
|
+ comment_ = parseAnswer(rcode_, status);
|
|
|
|
+ ASSERT_EQ(0, rcode_);
|
|
|
|
+
|
|
|
|
+ // Prepare solicit packet. Server should select first subnet for it
|
|
|
|
+ Pkt6Ptr sol = Pkt6Ptr(new Pkt6(DHCPV6_SOLICIT, 1234));
|
|
|
|
+ sol->setRemoteAddr(IOAddress("fe80::abcd"));
|
|
|
|
+ sol->setIface(valid_iface_);
|
|
|
|
+ sol->addOption(generateIA(234, 1500, 3000));
|
|
|
|
+ OptionPtr clientid = generateClientId();
|
|
|
|
+ sol->addOption(clientid);
|
|
|
|
+
|
|
|
|
+ // Pass it to the server and get an advertise
|
|
|
|
+ Pkt6Ptr adv = srv_->processSolicit(sol);
|
|
|
|
+
|
|
|
|
+ // check if we get response at all
|
|
|
|
+ ASSERT_TRUE(adv);
|
|
|
|
+
|
|
|
|
+ // The response should have an address from second pool, so let's check it
|
|
|
|
+ OptionPtr tmp = adv->getOption(D6O_IA_NA);
|
|
|
|
+ ASSERT_TRUE(tmp);
|
|
|
|
+ boost::shared_ptr<Option6IA> ia = boost::dynamic_pointer_cast<Option6IA>(tmp);
|
|
|
|
+ ASSERT_TRUE(ia);
|
|
|
|
+ tmp = ia->getOption(D6O_IAADDR);
|
|
|
|
+ ASSERT_TRUE(tmp);
|
|
|
|
+ boost::shared_ptr<Option6IAAddr> addr_opt =
|
|
|
|
+ boost::dynamic_pointer_cast<Option6IAAddr>(tmp);
|
|
|
|
+ ASSERT_TRUE(addr_opt);
|
|
|
|
+
|
|
|
|
+ // Get all subnets and use second subnet for verification
|
|
|
|
+ const Subnet6Collection* subnets = CfgMgr::instance().getSubnets6();
|
|
|
|
+ ASSERT_EQ(2, subnets->size());
|
|
|
|
+
|
|
|
|
+ // Advertised address must belong to the second pool (in subnet's range,
|
|
|
|
+ // in dynamic pool)
|
|
|
|
+ EXPECT_TRUE((*subnets)[1]->inRange(addr_opt->getAddress()));
|
|
|
|
+ EXPECT_TRUE((*subnets)[1]->inPool(addr_opt->getAddress()));
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+
|
|
/// @todo: Add more negative tests for processX(), e.g. extend sanityCheck() test
|
|
/// @todo: Add more negative tests for processX(), e.g. extend sanityCheck() test
|
|
/// to call processX() methods.
|
|
/// to call processX() methods.
|
|
|
|
|