Dynamic Neighbor Cache Test. More...
Public Member Functions | |
DynamicNeighborCacheTest () | |
void | DoRun () override |
Implementation to actually run this TestCase. | |
void | ReceivePkt (Ptr< Socket > socket) |
Receive data. | |
Public Member Functions inherited from ns3::TestCase | |
TestCase (const TestCase &)=delete | |
virtual | ~TestCase () |
Destructor. | |
std::string | GetName () const |
TestCase & | operator= (const TestCase &)=delete |
Public Attributes | |
std::vector< uint32_t > | m_receivedPacketSizes |
Received packet sizes. | |
Private Member Functions | |
void | AddIpv4Address (Ptr< Ipv4Interface > ipv4Interface, Ipv4InterfaceAddress ifaceAddr) |
Add an IPv4 address to an IPv4 interface. | |
void | AddIpv6Address (Ptr< Ipv6Interface > ipv6Interface, Ipv6InterfaceAddress ifaceAddr) |
Add an IPv6 address to an IPv6 interface. | |
void | DoSendDatav4 (Ptr< Socket > socket, Ipv4Address to) |
Send data immediately after being called. | |
void | DoSendDatav6 (Ptr< Socket > socket, Ipv6Address to) |
Send data immediately after being called. | |
void | RemoveIpv4Address (Ptr< Ipv4Interface > ipv4Interface, uint32_t index) |
Remove an IPv4 address from an IPv4 interface. | |
void | RemoveIpv6Address (Ptr< Ipv6Interface > ipv6Interface, uint32_t index) |
Remove an IPv6 address from an IPv6 interface. | |
void | SendData (Ptr< Socket > socket, Ipv4Address to) |
Schedules the DoSendData () function to send the data. | |
void | SendData (Ptr< Socket > socket, Ipv6Address to) |
Schedules the DoSendData () function to send the data. | |
Private Attributes | |
Ptr< Packet > | m_receivedPacket |
Received packet. | |
Additional Inherited Members | |
Public Types inherited from ns3::TestCase | |
enum class | Duration { QUICK = 1 , EXTENSIVE = 2 , TAKES_FOREVER = 3 } |
How long the test takes to execute. More... | |
Static Public Attributes inherited from ns3::TestCase | |
static constexpr auto | QUICK = Duration::QUICK |
Deprecated test duration simple enums. | |
static constexpr auto | EXTENSIVE = Duration::EXTENSIVE |
static constexpr auto | TAKES_FOREVER = Duration::TAKES_FOREVER |
Protected Member Functions inherited from ns3::TestCase | |
TestCase (std::string name) | |
Constructor. | |
void | AddTestCase (TestCase *testCase, Duration duration=Duration::QUICK) |
Add an individual child TestCase to this test suite. | |
TestCase * | GetParent () const |
Get the parent of this TestCase. | |
bool | IsStatusFailure () const |
Check if any tests failed. | |
bool | IsStatusSuccess () const |
Check if all tests passed. | |
void | SetDataDir (std::string directory) |
Set the data directory where reference trace files can be found. | |
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. | |
bool | MustAssertOnFailure () const |
Check if this run should assert on failure. | |
bool | MustContinueOnFailure () const |
Check if this run should continue on failure. | |
std::string | CreateDataDirFilename (std::string filename) |
Construct the full path to a file in the data directory. | |
std::string | CreateTempDirFilename (std::string filename) |
Construct the full path to a file in a temporary directory. | |
Dynamic Neighbor Cache Test.
Definition at line 36 of file neighbor-cache-test.cc.
DynamicNeighborCacheTest::DynamicNeighborCacheTest | ( | ) |
Definition at line 110 of file neighbor-cache-test.cc.
|
private |
Add an IPv4 address to an IPv4 interface.
ipv4Interface | The interface that address will be added. |
ifaceAddr | The added IPv4 address. |
Definition at line 167 of file neighbor-cache-test.cc.
Referenced by DoRun().
|
private |
Add an IPv6 address to an IPv6 interface.
ipv6Interface | The interface that address will be added. |
ifaceAddr | The added IPv6 address. |
Definition at line 174 of file neighbor-cache-test.cc.
Referenced by DoRun().
|
overridevirtual |
Implementation to actually run this TestCase.
Subclasses should override this method to conduct their tests.
Implements ns3::TestCase.
Definition at line 193 of file neighbor-cache-test.cc.
References ns3::NetDeviceContainer::Add(), AddIpv4Address(), AddIpv6Address(), ns3::Ipv6AddressHelper::Assign(), ns3::Create(), ns3::CreateObject(), ns3::Simulator::Destroy(), ns3::InternetStackHelper::Install(), m_receivedPacket, m_receivedPacketSizes, ns3::MakeCallback(), NS_TEST_EXPECT_MSG_EQ, ns3::NeighborCacheHelper::PopulateNeighborCache(), ns3::Ipv4RoutingHelper::PrintNeighborCacheAllAt(), ns3::Ipv6RoutingHelper::PrintNeighborCacheAllAt(), ReceivePkt(), ns3::Packet::RemoveAllByteTags(), RemoveIpv4Address(), RemoveIpv6Address(), ns3::Simulator::Run(), ns3::Simulator::Schedule(), ns3::Seconds(), SendData(), ns3::Ipv6AddressHelper::SetBase(), ns3::NeighborCacheHelper::SetDynamicNeighborCache(), and ns3::Simulator::Stop().
|
private |
Send data immediately after being called.
socket | The sending socket. |
to | IPv4 Destination address. |
Definition at line 129 of file neighbor-cache-test.cc.
References ns3::Create(), and NS_TEST_EXPECT_MSG_EQ.
Referenced by SendData().
|
private |
Send data immediately after being called.
socket | The sending socket. |
to | IPv6 Destination address. |
Definition at line 136 of file neighbor-cache-test.cc.
References ns3::Create(), and NS_TEST_EXPECT_MSG_EQ.
Referenced by SendData().
Receive data.
socket | The receiving socket. |
Definition at line 118 of file neighbor-cache-test.cc.
References ns3::Packet::GetSize(), m_receivedPacket, m_receivedPacketSizes, and NS_TEST_ASSERT_MSG_EQ.
Referenced by DoRun().
|
private |
Remove an IPv4 address from an IPv4 interface.
ipv4Interface | The interface that address will be removed from. |
index | The index of IPv4 address that will be removed. |
Definition at line 181 of file neighbor-cache-test.cc.
Referenced by DoRun().
|
private |
Remove an IPv6 address from an IPv6 interface.
ipv6Interface | The interface that address will be removed from. |
index | The index of IPv6 address that will be removed. |
Definition at line 187 of file neighbor-cache-test.cc.
Referenced by DoRun().
|
private |
Schedules the DoSendData () function to send the data.
socket | The sending socket. |
to | IPv4 Destination address. |
Definition at line 143 of file neighbor-cache-test.cc.
References ns3::Create(), DoSendDatav4(), m_receivedPacket, ns3::Simulator::ScheduleWithContext(), and ns3::Seconds().
Referenced by DoRun().
|
private |
Schedules the DoSendData () function to send the data.
socket | The sending socket. |
to | IPv6 Destination address. |
Definition at line 155 of file neighbor-cache-test.cc.
References ns3::Create(), DoSendDatav6(), m_receivedPacket, ns3::Simulator::ScheduleWithContext(), and ns3::Seconds().
Received packet.
Definition at line 38 of file neighbor-cache-test.cc.
Referenced by DoRun(), ReceivePkt(), SendData(), and SendData().
std::vector<uint32_t> DynamicNeighborCacheTest::m_receivedPacketSizes |
Received packet sizes.
Definition at line 107 of file neighbor-cache-test.cc.
Referenced by DoRun(), and ReceivePkt().