A-MPDU reception test. More...
Public Member Functions | |
TestAmpduReception () | |
Public Member Functions inherited from WifiPhyReceptionTest | |
WifiPhyReceptionTest (std::string test_name) | |
Constructor. More... | |
~WifiPhyReceptionTest () override=default | |
Destructor. More... | |
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 | CheckPhyState (WifiPhyState expectedState) |
Check the PHY state. More... | |
void | CheckRxDroppedBitmapAmpdu1 (uint8_t expected) |
Check the RX dropped bitmap for A-MPDU 1. More... | |
void | CheckRxDroppedBitmapAmpdu2 (uint8_t expected) |
Check the RX dropped bitmap for A-MPDU 2. More... | |
void | CheckRxFailureBitmapAmpdu1 (uint8_t expected) |
Check the RX failure bitmap for A-MPDU 1. More... | |
void | CheckRxFailureBitmapAmpdu2 (uint8_t expected) |
Check the RX failure bitmap for A-MPDU 2. More... | |
void | CheckRxSuccessBitmapAmpdu1 (uint8_t expected) |
Check the RX success bitmap for A-MPDU 1. More... | |
void | CheckRxSuccessBitmapAmpdu2 (uint8_t expected) |
Check the RX success bitmap for A-MPDU 2. More... | |
void | DoRun () override |
Implementation to actually run this TestCase. More... | |
void | DoSetup () override |
Implementation to do any local setup required for this TestCase. More... | |
void | IncrementFailureBitmap (uint32_t size) |
Increment reception failure bitmap. More... | |
void | IncrementSuccessBitmap (uint32_t size) |
Increment reception success bitmap. More... | |
void | ResetBitmaps () |
Reset bitmaps function. More... | |
void | RxDropped (Ptr< const Packet > p, WifiPhyRxfailureReason reason) |
RX dropped function. More... | |
void | RxFailure (Ptr< const WifiPsdu > psdu) |
RX failure function. More... | |
void | RxSuccess (Ptr< const WifiPsdu > psdu, RxSignalInfo rxSignalInfo, WifiTxVector txVector, std::vector< bool > statusPerMpdu) |
RX success function. More... | |
void | SendAmpduWithThreeMpdus (double rxPowerDbm, uint32_t referencePacketSize) |
Send A-MPDU with 3 MPDUs of different size (i-th MSDU will have 100 bytes more than (i-1)-th). More... | |
Private Attributes | |
uint8_t | m_rxDroppedBitmapAmpdu1 {0} |
bitmap of dropped MPDUs in A-MPDU #1 More... | |
uint8_t | m_rxDroppedBitmapAmpdu2 {0} |
bitmap of dropped MPDUs in A-MPDU #2 More... | |
uint8_t | m_rxFailureBitmapAmpdu1 {0} |
bitmap of unsuccessfully received MPDUs in A-MPDU #1 More... | |
uint8_t | m_rxFailureBitmapAmpdu2 {0} |
bitmap of unsuccessfully received MPDUs in A-MPDU #2 More... | |
uint8_t | m_rxSuccessBitmapAmpdu1 {0} |
bitmap of successfully received MPDUs in A-MPDU #1 More... | |
uint8_t | m_rxSuccessBitmapAmpdu2 {0} |
bitmap of successfully received MPDUs in A-MPDU #2 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 WifiPhyReceptionTest | |
void | CheckPhyState (WifiPhyState expectedState) |
Schedule now to check the PHY state. More... | |
void | DoCheckPhyState (WifiPhyState expectedState) |
Check the PHY state now. More... | |
void | DoTeardown () override |
Implementation to do any local setup required for this TestCase. More... | |
void | SendPacket (double rxPowerDbm, uint32_t packetSize, uint8_t mcs) |
Send packet function. 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... | |
Protected Attributes inherited from WifiPhyReceptionTest | |
Ptr< SpectrumWifiPhy > | m_phy |
the PHY More... | |
uint64_t | m_uid {0} |
the UID to use for the PPDU More... | |
A-MPDU reception test.
Definition at line 2466 of file wifi-phy-reception-test.cc.
TestAmpduReception::TestAmpduReception | ( | ) |
Definition at line 2569 of file wifi-phy-reception-test.cc.
|
private |
Check the PHY state.
expectedState | the expected PHY state |
Definition at line 2760 of file wifi-phy-reception-test.cc.
References ns3::PointerValue::Get(), ns3::ObjectBase::GetAttribute(), WifiPhyReceptionTest::m_phy, ns3::Now(), and NS_TEST_ASSERT_MSG_EQ.
|
private |
Check the RX dropped bitmap for A-MPDU 1.
expected | the expected bitmap |
Definition at line 2744 of file wifi-phy-reception-test.cc.
References m_rxDroppedBitmapAmpdu1, and NS_TEST_ASSERT_MSG_EQ.
Referenced by DoRun().
|
private |
Check the RX dropped bitmap for A-MPDU 2.
expected | the expected bitmap |
Definition at line 2752 of file wifi-phy-reception-test.cc.
References m_rxDroppedBitmapAmpdu2, and NS_TEST_ASSERT_MSG_EQ.
Referenced by DoRun().
|
private |
Check the RX failure bitmap for A-MPDU 1.
expected | the expected bitmap |
Definition at line 2728 of file wifi-phy-reception-test.cc.
References m_rxFailureBitmapAmpdu1, and NS_TEST_ASSERT_MSG_EQ.
Referenced by DoRun().
|
private |
Check the RX failure bitmap for A-MPDU 2.
expected | the expected bitmap |
Definition at line 2736 of file wifi-phy-reception-test.cc.
References m_rxFailureBitmapAmpdu2, and NS_TEST_ASSERT_MSG_EQ.
Referenced by DoRun().
|
private |
Check the RX success bitmap for A-MPDU 1.
expected | the expected bitmap |
Definition at line 2712 of file wifi-phy-reception-test.cc.
References m_rxSuccessBitmapAmpdu1, and NS_TEST_ASSERT_MSG_EQ.
Referenced by DoRun().
|
private |
Check the RX success bitmap for A-MPDU 2.
expected | the expected bitmap |
Definition at line 2720 of file wifi-phy-reception-test.cc.
References m_rxSuccessBitmapAmpdu2, and NS_TEST_ASSERT_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 2833 of file wifi-phy-reception-test.cc.
References ns3::WifiPhy::AssignStreams(), CheckRxDroppedBitmapAmpdu1(), CheckRxDroppedBitmapAmpdu2(), CheckRxFailureBitmapAmpdu1(), CheckRxFailureBitmapAmpdu2(), CheckRxSuccessBitmapAmpdu1(), CheckRxSuccessBitmapAmpdu2(), WifiPhyReceptionTest::m_phy, ns3::MicroSeconds(), ns3::NanoSeconds(), ResetBitmaps(), ns3::Seconds(), and SendAmpduWithThreeMpdus().
|
overrideprivatevirtual |
Implementation to do any local setup required for this TestCase.
Subclasses should override this method to perform any costly per-test setup before DoRun is invoked.
Reimplemented from WifiPhyReceptionTest.
Definition at line 2812 of file wifi-phy-reception-test.cc.
References WifiPhyReceptionTest::DoSetup(), WifiPhyReceptionTest::m_phy, ns3::MakeCallback(), ns3::MicroSeconds(), RxDropped(), RxFailure(), RxSuccess(), ns3::WifiPhy::SetFrameCaptureModel(), ns3::WifiPhy::SetPreambleDetectionModel(), ns3::WifiPhy::SetReceiveErrorCallback(), ns3::WifiPhy::SetReceiveOkCallback(), and ns3::ObjectBase::TraceConnectWithoutContext().
|
private |
Increment reception failure bitmap.
size | the size of the received packet |
Definition at line 2653 of file wifi-phy-reception-test.cc.
References m_rxFailureBitmapAmpdu1, and m_rxFailureBitmapAmpdu2.
Referenced by RxFailure(), and RxSuccess().
|
private |
Increment reception success bitmap.
size | the size of the received packet |
Definition at line 2614 of file wifi-phy-reception-test.cc.
References m_rxSuccessBitmapAmpdu1, and m_rxSuccessBitmapAmpdu2.
Referenced by RxSuccess().
|
private |
Reset bitmaps function.
Definition at line 2575 of file wifi-phy-reception-test.cc.
References m_rxDroppedBitmapAmpdu1, m_rxDroppedBitmapAmpdu2, m_rxFailureBitmapAmpdu1, m_rxFailureBitmapAmpdu2, m_rxSuccessBitmapAmpdu1, and m_rxSuccessBitmapAmpdu2.
Referenced by DoRun().
|
private |
RX dropped function.
p | the packet |
reason | the reason |
Definition at line 2682 of file wifi-phy-reception-test.cc.
References ns3::Packet::GetSize(), m_rxDroppedBitmapAmpdu1, m_rxDroppedBitmapAmpdu2, and NS_LOG_FUNCTION.
Referenced by DoSetup().
RX failure function.
psdu | the PSDU |
Definition at line 2643 of file wifi-phy-reception-test.cc.
References ns3::WifiPsdu::begin(), ns3::WifiPsdu::end(), IncrementFailureBitmap(), and NS_LOG_FUNCTION.
Referenced by DoSetup().
|
private |
RX success function.
psdu | the PSDU |
rxSignalInfo | the info on the received signal ( |
txVector | the transmit vector |
statusPerMpdu | reception status per MPDU |
Definition at line 2586 of file wifi-phy-reception-test.cc.
References ns3::WifiPsdu::begin(), ns3::WifiPsdu::end(), ns3::WifiPsdu::GetNMpdus(), IncrementFailureBitmap(), IncrementSuccessBitmap(), NS_ABORT_MSG_IF, and NS_LOG_FUNCTION.
Referenced by DoSetup().
|
private |
Send A-MPDU with 3 MPDUs of different size (i-th MSDU will have 100 bytes more than (i-1)-th).
rxPowerDbm | the transmit power in dBm |
referencePacketSize | the reference size of the packets in bytes (i-th MSDU will have 100 bytes more than (i-1)-th) |
Definition at line 2774 of file wifi-phy-reception-test.cc.
References ns3::WifiPhy::CalculateTxDuration(), CHANNEL_WIDTH, ns3::DbmToW(), FREQUENCY, ns3::WifiPhy::GetOperatingChannel(), ns3::WifiPhy::GetPhyBand(), ns3::WifiPsdu::GetSize(), GUARD_WIDTH, WifiPhyReceptionTest::m_phy, WifiPhyReceptionTest::m_uid, ns3::WifiMacHeader::SetQosTid(), ns3::WifiMacHeader::SetType(), ns3::SpectrumWifiPhy::StartRx(), ns3::WIFI_MAC_QOSDATA, and ns3::WIFI_PREAMBLE_HE_SU.
Referenced by DoRun().
|
private |
bitmap of dropped MPDUs in A-MPDU #1
Definition at line 2565 of file wifi-phy-reception-test.cc.
Referenced by CheckRxDroppedBitmapAmpdu1(), ResetBitmaps(), and RxDropped().
|
private |
bitmap of dropped MPDUs in A-MPDU #2
Definition at line 2566 of file wifi-phy-reception-test.cc.
Referenced by CheckRxDroppedBitmapAmpdu2(), ResetBitmaps(), and RxDropped().
|
private |
bitmap of unsuccessfully received MPDUs in A-MPDU #1
Definition at line 2562 of file wifi-phy-reception-test.cc.
Referenced by CheckRxFailureBitmapAmpdu1(), IncrementFailureBitmap(), and ResetBitmaps().
|
private |
bitmap of unsuccessfully received MPDUs in A-MPDU #2
Definition at line 2563 of file wifi-phy-reception-test.cc.
Referenced by CheckRxFailureBitmapAmpdu2(), IncrementFailureBitmap(), and ResetBitmaps().
|
private |
bitmap of successfully received MPDUs in A-MPDU #1
Definition at line 2559 of file wifi-phy-reception-test.cc.
Referenced by CheckRxSuccessBitmapAmpdu1(), IncrementSuccessBitmap(), and ResetBitmaps().
|
private |
bitmap of successfully received MPDUs in A-MPDU #2
Definition at line 2560 of file wifi-phy-reception-test.cc.
Referenced by CheckRxSuccessBitmapAmpdu2(), IncrementSuccessBitmap(), and ResetBitmaps().