added test code for bug 859
This commit is contained in:
284
src/internet-stack/ipv4-raw-test.cc
Normal file
284
src/internet-stack/ipv4-raw-test.cc
Normal file
@@ -0,0 +1,284 @@
|
||||
/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */
|
||||
/*
|
||||
* Copyright (c) 2010 Keio University
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License version 2 as
|
||||
* published by the Free Software Foundation;
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*
|
||||
* Author: Hajime Tazaki <tazaki@sfc.wide.ad.jp>
|
||||
*/
|
||||
/**
|
||||
* This is the test code for ipv4-raw-socket-impl.cc.
|
||||
*/
|
||||
|
||||
#include "ns3/test.h"
|
||||
#include "ns3/socket-factory.h"
|
||||
#include "ns3/ipv4-raw-socket-factory.h"
|
||||
#include "ns3/simulator.h"
|
||||
#include "ns3/simple-channel.h"
|
||||
#include "ns3/simple-net-device.h"
|
||||
#include "ns3/drop-tail-queue.h"
|
||||
#include "ns3/socket.h"
|
||||
|
||||
#include "ns3/log.h"
|
||||
#include "ns3/node.h"
|
||||
#include "ns3/inet-socket-address.h"
|
||||
|
||||
#include "arp-l3-protocol.h"
|
||||
#include "ipv4-l3-protocol.h"
|
||||
#include "icmpv4-l4-protocol.h"
|
||||
#include "ns3/ipv4-list-routing.h"
|
||||
#include "ns3/ipv4-static-routing.h"
|
||||
|
||||
#include <string>
|
||||
#include <limits>
|
||||
namespace ns3 {
|
||||
|
||||
static void
|
||||
AddInternetStack (Ptr<Node> node)
|
||||
{
|
||||
//ARP
|
||||
Ptr<ArpL3Protocol> arp = CreateObject<ArpL3Protocol> ();
|
||||
node->AggregateObject(arp);
|
||||
//IPV4
|
||||
Ptr<Ipv4L3Protocol> ipv4 = CreateObject<Ipv4L3Protocol> ();
|
||||
//Routing for Ipv4
|
||||
Ptr<Ipv4ListRouting> ipv4Routing = CreateObject<Ipv4ListRouting> ();
|
||||
ipv4->SetRoutingProtocol (ipv4Routing);
|
||||
Ptr<Ipv4StaticRouting> ipv4staticRouting = CreateObject<Ipv4StaticRouting> ();
|
||||
ipv4Routing->AddRoutingProtocol (ipv4staticRouting, 0);
|
||||
node->AggregateObject(ipv4);
|
||||
//ICMP
|
||||
Ptr<Icmpv4L4Protocol> icmp = CreateObject<Icmpv4L4Protocol> ();
|
||||
node->AggregateObject(icmp);
|
||||
// //Ipv4Raw
|
||||
// Ptr<Ipv4UdpL4Protocol> udp = CreateObject<UdpL4Protocol> ();
|
||||
// node->AggregateObject(udp);
|
||||
}
|
||||
|
||||
|
||||
class Ipv4RawSocketImplTest: public TestCase
|
||||
{
|
||||
Ptr<Packet> m_receivedPacket;
|
||||
Ptr<Packet> m_receivedPacket2;
|
||||
void DoSendData (Ptr<Socket> socket, std::string to);
|
||||
void SendData (Ptr<Socket> socket, std::string to);
|
||||
|
||||
public:
|
||||
virtual bool DoRun (void);
|
||||
Ipv4RawSocketImplTest ();
|
||||
|
||||
void ReceivePacket (Ptr<Socket> socket, Ptr<Packet> packet, const Address &from);
|
||||
void ReceivePacket2 (Ptr<Socket> socket, Ptr<Packet> packet, const Address &from);
|
||||
void ReceivePkt (Ptr<Socket> socket);
|
||||
void ReceivePkt2 (Ptr<Socket> socket);
|
||||
};
|
||||
|
||||
|
||||
Ipv4RawSocketImplTest::Ipv4RawSocketImplTest ()
|
||||
: TestCase ("IPv4 Raw socket implementation")
|
||||
{
|
||||
}
|
||||
|
||||
void Ipv4RawSocketImplTest::ReceivePacket (Ptr<Socket> socket, Ptr<Packet> packet, const Address &from)
|
||||
{
|
||||
m_receivedPacket = packet;
|
||||
}
|
||||
|
||||
void Ipv4RawSocketImplTest::ReceivePacket2 (Ptr<Socket> socket, Ptr<Packet> packet, const Address &from)
|
||||
{
|
||||
m_receivedPacket2 = packet;
|
||||
}
|
||||
|
||||
void Ipv4RawSocketImplTest::ReceivePkt (Ptr<Socket> socket)
|
||||
{
|
||||
uint32_t availableData;
|
||||
availableData = socket->GetRxAvailable ();
|
||||
m_receivedPacket = socket->Recv (std::numeric_limits<uint32_t>::max(), 0);
|
||||
NS_ASSERT (availableData == m_receivedPacket->GetSize ());
|
||||
}
|
||||
|
||||
void Ipv4RawSocketImplTest::ReceivePkt2 (Ptr<Socket> socket)
|
||||
{
|
||||
uint32_t availableData;
|
||||
availableData = socket->GetRxAvailable ();
|
||||
m_receivedPacket2 = socket->Recv (std::numeric_limits<uint32_t>::max(), 0);
|
||||
NS_ASSERT (availableData == m_receivedPacket2->GetSize ());
|
||||
}
|
||||
|
||||
void
|
||||
Ipv4RawSocketImplTest::DoSendData (Ptr<Socket> socket, std::string to)
|
||||
{
|
||||
Address realTo = InetSocketAddress (Ipv4Address(to.c_str()), 0);
|
||||
socket->SendTo (Create<Packet> (123), 0, realTo);
|
||||
// NS_TEST_EXPECT_MSG_NE (socket->SendTo (Create<Packet> (123), 0, realTo),
|
||||
// -1, to);
|
||||
}
|
||||
|
||||
void
|
||||
Ipv4RawSocketImplTest::SendData (Ptr<Socket> socket, std::string to)
|
||||
{
|
||||
m_receivedPacket = Create<Packet> ();
|
||||
m_receivedPacket2 = Create<Packet> ();
|
||||
Simulator::ScheduleWithContext (socket->GetNode ()->GetId (), Seconds (0),
|
||||
&Ipv4RawSocketImplTest::DoSendData, this, socket, to);
|
||||
Simulator::Run ();
|
||||
}
|
||||
|
||||
bool
|
||||
Ipv4RawSocketImplTest::DoRun (void)
|
||||
{
|
||||
// Create topology
|
||||
|
||||
// Receiver Node
|
||||
Ptr<Node> rxNode = CreateObject<Node> ();
|
||||
AddInternetStack (rxNode);
|
||||
Ptr<SimpleNetDevice> rxDev1, rxDev2;
|
||||
{ // first interface
|
||||
rxDev1 = CreateObject<SimpleNetDevice> ();
|
||||
rxDev1->SetAddress (Mac48Address::ConvertFrom (Mac48Address::Allocate ()));
|
||||
rxNode->AddDevice (rxDev1);
|
||||
Ptr<Ipv4> ipv4 = rxNode->GetObject<Ipv4> ();
|
||||
uint32_t netdev_idx = ipv4->AddInterface (rxDev1);
|
||||
Ipv4InterfaceAddress ipv4Addr = Ipv4InterfaceAddress (Ipv4Address ("10.0.0.1"), Ipv4Mask (0xffff0000U));
|
||||
ipv4->AddAddress (netdev_idx, ipv4Addr);
|
||||
ipv4->SetUp (netdev_idx);
|
||||
}
|
||||
|
||||
{ // second interface
|
||||
rxDev2 = CreateObject<SimpleNetDevice> ();
|
||||
rxDev2->SetAddress (Mac48Address::ConvertFrom (Mac48Address::Allocate ()));
|
||||
rxNode->AddDevice (rxDev2);
|
||||
Ptr<Ipv4> ipv4 = rxNode->GetObject<Ipv4> ();
|
||||
uint32_t netdev_idx = ipv4->AddInterface (rxDev2);
|
||||
Ipv4InterfaceAddress ipv4Addr = Ipv4InterfaceAddress (Ipv4Address ("10.0.1.1"), Ipv4Mask (0xffff0000U));
|
||||
ipv4->AddAddress (netdev_idx, ipv4Addr);
|
||||
ipv4->SetUp (netdev_idx);
|
||||
}
|
||||
|
||||
// Sender Node
|
||||
Ptr<Node> txNode = CreateObject<Node> ();
|
||||
AddInternetStack (txNode);
|
||||
Ptr<SimpleNetDevice> txDev1;
|
||||
{
|
||||
txDev1 = CreateObject<SimpleNetDevice> ();
|
||||
txDev1->SetAddress (Mac48Address::ConvertFrom (Mac48Address::Allocate ()));
|
||||
txNode->AddDevice (txDev1);
|
||||
Ptr<Ipv4> ipv4 = txNode->GetObject<Ipv4> ();
|
||||
uint32_t netdev_idx = ipv4->AddInterface (txDev1);
|
||||
Ipv4InterfaceAddress ipv4Addr = Ipv4InterfaceAddress (Ipv4Address ("10.0.0.2"), Ipv4Mask (0xffff0000U));
|
||||
ipv4->AddAddress (netdev_idx, ipv4Addr);
|
||||
ipv4->SetUp (netdev_idx);
|
||||
}
|
||||
Ptr<SimpleNetDevice> txDev2;
|
||||
{
|
||||
txDev2 = CreateObject<SimpleNetDevice> ();
|
||||
txDev2->SetAddress (Mac48Address::ConvertFrom (Mac48Address::Allocate ()));
|
||||
txNode->AddDevice (txDev2);
|
||||
Ptr<Ipv4> ipv4 = txNode->GetObject<Ipv4> ();
|
||||
uint32_t netdev_idx = ipv4->AddInterface (txDev2);
|
||||
Ipv4InterfaceAddress ipv4Addr = Ipv4InterfaceAddress (Ipv4Address ("10.0.1.2"), Ipv4Mask (0xffff0000U));
|
||||
ipv4->AddAddress (netdev_idx, ipv4Addr);
|
||||
ipv4->SetUp (netdev_idx);
|
||||
}
|
||||
|
||||
// link the two nodes
|
||||
Ptr<SimpleChannel> channel1 = CreateObject<SimpleChannel> ();
|
||||
rxDev1->SetChannel (channel1);
|
||||
txDev1->SetChannel (channel1);
|
||||
|
||||
Ptr<SimpleChannel> channel2 = CreateObject<SimpleChannel> ();
|
||||
rxDev2->SetChannel (channel2);
|
||||
txDev2->SetChannel (channel2);
|
||||
|
||||
|
||||
// Create the IPv4 Raw sockets
|
||||
Ptr<SocketFactory> rxSocketFactory = rxNode->GetObject<Ipv4RawSocketFactory> ();
|
||||
Ptr<Socket> rxSocket = rxSocketFactory->CreateSocket ();
|
||||
NS_TEST_EXPECT_MSG_EQ (rxSocket->Bind (InetSocketAddress (Ipv4Address ("0.0.0.0.0"), 0)), 0, "trivial");
|
||||
rxSocket->SetRecvCallback (MakeCallback (&Ipv4RawSocketImplTest::ReceivePkt, this));
|
||||
|
||||
Ptr<Socket> rxSocket2 = rxSocketFactory->CreateSocket ();
|
||||
rxSocket2->SetRecvCallback (MakeCallback (&Ipv4RawSocketImplTest::ReceivePkt2, this));
|
||||
NS_TEST_EXPECT_MSG_EQ (rxSocket2->Bind (InetSocketAddress (Ipv4Address ("10.0.1.1"), 0)), 0, "trivial");
|
||||
|
||||
Ptr<SocketFactory> txSocketFactory = txNode->GetObject<Ipv4RawSocketFactory> ();
|
||||
Ptr<Socket> txSocket = txSocketFactory->CreateSocket ();
|
||||
|
||||
// ------ Now the tests ------------
|
||||
|
||||
// Unicast test
|
||||
SendData (txSocket, "10.0.0.1");
|
||||
NS_TEST_EXPECT_MSG_EQ (m_receivedPacket->GetSize (), 143, "recv: 10.0.0.1");
|
||||
NS_TEST_EXPECT_MSG_EQ (m_receivedPacket2->GetSize (), 0, "second interface should not receive it");
|
||||
|
||||
m_receivedPacket->RemoveAllByteTags ();
|
||||
m_receivedPacket2->RemoveAllByteTags ();
|
||||
|
||||
#if 0
|
||||
// Simple broadcast test
|
||||
|
||||
SendData (txSocket, "255.255.255.255");
|
||||
NS_TEST_EXPECT_MSG_EQ (m_receivedPacket->GetSize (), 143, "recv: 255.255.255.255");
|
||||
NS_TEST_EXPECT_MSG_EQ (m_receivedPacket2->GetSize (), 143, "second socket should not receive it (it is bound specifically to the second interface's address");
|
||||
|
||||
m_receivedPacket->RemoveAllByteTags ();
|
||||
m_receivedPacket2->RemoveAllByteTags ();
|
||||
#endif
|
||||
|
||||
// Simple Link-local multicast test
|
||||
|
||||
txSocket->Bind (InetSocketAddress (Ipv4Address ("10.0.0.2"), 0));
|
||||
SendData (txSocket, "224.0.0.9");
|
||||
#if 0
|
||||
NS_TEST_EXPECT_MSG_EQ (m_receivedPacket->GetSize (), 143, "recv: 224.0.0.9");
|
||||
#endif
|
||||
NS_TEST_EXPECT_MSG_EQ (m_receivedPacket2->GetSize (), 0, "second socket should not receive it (it is bound specifically to the second interface's address");
|
||||
|
||||
m_receivedPacket->RemoveAllByteTags ();
|
||||
m_receivedPacket2->RemoveAllByteTags ();
|
||||
|
||||
#if 0
|
||||
// Broadcast test with multiple receiving sockets
|
||||
|
||||
// When receiving broadcast packets, all sockets sockets bound to
|
||||
// the address/port should receive a copy of the same packet -- if
|
||||
// the socket address matches.
|
||||
rxSocket2->Dispose ();
|
||||
rxSocket2 = rxSocketFactory->CreateSocket ();
|
||||
rxSocket2->SetRecvCallback (MakeCallback (&Ipv4RawSocketImplTest::ReceivePkt2, this));
|
||||
NS_TEST_EXPECT_MSG_EQ (rxSocket2->Bind (InetSocketAddress (Ipv4Address ("0.0.0.0"), 0)), 0, "trivial");
|
||||
|
||||
SendData (txSocket, "255.255.255.255");
|
||||
NS_TEST_EXPECT_MSG_EQ (m_receivedPacket->GetSize (), 143, "recv: 255.255.255.255");
|
||||
NS_TEST_EXPECT_MSG_EQ (m_receivedPacket2->GetSize (), 143, "recv: 255.255.255.255");
|
||||
#endif
|
||||
|
||||
m_receivedPacket = 0;
|
||||
m_receivedPacket2 = 0;
|
||||
|
||||
Simulator::Destroy ();
|
||||
|
||||
return GetErrorStatus ();
|
||||
}
|
||||
//-----------------------------------------------------------------------------
|
||||
class Ipv4RawTestSuite : public TestSuite
|
||||
{
|
||||
public:
|
||||
Ipv4RawTestSuite () : TestSuite ("ipv4-raw", UNIT)
|
||||
{
|
||||
AddTestCase (new Ipv4RawSocketImplTest);
|
||||
}
|
||||
} g_ipv4rawTestSuite;
|
||||
|
||||
}; // namespace ns3
|
||||
Reference in New Issue
Block a user