Traffic Control Flow Control Test Case. More...
Public Member Functions | |
TcFlowControlTestCase (QueueSizeUnit tt, uint32_t deviceQueueLength, uint32_t totalTxPackets) | |
Constructor. More... | |
~TcFlowControlTestCase () override | |
Public Member Functions inherited from ns3::TestCase | |
TestCase (const TestCase &)=delete | |
virtual | ~TestCase () |
Destructor. More... | |
std::string | GetName () const |
TestCase & | operator= (const TestCase &)=delete |
Private Member Functions | |
void | CheckDeviceQueueStopped (Ptr< NetDevice > dev, bool value, const std::string msg) |
Check if the device queue is in the expected status (stopped or not) More... | |
void | CheckPacketsInDeviceQueue (Ptr< NetDevice > dev, uint16_t nPackets, const std::string msg) |
Check if the device queue stores the expected number of packets. More... | |
void | CheckPacketsInQueueDisc (Ptr< NetDevice > dev, uint16_t nPackets, const std::string msg) |
Check if the queue disc stores the expected number of packets. More... | |
void | DoRun () override |
Implementation to actually run this TestCase. More... | |
void | SendPackets (Ptr< Node > n, uint16_t nPackets) |
Instruct a node to send a specified number of packets. More... | |
Private Attributes | |
uint32_t | m_deviceQueueLength |
the queue length of the device More... | |
uint32_t | m_totalTxPackets |
the toal number of packets to transmit More... | |
QueueSizeUnit | m_type |
the test type 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... | |
TestCase * | GetParent () const |
Get the parent of this TestCase. More... | |
bool | IsStatusFailure () const |
Check if any tests failed. More... | |
bool | IsStatusSuccess () 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 () const |
Check if this run should assert on failure. More... | |
bool | MustContinueOnFailure () 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... | |
Traffic Control Flow Control Test Case.
Definition at line 92 of file tc-flow-control-test-suite.cc.
TcFlowControlTestCase::TcFlowControlTestCase | ( | QueueSizeUnit | tt, |
uint32_t | deviceQueueLength, | ||
uint32_t | totalTxPackets | ||
) |
Constructor.
tt | the test type |
deviceQueueLength | the queue length of the device |
totalTxPackets | the total number of packets to transmit |
Definition at line 139 of file tc-flow-control-test-suite.cc.
|
override |
Definition at line 149 of file tc-flow-control-test-suite.cc.
|
private |
Check if the device queue is in the expected status (stopped or not)
dev | the device |
value | the expected status of the queue (true means stopped) |
msg | the message to print if the status of the device queue is different |
Definition at line 175 of file tc-flow-control-test-suite.cc.
References NS_ASSERT_MSG, NS_TEST_EXPECT_MSG_EQ, and second::value.
Referenced by DoRun().
|
private |
Check if the device queue stores the expected number of packets.
dev | the device |
nPackets | the expected number of packets stored in the device queue |
msg | the message to print if a different number of packets are stored |
Definition at line 164 of file tc-flow-control-test-suite.cc.
References ns3::PointerValue::Get(), and NS_TEST_EXPECT_MSG_EQ.
Referenced by DoRun().
|
private |
Check if the queue disc stores the expected number of packets.
dev | the device the queue disc is installed on |
nPackets | the expected number of packets stored in the queue disc |
msg | the message to print if a different number of packets are stored |
Definition at line 185 of file tc-flow-control-test-suite.cc.
References NS_TEST_EXPECT_MSG_EQ.
Referenced by DoRun().
|
overrideprivatevirtual |
Implementation to actually run this TestCase.
Subclasses should override this method to conduct their tests.
Implements ns3::TestCase.
Definition at line 195 of file tc-flow-control-test-suite.cc.
References ns3::Object::AggregateObject(), CheckDeviceQueueStopped(), CheckPacketsInDeviceQueue(), CheckPacketsInQueueDisc(), ns3::NodeContainer::Create(), ns3::NetDeviceContainer::Get(), ns3::NodeContainer::Get(), ns3::TrafficControlHelper::Install(), ns3::SimpleNetDeviceHelper::Install(), m_deviceQueueLength, m_totalTxPackets, m_type, max, ns3::MilliSeconds(), min, ns3::PACKETS, ns3::Seconds(), SendPackets(), ns3::SimpleNetDeviceHelper::SetDeviceAttribute(), ns3::SimpleNetDeviceHelper::SetQueue(), and nlohmann::to_string().
Instruct a node to send a specified number of packets.
n | the node |
nPackets | the number of packets to send |
Definition at line 154 of file tc-flow-control-test-suite.cc.
References ns3::Node::GetDevice(), and ns3::Object::GetObject().
Referenced by DoRun().
|
private |
the queue length of the device
Definition at line 135 of file tc-flow-control-test-suite.cc.
Referenced by DoRun().
|
private |
the toal number of packets to transmit
Definition at line 136 of file tc-flow-control-test-suite.cc.
Referenced by DoRun().
|
private |