A Discrete-Event Network Simulator
API
ipv4-packet-info-tag-test-suite.cc
Go to the documentation of this file.
1/*
2 * Copyright (c) 2010 Hajime Tazaki
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation;
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 *
17 * Authors: Hajime Tazaki <tazaki@sfc.wide.ad.jp>
18 */
19
20//-----------------------------------------------------------------------------
21// Unit tests
22//-----------------------------------------------------------------------------
23
24#include "ns3/abort.h"
25#include "ns3/arp-l3-protocol.h"
26#include "ns3/attribute.h"
27#include "ns3/icmpv4-l4-protocol.h"
28#include "ns3/inet-socket-address.h"
29#include "ns3/internet-stack-helper.h"
30#include "ns3/ipv4-address.h"
31#include "ns3/ipv4-interface.h"
32#include "ns3/ipv4-l3-protocol.h"
33#include "ns3/ipv4-list-routing.h"
34#include "ns3/ipv4-packet-info-tag.h"
35#include "ns3/ipv4-raw-socket-factory.h"
36#include "ns3/ipv4-static-routing.h"
37#include "ns3/log.h"
38#include "ns3/node.h"
39#include "ns3/object-factory.h"
40#include "ns3/simple-net-device-helper.h"
41#include "ns3/simple-net-device.h"
42#include "ns3/simulator.h"
43#include "ns3/socket-factory.h"
44#include "ns3/tcp-l4-protocol.h"
45#include "ns3/test.h"
46#include "ns3/traffic-control-layer.h"
47#include "ns3/udp-l4-protocol.h"
48#include "ns3/udp-socket-factory.h"
49#include "ns3/udp-socket.h"
50
51#include <string>
52
53using namespace ns3;
54
62{
63 public:
65
66 private:
67 void DoRun() override;
68
73 void RxCb(Ptr<Socket> socket);
79 void DoSendData(Ptr<Socket> socket, std::string to);
80};
81
83 : TestCase("Ipv4PacketInfoTagTest")
84{
85}
86
87void
89{
90 uint32_t availableData;
91 Ptr<Packet> m_receivedPacket;
92
93 availableData = socket->GetRxAvailable();
94 m_receivedPacket = socket->Recv(std::numeric_limits<uint32_t>::max(), 0);
95 NS_TEST_ASSERT_MSG_EQ(availableData, m_receivedPacket->GetSize(), "Did not read expected data");
96
98 bool found;
99 found = m_receivedPacket->RemovePacketTag(tag);
100 NS_TEST_ASSERT_MSG_EQ(found, true, "Could not find tag");
101}
102
103void
105{
106 Address realTo = InetSocketAddress(Ipv4Address(to.c_str()), 200);
107 if (DynamicCast<UdpSocket>(socket))
108 {
109 NS_TEST_EXPECT_MSG_EQ(socket->SendTo(Create<Packet>(123), 0, realTo), 123, "100");
110 }
111 // Should only Ipv4RawSock
112 else
113 {
114 socket->SendTo(Create<Packet>(123), 0, realTo);
115 }
116}
117
118void
120{
121 Ptr<Node> node0 = CreateObject<Node>();
122 Ptr<Node> node1 = CreateObject<Node>();
123
124 SimpleNetDeviceHelper simpleNetDevHelper;
125 NetDeviceContainer devs = simpleNetDevHelper.Install(NodeContainer(node0, node1));
126 Ptr<SimpleNetDevice> device = DynamicCast<SimpleNetDevice>(devs.Get(0));
127 Ptr<SimpleNetDevice> device2 = DynamicCast<SimpleNetDevice>(devs.Get(1));
128
129 InternetStackHelper internet;
130 internet.SetIpv6StackInstall(false);
131
132 // For Node 0
133 node0->AddDevice(device);
134 internet.Install(node0);
135 Ptr<Ipv4> ipv4 = node0->GetObject<Ipv4>();
136
137 uint32_t index = ipv4->AddInterface(device);
138 Ipv4InterfaceAddress ifaceAddr1 = Ipv4InterfaceAddress("10.1.1.1", "255.255.255.0");
139 ipv4->AddAddress(index, ifaceAddr1);
140 ipv4->SetMetric(index, 1);
141 ipv4->SetUp(index);
142
143 // For Node 1
144 node1->AddDevice(device2);
145 internet.Install(node1);
146 ipv4 = node1->GetObject<Ipv4>();
147
148 index = ipv4->AddInterface(device2);
149 Ipv4InterfaceAddress ifaceAddr2 = Ipv4InterfaceAddress("10.1.1.2", "255.255.255.0");
150 ipv4->AddAddress(index, ifaceAddr2);
151 ipv4->SetMetric(index, 1);
152 ipv4->SetUp(index);
153
154 // IPv4 test
155 Ptr<SocketFactory> factory = node0->GetObject<SocketFactory>(UdpSocketFactory::GetTypeId());
156 Ptr<Socket> socket = factory->CreateSocket();
157 InetSocketAddress local = InetSocketAddress(Ipv4Address::GetAny(), 200);
158 socket->Bind(local);
159 socket->SetRecvPktInfo(true);
160 socket->SetRecvCallback(MakeCallback(&Ipv4PacketInfoTagTest::RxCb, this));
161
162 // receive on loopback
163 Simulator::ScheduleWithContext(socket->GetNode()->GetId(),
164 Seconds(0),
166 this,
167 socket,
168 "127.0.0.1");
169 Simulator::Run();
170
171 Ptr<SocketFactory> factory2 = node1->GetObject<SocketFactory>(UdpSocketFactory::GetTypeId());
172 Ptr<Socket> socket2 = factory2->CreateSocket();
173 Simulator::ScheduleWithContext(socket2->GetNode()->GetId(),
174 Seconds(0),
176 this,
177 socket,
178 "10.1.1.1");
179 Simulator::Run();
180
181 // ipv4 w rawsocket
182 factory = node0->GetObject<SocketFactory>(Ipv4RawSocketFactory::GetTypeId());
183 socket = factory->CreateSocket();
184 local = InetSocketAddress(Ipv4Address::GetAny(), 0);
185 socket->Bind(local);
186 socket->SetRecvPktInfo(true);
187 socket->SetRecvCallback(MakeCallback(&Ipv4PacketInfoTagTest::RxCb, this));
188
189 // receive on loopback
190 Simulator::ScheduleWithContext(socket->GetNode()->GetId(),
191 Seconds(0),
193 this,
194 socket,
195 "127.0.0.1");
196 Simulator::Run();
197
198 factory2 = node1->GetObject<SocketFactory>(Ipv4RawSocketFactory::GetTypeId());
199 socket2 = factory2->CreateSocket();
200 Simulator::ScheduleWithContext(socket2->GetNode()->GetId(),
201 Seconds(0),
203 this,
204 socket,
205 "10.1.1.1");
206 Simulator::Run();
207 Simulator::Destroy();
208}
209
217{
218 public:
220
221 private:
222};
223
225 : TestSuite("ipv4-packet-info-tag", UNIT)
226{
227 AddTestCase(new Ipv4PacketInfoTagTest(), TestCase::QUICK);
228}
229
#define max(a, b)
Definition: 80211b.c:43
void DoRun() override
Implementation to actually run this TestCase.
void DoSendData(Ptr< Socket > socket, std::string to)
Send data.
void RxCb(Ptr< Socket > socket)
Receive callback.
a polymophic address class
Definition: address.h:92
an Inet address class
aggregate IP/TCP/UDP functionality to existing Nodes.
void Install(std::string nodeName) const
Aggregate implementations of the ns3::Ipv4, ns3::Ipv6, ns3::Udp, and ns3::Tcp classes onto the provid...
void SetIpv6StackInstall(bool enable)
Enable/disable IPv6 stack install.
Ipv4 addresses are stored in host order in this class.
Definition: ipv4-address.h:43
Access to the IPv4 forwarding table, interfaces, and configuration.
Definition: ipv4.h:79
a class to store IPv4 address information on an interface
This class implements Linux struct pktinfo in order to deliver ancillary information to the socket in...
holds a vector of ns3::NetDevice pointers
Ptr< NetDevice > Get(uint32_t i) const
Get the Ptr<NetDevice> stored in this container at a given index.
keep track of a set of node pointers.
uint32_t AddDevice(Ptr< NetDevice > device)
Associate a NetDevice to this node.
Definition: node.cc:138
Ptr< T > GetObject() const
Get a pointer to the requested aggregated Object.
Definition: object.h:471
bool RemovePacketTag(Tag &tag)
Remove a packet tag.
Definition: packet.cc:986
uint32_t GetSize() const
Returns the the size in bytes of the packet (including the zero-filled initial payload).
Definition: packet.h:863
build a set of SimpleNetDevice objects
NetDeviceContainer Install(Ptr< Node > node) const
This method creates an ns3::SimpleChannel with the attributes configured by SimpleNetDeviceHelper::Se...
Object to create transport layer instances that provide a socket API to applications.
virtual uint32_t GetRxAvailable() const =0
Return number of bytes which can be returned from one or multiple calls to Recv.
virtual Ptr< Packet > Recv(uint32_t maxSize, uint32_t flags)=0
Read data from the socket.
virtual int SendTo(Ptr< Packet > p, uint32_t flags, const Address &toAddress)=0
Send data to a specified peer.
encapsulates test code
Definition: test.h:1060
void AddTestCase(TestCase *testCase, TestDuration duration=QUICK)
Add an individual child TestCase to this test suite.
Definition: test.cc:305
A suite of tests to run.
Definition: test.h:1256
#define NS_TEST_ASSERT_MSG_EQ(actual, limit, msg)
Test that an actual and expected (limit) value are equal and report and abort if not.
Definition: test.h:144
#define NS_TEST_EXPECT_MSG_EQ(actual, limit, msg)
Test that an actual and expected (limit) value are equal and report if not.
Definition: test.h:251
Time Seconds(double value)
Construct a Time in the indicated unit.
Definition: nstime.h:1338
static Ipv4PacketInfoTagTestSuite g_packetinfotagTests
Static variable for test initialization.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
Callback< R, Args... > MakeCallback(R(T::*memPtr)(Args...), OBJ objPtr)
Build Callbacks for class method members which take varying numbers of arguments and potentially retu...
Definition: callback.h:691