22 #include "ns3/socket-factory.h"
23 #include "ns3/simulator.h"
24 #include "ns3/socket.h"
25 #include "ns3/boolean.h"
29 #include "ns3/inet6-socket-address.h"
30 #include "ns3/internet-stack-helper.h"
31 #include "ns3/ipv6-address-helper.h"
32 #include "ns3/icmpv6-l4-protocol.h"
34 #include "ns3/sixlowpan-net-device.h"
35 #include "ns3/sixlowpan-header.h"
36 #include "ns3/sixlowpan-helper.h"
104 virtual void DoRun (
void);
109 :
TestCase (
"Sixlowpan IPHC stateful implementation")
119 incomingPkt.
src = source;
120 incomingPkt.
dst = destination;
126 uint32_t
id = mockDev->GetNode ()->GetId ();
127 Simulator::ScheduleWithContext (
id,
Time(1), &MockNetDevice::Receive, mockDev, incomingPkt.
packet, protocol, destination, source, packetType);
138 incomingPkt.
src = source;
139 incomingPkt.
dst = destination;
168 nodes.Get (0)->AddDevice (mockNetDevice0);
169 mockNetDevice0->SetNode (
nodes.Get (0));
170 mockNetDevice0->SetAddress (
Mac48Address (
"00:00:00:00:00:01"));
171 mockNetDevice0->SetMtu (150);
177 nodes.Get (1)->AddDevice (mockNetDevice1);
178 mockNetDevice1->SetNode (
nodes.Get (1));
179 mockNetDevice1->SetAddress (
Mac48Address (
"00:00:00:00:00:02"));
180 mockNetDevice1->SetMtu (150);
196 for (
auto i =
nodes.Begin (); i !=
nodes.End (); i++)
202 ipv6L3->SetAttribute (
"IpForward",
BooleanValue (
true));
203 ipv6L3->SetAttribute (
"SendIcmpv6Redirect",
BooleanValue (
false));
219 Ipv6Address::GetAny (),
234 Simulator::Stop (
Seconds (10));
237 Simulator::Destroy ();
326 :
TestSuite (
"sixlowpan-iphc-stateful", UNIT)
6LoWPAN IPHC stateful compression Test
std::vector< Data > m_txPackets
Transmitted packets.
bool ReceiveFromMockDevice(Ptr< NetDevice > device, Ptr< const Packet > packet, uint16_t protocol, Address const &source, Address const &destination, NetDevice::PacketType packetType)
Receive from a MockDevice.
bool PromiscReceiveFromSixLowPanDevice(Ptr< NetDevice > device, Ptr< const Packet > packet, uint16_t protocol, Address const &source, Address const &destination, NetDevice::PacketType packetType)
Promiscuous receive from a SixLowPanNetDevice.
NetDeviceContainer m_mockDevices
MockNetDevice container.
std::vector< Data > m_rxPackets
Received packets.
void SendOnePacket(Ptr< NetDevice > device, Ipv6Address from, Ipv6Address to)
Send one packet.
SixlowpanIphcStatefulImplTest()
NetDeviceContainer m_sixDevices
SixLowPanNetDevice container.
virtual void DoRun(void)
Implementation to actually run this TestCase.
SixlowpanIphcStatefulTestSuite()
a polymophic address class
AttributeValue implementation for Boolean.
An implementation of the ICMPv6 protocol.
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...
Helper class to auto-assign global IPv6 unicast addresses.
void SetBase(Ipv6Address network, Ipv6Prefix prefix, Ipv6Address base=Ipv6Address("::1"))
Set the base network number, network prefix, and base interface ID.
Ipv6InterfaceContainer Assign(const NetDeviceContainer &c)
Allocate an Ipv6InterfaceContainer with auto-assigned addresses.
Describes an IPv6 address.
Keep track of a set of IPv6 interfaces.
Ipv6Address GetAddress(uint32_t i, uint32_t j) const
Get the address for the specified index.
IPv6 layer implementation.
Describes an IPv6 prefix.
holds a vector of ns3::NetDevice pointers
void Add(NetDeviceContainer other)
Append the contents of another NetDeviceContainer to the end of this container.
Ptr< NetDevice > Get(uint32_t i) const
Get the Ptr<NetDevice> stored in this container at a given index.
virtual void SetPromiscReceiveCallback(PromiscReceiveCallback cb)=0
virtual bool Send(Ptr< Packet > packet, const Address &dest, uint16_t protocolNumber)=0
PacketType
Packet types are used as they are in Linux.
keep track of a set of node pointers.
void AddHeader(const Header &header)
Add header to this packet.
Ptr< Packet > Copy(void) const
performs a COW copy of the packet.
Setup a sixlowpan stack to be used as a shim between IPv6 and a generic NetDevice.
NetDeviceContainer Install(NetDeviceContainer c)
Install the SixLoWPAN stack on top of an existing NetDevice.
void AddContext(NetDeviceContainer c, uint8_t contextId, Ipv6Prefix context, Time validity)
Adds a compression Context to a set of NetDevices.
LOWPAN_IPHC base Encoding - see RFC 6282.
bool GetM(void) const
Get the M (Multicast) compression.
bool GetSac(void) const
Get the SAC (Source Address Compression) compression.
bool GetDac(void) const
Get the DAC (Destination Address Compression) compression.
uint8_t GetDstContextId(void) const
Get the DstContextId.
bool GetCid(void) const
Get the CID (Context Identifier Extension) compression.
HeaderCompression_e GetSam(void) const
Get the SAM (Source Address Mode) compression.
HeaderCompression_e GetDam(void) const
Get the DAM (Destination Address Mode) compression.
uint8_t GetSrcContextId(void) const
Get the SrcContextId.
void AddTestCase(TestCase *testCase, TestDuration duration=QUICK)
Add an individual child TestCase to this test suite.
#define NS_TEST_EXPECT_MSG_EQ(actual, limit, msg)
Test that an actual and expected (limit) value are equal and report if not.
Time Seconds(double value)
Construct a Time in the indicated unit.
Time Minutes(double value)
Construct a Time in the indicated unit.
void SendOnePacket(Ptr< LrWpanPhy > sender, Ptr< LrWpanPhy > receiver)
Send one packet.
void(* Time)(Time oldValue, Time newValue)
TracedValue callback signature for Time.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
Callback< R, Ts... > MakeCallback(R(T::*memPtr)(Ts...), OBJ objPtr)
Build Callbacks for class method members which take varying numbers of arguments and potentially retu...
static SixlowpanIphcStatefulTestSuite g_sixlowpanIphcStatefulTestSuite
Static variable for test initialization.
Structure to hold the Rx/Tx packets.
Address dst
Destination address.
Address src
Source address.
Ptr< Packet > packet
Packet data.