A Discrete-Event Network Simulator
API
TcpRateLinuxBasicTest Class Reference

The TcpRateLinux Basic Test. More...

+ Inheritance diagram for TcpRateLinuxBasicTest:
+ Collaboration diagram for TcpRateLinuxBasicTest:

Public Member Functions

 TcpRateLinuxBasicTest (uint32_t cWnd, SequenceNumber32 tailSeq, SequenceNumber32 nextTx, uint32_t testCase, std::string testName)
 Constructor. More...
 
- Public Member Functions inherited from ns3::TestCase
virtual ~TestCase ()
 Destructor. More...
 
std::string GetName (void) const
 

Private Member Functions

virtual void DoRun (void)
 Implementation to actually run this TestCase. More...
 
void SendSkb (TcpTxItem *skb)
 Send an application packet. More...
 
void SkbDelivered (TcpTxItem *skb)
 Deliver an application packet. More...
 

Private Attributes

uint32_t m_cWnd
 Congestion window size. More...
 
uint32_t m_delivered
 Number of segments delivered. More...
 
Time m_deliveredTime
 Last time of a delivery. More...
 
uint32_t m_inFlight
 Number of packets in-flight. More...
 
SequenceNumber32 m_nextTx
 Tx next sequence number. More...
 
TcpRateLinux m_rateOps
 Rate information for TCP. More...
 
uint32_t m_segmentSize
 Segment size. More...
 
std::vector< TcpTxItem * > m_skbs
 Application packets. More...
 
SequenceNumber32 m_tailSeq
 Tail sequence number. More...
 
uint32_t m_testCase
 Test case 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...
 
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

The TcpRateLinux Basic Test.

Definition at line 44 of file tcp-rate-ops-test.cc.

Constructor & Destructor Documentation

◆ TcpRateLinuxBasicTest()

TcpRateLinuxBasicTest::TcpRateLinuxBasicTest ( uint32_t  cWnd,
SequenceNumber32  tailSeq,
SequenceNumber32  nextTx,
uint32_t  testCase,
std::string  testName 
)

Constructor.

Parameters
cWndCongestion window size
tailSeqTail sequence number
nextTxTx next sequence number
testCasetest case type
testNametest name

Definition at line 85 of file tcp-rate-ops-test.cc.

Member Function Documentation

◆ DoRun()

void TcpRateLinuxBasicTest::DoRun ( void  )
privatevirtual

Implementation to actually run this TestCase.

Subclasses should override this method to conduct their tests.

Implements ns3::TestCase.

Definition at line 101 of file tcp-rate-ops-test.cc.

References m_skbs, ns3::Seconds(), SendSkb(), and SkbDelivered().

+ Here is the call graph for this function:

◆ SendSkb()

void TcpRateLinuxBasicTest::SendSkb ( TcpTxItem skb)
private

◆ SkbDelivered()

void TcpRateLinuxBasicTest::SkbDelivered ( TcpTxItem skb)
private

Deliver an application packet.

Parameters
skbthe data to deliver

Definition at line 144 of file tcp-rate-ops-test.cc.

References ns3::TcpTxItem::GetRateInformation(), ns3::TcpTxItem::GetSeqSize(), m_delivered, m_deliveredTime, ns3::TcpTxItem::RateInformation::m_deliveredTime, m_inFlight, ns3::TcpTxItem::RateInformation::m_isAppLimited, m_rateOps, m_testCase, Max, ns3::Now(), NS_TEST_ASSERT_MSG_EQ, and ns3::TcpRateLinux::SkbDelivered().

Referenced by DoRun().

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

Member Data Documentation

◆ m_cWnd

uint32_t TcpRateLinuxBasicTest::m_cWnd
private

Congestion window size.

Definition at line 74 of file tcp-rate-ops-test.cc.

Referenced by SendSkb().

◆ m_delivered

uint32_t TcpRateLinuxBasicTest::m_delivered
private

Number of segments delivered.

Definition at line 77 of file tcp-rate-ops-test.cc.

Referenced by SendSkb(), and SkbDelivered().

◆ m_deliveredTime

Time TcpRateLinuxBasicTest::m_deliveredTime
private

Last time of a delivery.

Definition at line 78 of file tcp-rate-ops-test.cc.

Referenced by SendSkb(), and SkbDelivered().

◆ m_inFlight

uint32_t TcpRateLinuxBasicTest::m_inFlight
private

Number of packets in-flight.

Definition at line 75 of file tcp-rate-ops-test.cc.

Referenced by SendSkb(), and SkbDelivered().

◆ m_nextTx

SequenceNumber32 TcpRateLinuxBasicTest::m_nextTx
private

Tx next sequence number.

Definition at line 80 of file tcp-rate-ops-test.cc.

Referenced by SendSkb().

◆ m_rateOps

TcpRateLinux TcpRateLinuxBasicTest::m_rateOps
private

Rate information for TCP.

Definition at line 73 of file tcp-rate-ops-test.cc.

Referenced by SendSkb(), and SkbDelivered().

◆ m_segmentSize

uint32_t TcpRateLinuxBasicTest::m_segmentSize
private

Segment size.

Definition at line 76 of file tcp-rate-ops-test.cc.

Referenced by SendSkb().

◆ m_skbs

std::vector<TcpTxItem *> TcpRateLinuxBasicTest::m_skbs
private

Application packets.

Definition at line 82 of file tcp-rate-ops-test.cc.

Referenced by DoRun().

◆ m_tailSeq

SequenceNumber32 TcpRateLinuxBasicTest::m_tailSeq
private

Tail sequence number.

Definition at line 79 of file tcp-rate-ops-test.cc.

Referenced by SendSkb().

◆ m_testCase

uint32_t TcpRateLinuxBasicTest::m_testCase
private

Test case type.

Definition at line 81 of file tcp-rate-ops-test.cc.

Referenced by SkbDelivered().


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