Test for recipient reordering buffer operations. More...
Public Member Functions | |
BlockAckRecipientBufferTest (uint16_t ssn) | |
Constructor. | |
~BlockAckRecipientBufferTest () override | |
void | DoRun () override |
Implementation to actually run this TestCase. | |
void | ForwardUp (Ptr< const WifiMpdu > mpdu, uint8_t linkId) |
Keep track of MPDUs received on the given link that are forwarded up. | |
Public Member Functions inherited from ns3::TestCase | |
TestCase (const TestCase &)=delete | |
virtual | ~TestCase () |
Destructor. | |
std::string | GetName () const |
TestCase & | operator= (const TestCase &)=delete |
Private Attributes | |
std::list< Ptr< const WifiMpdu > > | m_fwup |
list of MPDUs that have been forwarded up | |
uint16_t | m_ssn |
the Starting Sequence Number used to initialize WinStartB | |
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. | |
Test for recipient reordering buffer operations.
Definition at line 770 of file block-ack-test-suite.cc.
BlockAckRecipientBufferTest::BlockAckRecipientBufferTest | ( | uint16_t | ssn | ) |
Constructor.
ssn | the Starting Sequence Number used to initialize WinStartB |
Definition at line 795 of file block-ack-test-suite.cc.
|
override |
Definition at line 801 of file block-ack-test-suite.cc.
|
overridevirtual |
Implementation to actually run this TestCase.
Subclasses should override this method to conduct their tests.
Implements ns3::TestCase.
Definition at line 812 of file block-ack-test-suite.cc.
References ns3::Mac48Address::Allocate(), ns3::Create(), ns3::Simulator::Destroy(), ForwardUp(), m_fwup, m_ssn, ns3::MakeCallback(), ns3::RecipientBlockAckAgreement::NotifyReceivedBar(), ns3::RecipientBlockAckAgreement::NotifyReceivedMpdu(), NS_TEST_ASSERT_MSG_EQ, ns3::Simulator::Run(), ns3::SEQNO_SPACE_SIZE, ns3::WifiMacHeader::SetAddr1(), ns3::RecipientBlockAckAgreement::SetMacRxMiddle(), ns3::WifiMacHeader::SetQosTid(), ns3::WifiMacHeader::SetSequenceNumber(), ns3::WifiMacHeader::SetType(), and ns3::WIFI_MAC_QOSDATA.
Keep track of MPDUs received on the given link that are forwarded up.
mpdu | an MPDU that is forwarded up |
linkId | the ID of the given link |
Definition at line 806 of file block-ack-test-suite.cc.
References m_fwup.
Referenced by DoRun().
list of MPDUs that have been forwarded up
Definition at line 792 of file block-ack-test-suite.cc.
Referenced by DoRun(), and ForwardUp().
|
private |
the Starting Sequence Number used to initialize WinStartB
Definition at line 791 of file block-ack-test-suite.cc.
Referenced by DoRun().