A Discrete-Event Network Simulator
API
SixlowpanIphcStatefulImplTest Class Reference

6LoWPAN IPHC stateful compression Test More...

+ Inheritance diagram for SixlowpanIphcStatefulImplTest:
+ Collaboration diagram for SixlowpanIphcStatefulImplTest:

Classes

struct  Data
 Structure to hold the Rx/Tx packets. More...
 

Public Member Functions

 SixlowpanIphcStatefulImplTest ()
 
virtual void DoRun (void)
 Implementation to actually run this TestCase. More...
 
- Public Member Functions inherited from ns3::TestCase
virtual ~TestCase ()
 Destructor. More...
 
std::string GetName (void) const
 

Private Member Functions

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. More...
 
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. More...
 
void SendOnePacket (Ptr< NetDevice > device, Ipv6Address from, Ipv6Address to)
 Send one packet. More...
 

Private Attributes

NetDeviceContainer m_mockDevices
 MockNetDevice container. More...
 
std::vector< Datam_rxPackets
 Received packets. More...
 
NetDeviceContainer m_sixDevices
 SixLowPanNetDevice container. More...
 
std::vector< Datam_txPackets
 Transmitted packets. More...
 

Additional Inherited Members

- Public Types inherited from ns3::TestCase
enum  TestDuration { QUICK = 1, EXTENSIVE = 2, TAKES_FOREVER = 3 }
 How long the test takes to execute. More...
 
- Protected Member Functions inherited from ns3::TestCase
 TestCase (std::string name)
 Constructor. More...
 
void AddTestCase (TestCase *testCase, TestDuration duration=QUICK)
 Add an individual child TestCase to this test suite. More...
 
TestCaseGetParent () const
 Get the parent of this TestCsse. More...
 
bool IsStatusFailure (void) const
 Check if any tests failed. More...
 
bool IsStatusSuccess (void) const
 Check if all tests passed. More...
 
void SetDataDir (std::string directory)
 Set the data directory where reference trace files can be found. More...
 
void ReportTestFailure (std::string cond, std::string actual, std::string limit, std::string message, std::string file, int32_t line)
 Log the failure of this TestCase. More...
 
bool MustAssertOnFailure (void) const
 Check if this run should assert on failure. More...
 
bool MustContinueOnFailure (void) const
 Check if this run should continue on failure. More...
 
std::string CreateDataDirFilename (std::string filename)
 Construct the full path to a file in the data directory. More...
 
std::string CreateTempDirFilename (std::string filename)
 Construct the full path to a file in a temporary directory. More...
 

Detailed Description

6LoWPAN IPHC stateful compression Test

Definition at line 57 of file sixlowpan-iphc-stateful-test.cc.

Constructor & Destructor Documentation

◆ SixlowpanIphcStatefulImplTest()

SixlowpanIphcStatefulImplTest::SixlowpanIphcStatefulImplTest ( )

Definition at line 115 of file sixlowpan-iphc-stateful-test.cc.

Member Function Documentation

◆ DoRun()

◆ PromiscReceiveFromSixLowPanDevice()

bool SixlowpanIphcStatefulImplTest::PromiscReceiveFromSixLowPanDevice ( Ptr< NetDevice device,
Ptr< const Packet packet,
uint16_t  protocol,
Address const &  source,
Address const &  destination,
NetDevice::PacketType  packetType 
)
private

Promiscuous receive from a SixLowPanNetDevice.

Parameters
devicea pointer to the net device which is calling this function
packetthe packet received
protocolthe 16 bit protocol number associated with this packet.
sourcethe address of the sender
destinationthe address of the receiver
packetTypetype of packet received (broadcast/multicast/unicast/otherhost)
Returns
true.

Definition at line 140 of file sixlowpan-iphc-stateful-test.cc.

References ns3::Packet::Copy(), SixlowpanIphcStatefulImplTest::Data::dst, m_rxPackets, SixlowpanIphcStatefulImplTest::Data::packet, and SixlowpanIphcStatefulImplTest::Data::src.

Referenced by DoRun().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ ReceiveFromMockDevice()

bool SixlowpanIphcStatefulImplTest::ReceiveFromMockDevice ( Ptr< NetDevice device,
Ptr< const Packet packet,
uint16_t  protocol,
Address const &  source,
Address const &  destination,
NetDevice::PacketType  packetType 
)
private

Receive from a MockDevice.

Parameters
devicea pointer to the net device which is calling this function
packetthe packet received
protocolthe 16 bit protocol number associated with this packet.
sourcethe address of the sender
destinationthe address of the receiver
packetTypetype of packet received (broadcast/multicast/unicast/otherhost)
Returns
true.

Definition at line 121 of file sixlowpan-iphc-stateful-test.cc.

References ns3::Packet::Copy(), SixlowpanIphcStatefulImplTest::Data::dst, ns3::NetDeviceContainer::Get(), ns3::Node::GetId(), ns3::MockNetDevice::GetNode(), m_mockDevices, m_txPackets, SixlowpanIphcStatefulImplTest::Data::packet, and SixlowpanIphcStatefulImplTest::Data::src.

Referenced by DoRun().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ SendOnePacket()

void SixlowpanIphcStatefulImplTest::SendOnePacket ( Ptr< NetDevice device,
Ipv6Address  from,
Ipv6Address  to 
)
private

Send one packet.

Parameters
devicethe device to send from
fromsender address
todestination address

Definition at line 153 of file sixlowpan-iphc-stateful-test.cc.

References ns3::Packet::AddHeader(), ns3::NetDevice::Send(), and ns3::Ipv6Header::SetSourceAddress().

Referenced by DoRun().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

Member Data Documentation

◆ m_mockDevices

NetDeviceContainer SixlowpanIphcStatefulImplTest::m_mockDevices
private

MockNetDevice container.

Definition at line 107 of file sixlowpan-iphc-stateful-test.cc.

Referenced by DoRun(), and ReceiveFromMockDevice().

◆ m_rxPackets

std::vector<Data> SixlowpanIphcStatefulImplTest::m_rxPackets
private

Received packets.

Definition at line 71 of file sixlowpan-iphc-stateful-test.cc.

Referenced by DoRun(), and PromiscReceiveFromSixLowPanDevice().

◆ m_sixDevices

NetDeviceContainer SixlowpanIphcStatefulImplTest::m_sixDevices
private

SixLowPanNetDevice container.

Definition at line 108 of file sixlowpan-iphc-stateful-test.cc.

Referenced by DoRun().

◆ m_txPackets

std::vector<Data> SixlowpanIphcStatefulImplTest::m_txPackets
private

Transmitted packets.

Definition at line 70 of file sixlowpan-iphc-stateful-test.cc.

Referenced by DoRun(), and ReceiveFromMockDevice().


The documentation for this class was generated from the following file: