A Discrete-Event Network Simulator
API
Loading...
Searching...
No Matches

This class tests ECN marking. More...

+ Inheritance diagram for FqCobaltQueueDiscEcnMarking:
+ Collaboration diagram for FqCobaltQueueDiscEcnMarking:

Public Member Functions

 FqCobaltQueueDiscEcnMarking ()
 
 ~FqCobaltQueueDiscEcnMarking () override
 
- Public Member Functions inherited from ns3::TestCase
 TestCase (const TestCase &)=delete
 
virtual ~TestCase ()
 Destructor.
 
std::string GetName () const
 
TestCaseoperator= (const TestCase &)=delete
 

Private Member Functions

void AddPacket (Ptr< FqCobaltQueueDisc > queue, Ipv4Header hdr, uint32_t nPkt, uint32_t nPktEnqueued, uint32_t nQueueFlows)
 Enqueue the given number of packets.
 
void Dequeue (Ptr< FqCobaltQueueDisc > queue, uint32_t nPkt)
 Dequeue the given number of packets.
 
void DequeueWithDelay (Ptr< FqCobaltQueueDisc > queue, double delay, uint32_t nPkt)
 Dequeue the given number of packets at different times.
 
void DoRun () override
 Implementation to actually run this TestCase.
 
void DropNextTracer (int64_t oldVal, int64_t newVal)
 Tracer for the DropNext attribute.
 

Private Attributes

uint32_t m_dropNextCount
 count the number of times m_dropNext is recalculated
 

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...
 
using instead = Duration
 
- Static Public Attributes inherited from ns3::TestCase
static constexpr auto EXTENSIVE = Duration::EXTENSIVE
 
static constexpr auto QUICK = Duration::QUICK
 
static constexpr auto 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.
 
TestCaseGetParent () 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.
 

Detailed Description

This class tests ECN marking.

The test is divided into 3 sub test cases. 1) CE threshold disabled This test enqueues 100 packets in the beginning of the test and dequeues 60 (some packets are dropped too) packets with the delay of 110ms. This test checks that ECT0 packets are marked and are marked appropriately and NotECT packets are dropped.

2) CE threshold enabled. This test enqueues 100 packets in the beginning of the test and dequeues 60 packets with delay of 1ms. This test checks that the ECT0 packets are marked appropriately at CE threshold.

3) CE threshold enabled with higher queue delay. This test is similar to the 2nd sub test cases just with higher queue delay and aims to test that the packets are not marked twice Any future classifier options (e.g. SetAssociativehash) should be disabled to prevent a hash collision on this test case.

Definition at line 757 of file fq-cobalt-queue-disc-test-suite.cc.

Constructor & Destructor Documentation

◆ FqCobaltQueueDiscEcnMarking()

FqCobaltQueueDiscEcnMarking::FqCobaltQueueDiscEcnMarking ( )

Definition at line 800 of file fq-cobalt-queue-disc-test-suite.cc.

References m_dropNextCount.

◆ ~FqCobaltQueueDiscEcnMarking()

FqCobaltQueueDiscEcnMarking::~FqCobaltQueueDiscEcnMarking ( )
override

Definition at line 806 of file fq-cobalt-queue-disc-test-suite.cc.

Member Function Documentation

◆ AddPacket()

void FqCobaltQueueDiscEcnMarking::AddPacket ( Ptr< FqCobaltQueueDisc queue,
Ipv4Header  hdr,
uint32_t  nPkt,
uint32_t  nPktEnqueued,
uint32_t  nQueueFlows 
)
private

Enqueue the given number of packets.

Parameters
queueThe queue disc.
hdrThe IPv4 header.
nPktThe number of packets.
nPktEnqueuedThe expected number of enqueued packets.
nQueueFlowsThe expected number of flow queues.

Definition at line 811 of file fq-cobalt-queue-disc-test-suite.cc.

References NS_TEST_EXPECT_MSG_EQ.

Referenced by DoRun().

+ Here is the caller graph for this function:

◆ Dequeue()

void FqCobaltQueueDiscEcnMarking::Dequeue ( Ptr< FqCobaltQueueDisc queue,
uint32_t  nPkt 
)
private

Dequeue the given number of packets.

Parameters
queueThe queue disc.
nPktThe number of packets.

Definition at line 833 of file fq-cobalt-queue-disc-test-suite.cc.

References DropNextTracer(), and ns3::MakeCallback().

Referenced by DequeueWithDelay().

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

◆ DequeueWithDelay()

void FqCobaltQueueDiscEcnMarking::DequeueWithDelay ( Ptr< FqCobaltQueueDisc queue,
double  delay,
uint32_t  nPkt 
)
private

Dequeue the given number of packets at different times.

Parameters
queueThe queue disc.
delayThe time between two consecutive dequeue operations.
nPktThe number of packets.

Definition at line 853 of file fq-cobalt-queue-disc-test-suite.cc.

References Dequeue(), ns3::Simulator::Schedule(), and ns3::Seconds().

Referenced by DoRun().

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

◆ DoRun()

void FqCobaltQueueDiscEcnMarking::DoRun ( )
overrideprivatevirtual

◆ DropNextTracer()

void FqCobaltQueueDiscEcnMarking::DropNextTracer ( int64_t  oldVal,
int64_t  newVal 
)
private

Tracer for the DropNext attribute.

Parameters
oldValOld value.
newValNew value.

Definition at line 868 of file fq-cobalt-queue-disc-test-suite.cc.

References m_dropNextCount.

Referenced by Dequeue().

+ Here is the caller graph for this function:

Member Data Documentation

◆ m_dropNextCount

uint32_t FqCobaltQueueDiscEcnMarking::m_dropNextCount
private

count the number of times m_dropNext is recalculated

Definition at line 797 of file fq-cobalt-queue-disc-test-suite.cc.

Referenced by FqCobaltQueueDiscEcnMarking(), DoRun(), and DropNextTracer().


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