AODV loopback UDP echo test case. More...
Public Member Functions | |
LoopbackTestCase () | |
void | DoRun () override |
Implementation to actually run this TestCase. | |
Public Member Functions inherited from ns3::TestCase | |
TestCase (const TestCase &)=delete | |
virtual | ~TestCase () |
Destructor. | |
std::string | GetName () const |
TestCase & | operator= (const TestCase &)=delete |
Private Member Functions | |
void | EchoData (Ptr< Socket > socket) const |
Echo data function. | |
void | ReceivePkt (Ptr< Socket > socket) |
Receive packet function. | |
void | SendData (Ptr< Socket > socket) |
Send data function. | |
Private Attributes | |
uint32_t | m_count |
number of packet received; | |
uint16_t | m_echoReplyPort |
echo reply port; | |
uint16_t | m_echoSendPort |
echo send port; | |
Ptr< Socket > | m_echoSocket |
echo socket; | |
Ptr< Socket > | m_rxSocket |
receive socket; | |
Ptr< Socket > | m_txSocket |
transmit socket; | |
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. | |
AODV loopback UDP echo test case.
Definition at line 42 of file loopback.cc.
ns3::aodv::LoopbackTestCase::LoopbackTestCase | ( | ) |
Definition at line 72 of file loopback.cc.
References m_echoReplyPort, and m_echoSendPort.
|
overridevirtual |
Implementation to actually run this TestCase.
Subclasses should override this method to conduct their tests.
Implements ns3::TestCase.
Definition at line 117 of file loopback.cc.
References ns3::Socket::Bind(), ns3::Socket::Close(), ns3::NodeContainer::Create(), ns3::YansWifiChannelHelper::Create(), ns3::CreateObject(), ns3::YansWifiChannelHelper::Default(), ns3::Simulator::Destroy(), EchoData(), ns3::Node::GetId(), ns3::Ipv4Address::GetLoopback(), ns3::Socket::GetNode(), ns3::InternetStackHelper::Install(), m_count, m_echoReplyPort, m_echoSendPort, m_echoSocket, m_rxSocket, m_txSocket, ns3::MakeCallback(), nodes, NS_TEST_ASSERT_MSG_EQ, ReceivePkt(), ns3::Simulator::Run(), ns3::Simulator::ScheduleWithContext(), ns3::Seconds(), SendData(), ns3::YansWifiPhyHelper::SetChannel(), ns3::Socket::SetRecvCallback(), ns3::InternetStackHelper::SetRoutingHelper(), ns3::WifiMacHelper::SetType(), ns3::Simulator::Stop(), and ns3::WIFI_STANDARD_80211a.
Echo data function.
socket | The socket to echo data |
Definition at line 89 of file loopback.cc.
References ns3::InetSocketAddress::ConvertFrom(), ns3::InetSocketAddress::GetIpv4(), and m_echoReplyPort.
Referenced by DoRun().
Receive packet function.
socket | The socket to receive data |
Definition at line 81 of file loopback.cc.
References m_count.
Referenced by DoRun().
Send data function.
socket | The socket to send data |
Definition at line 104 of file loopback.cc.
References ns3::Create(), ns3::Ipv4Address::GetLoopback(), m_echoSendPort, ns3::Simulator::ScheduleWithContext(), ns3::Seconds(), and SendData().
Referenced by DoRun(), and SendData().
|
private |
number of packet received;
Definition at line 44 of file loopback.cc.
Referenced by DoRun(), and ReceivePkt().
|
private |
echo reply port;
Definition at line 49 of file loopback.cc.
Referenced by LoopbackTestCase(), DoRun(), and EchoData().
|
private |
echo send port;
Definition at line 48 of file loopback.cc.
Referenced by LoopbackTestCase(), DoRun(), and SendData().