DL-OFDMA PHY test. More...
Public Member Functions | |
TestDlOfdmaPhyTransmission () | |
Constructor. | |
![]() | |
TestCase (const TestCase &)=delete | |
virtual | ~TestCase () |
Destructor. | |
std::string | GetName () const |
TestCase & | operator= (const TestCase &)=delete |
Private Member Functions | |
void | CheckPhyState (Ptr< OfdmaSpectrumWifiPhy< LatestPhyEntityType > > phy, WifiPhyState expectedState) |
Schedule now to check the PHY state. | |
void | CheckResultsSta1 (uint32_t expectedRxSuccess, uint32_t expectedRxFailure, uint32_t expectedRxBytes) |
Check the results for STA 1. | |
void | CheckResultsSta2 (uint32_t expectedRxSuccess, uint32_t expectedRxFailure, uint32_t expectedRxBytes) |
Check the results for STA 2. | |
void | CheckResultsSta3 (uint32_t expectedRxSuccess, uint32_t expectedRxFailure, uint32_t expectedRxBytes) |
Check the results for STA 3. | |
void | DoCheckPhyState (Ptr< OfdmaSpectrumWifiPhy< LatestPhyEntityType > > phy, WifiPhyState expectedState) |
Check the PHY state now. | |
void | DoRun () override |
Implementation to actually run this TestCase. | |
void | DoSetup () override |
Implementation to do any local setup required for this TestCase. | |
void | DoTeardown () override |
Implementation to do any local setup required for this TestCase. | |
void | GenerateInterference (Ptr< SpectrumValue > interferencePsd, Time duration) |
Generate interference function. | |
void | ResetResults () |
Reset the results. | |
void | RunOne () |
Run one function. | |
void | RxFailureSta1 (Ptr< const WifiPsdu > psdu) |
Receive failure function for STA 1. | |
void | RxFailureSta2 (Ptr< const WifiPsdu > psdu) |
Receive failure function for STA 2. | |
void | RxFailureSta3 (Ptr< const WifiPsdu > psdu) |
Receive failure function for STA 3. | |
void | RxSuccessSta1 (Ptr< const WifiPsdu > psdu, RxSignalInfo rxSignalInfo, const WifiTxVector &txVector, const std::vector< bool > &statusPerMpdu) |
Receive success function for STA 1. | |
void | RxSuccessSta2 (Ptr< const WifiPsdu > psdu, RxSignalInfo rxSignalInfo, const WifiTxVector &txVector, const std::vector< bool > &statusPerMpdu) |
Receive success function for STA 2. | |
void | RxSuccessSta3 (Ptr< const WifiPsdu > psdu, RxSignalInfo rxSignalInfo, const WifiTxVector &txVector, const std::vector< bool > &statusPerMpdu) |
Receive success function for STA 3. | |
void | SendMuPpdu (uint16_t rxStaId1, uint16_t rxStaId2) |
Send MU-PPDU function. | |
void | StopInterference () |
Stop interference function. | |
Private Attributes | |
MHz_u | m_channelWidth {DEFAULT_CHANNEL_WIDTH} |
channel width | |
uint32_t | m_countRxBytesSta1 {0} |
count RX bytes for STA 1 | |
uint32_t | m_countRxBytesSta2 {0} |
count RX bytes for STA 2 | |
uint32_t | m_countRxBytesSta3 {0} |
count RX bytes for STA 3 | |
uint32_t | m_countRxFailureSta1 {0} |
count RX failure for STA 1 | |
uint32_t | m_countRxFailureSta2 {0} |
count RX failure for STA 2 | |
uint32_t | m_countRxFailureSta3 {0} |
count RX failure for STA 3 | |
uint32_t | m_countRxSuccessSta1 {0} |
count RX success for STA 1 | |
uint32_t | m_countRxSuccessSta2 {0} |
count RX success for STA 2 | |
uint32_t | m_countRxSuccessSta3 {0} |
count RX success for STA 3 | |
Time | m_expectedPpduDuration |
expected duration to send MU PPDU | |
MHz_u | m_frequency {DEFAULT_FREQUENCY} |
frequency | |
WifiModulationClass | m_modClass |
the modulation class to consider for the test | |
Ptr< SpectrumWifiPhy > | m_phyAp |
PHY of AP. | |
Ptr< WaveformGenerator > | m_phyInterferer |
PHY of interferer. | |
Ptr< OfdmaSpectrumWifiPhy< LatestPhyEntityType > > | m_phySta1 |
PHY of STA 1. | |
Ptr< OfdmaSpectrumWifiPhy< LatestPhyEntityType > > | m_phySta2 |
PHY of STA 2. | |
Ptr< OfdmaSpectrumWifiPhy< LatestPhyEntityType > > | m_phySta3 |
PHY of STA 3. | |
Additional Inherited Members | |
![]() | |
enum class | Duration { QUICK = 1 , EXTENSIVE = 2 , TAKES_FOREVER = 3 } |
How long the test takes to execute. More... | |
![]() | |
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 |
![]() | |
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. | |
DL-OFDMA PHY test.
Definition at line 360 of file wifi-phy-ofdma-test.cc.
TestDlOfdmaPhyTransmission< LatestPhyEntityType >::TestDlOfdmaPhyTransmission | ( | ) |
Constructor.
Definition at line 518 of file wifi-phy-ofdma-test.cc.
|
private |
Schedule now to check the PHY state.
phy | the PHY |
expectedState | the expected state of the PHY |
Definition at line 791 of file wifi-phy-ofdma-test.cc.
References ns3::Simulator::ScheduleNow().
|
private |
Check the results for STA 1.
expectedRxSuccess | the expected number of RX success |
expectedRxFailure | the expected number of RX failures |
expectedRxBytes | the expected number of RX bytes |
Definition at line 740 of file wifi-phy-ofdma-test.cc.
References NS_TEST_ASSERT_MSG_EQ.
|
private |
Check the results for STA 2.
expectedRxSuccess | the expected number of RX success |
expectedRxFailure | the expected number of RX failures |
expectedRxBytes | the expected number of RX bytes |
Definition at line 757 of file wifi-phy-ofdma-test.cc.
References NS_TEST_ASSERT_MSG_EQ.
|
private |
Check the results for STA 3.
expectedRxSuccess | the expected number of RX success |
expectedRxFailure | the expected number of RX failures |
expectedRxBytes | the expected number of RX bytes |
Definition at line 774 of file wifi-phy-ofdma-test.cc.
References NS_TEST_ASSERT_MSG_EQ.
|
private |
Check the PHY state now.
phy | the PHY |
expectedState | the expected state of the PHY |
Definition at line 805 of file wifi-phy-ofdma-test.cc.
References ns3::DynamicCast(), ns3::PointerValue::Get(), ns3::Simulator::Now(), NS_LOG_FUNCTION, and NS_TEST_ASSERT_MSG_EQ.
|
overrideprivatevirtual |
Implementation to actually run this TestCase.
Subclasses should override this method to conduct their tests.
Implements ns3::TestCase.
Definition at line 1392 of file wifi-phy-ofdma-test.cc.
References ns3::Simulator::Destroy(), ns3::NanoSeconds(), and ns3::WIFI_MOD_CLASS_EHT.
|
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 ns3::TestCase.
Definition at line 823 of file wifi-phy-ofdma-test.cc.
References ns3::CreateObject(), ns3::MakeCallback(), ns3::MHzToHz(), ns3::WIFI_MOD_CLASS_EHT, ns3::WIFI_MOD_CLASS_HE, ns3::WIFI_STANDARD_80211ax, and ns3::WIFI_STANDARD_80211be.
|
overrideprivatevirtual |
Implementation to do any local setup required for this TestCase.
Subclasses should override this method to perform any costly per-test teardown
Reimplemented from ns3::TestCase.
Definition at line 944 of file wifi-phy-ofdma-test.cc.
|
private |
Generate interference function.
interferencePsd | the PSD of the interference to be generated |
duration | the duration of the interference |
Definition at line 656 of file wifi-phy-ofdma-test.cc.
References ns3::Simulator::Schedule().
|
private |
Reset the results.
Definition at line 532 of file wifi-phy-ofdma-test.cc.
|
private |
Run one function.
Definition at line 960 of file wifi-phy-ofdma-test.cc.
References ns3::Create(), ns3::BandInfo::fc, ns3::BandInfo::fh, ns3::WifiPhyOperatingChannel::FindFirst(), ns3::BandInfo::fl, ns3::MHzToHz(), ns3::MicroSeconds(), ns3::MilliSeconds(), ns3::NanoSeconds(), ns3::Simulator::Run(), ns3::Simulator::Schedule(), ns3::Seconds(), ns3::RngSeedManager::SetRun(), ns3::RngSeedManager::SetSeed(), ns3::WIFI_PHY_BAND_6GHZ, and ns3::WIFI_STANDARD_80211be.
|
private |
Receive failure function for STA 1.
psdu | the PSDU |
Definition at line 716 of file wifi-phy-ofdma-test.cc.
References NS_LOG_FUNCTION.
|
private |
Receive failure function for STA 2.
psdu | the PSDU |
Definition at line 724 of file wifi-phy-ofdma-test.cc.
References NS_LOG_FUNCTION.
|
private |
Receive failure function for STA 3.
psdu | the PSDU |
Definition at line 732 of file wifi-phy-ofdma-test.cc.
References NS_LOG_FUNCTION.
|
private |
Receive success function for STA 1.
psdu | the PSDU |
rxSignalInfo | the info on the received signal ( |
txVector | the transmit vector |
statusPerMpdu | reception status per MPDU |
Definition at line 677 of file wifi-phy-ofdma-test.cc.
References NS_LOG_FUNCTION.
|
private |
Receive success function for STA 2.
psdu | the PSDU |
rxSignalInfo | the info on the received signal ( |
txVector | the transmit vector |
statusPerMpdu | reception status per MPDU |
Definition at line 690 of file wifi-phy-ofdma-test.cc.
References NS_LOG_FUNCTION.
|
private |
Receive success function for STA 3.
psdu | the PSDU |
rxSignalInfo | the info on the received signal ( |
txVector | the transmit vector |
statusPerMpdu | reception status per MPDU |
Definition at line 703 of file wifi-phy-ofdma-test.cc.
References NS_LOG_FUNCTION.
|
private |
Send MU-PPDU function.
rxStaId1 | the ID of the recipient STA for the first PSDU |
rxStaId2 | the ID of the recipient STA for the second PSDU |
Definition at line 547 of file wifi-phy-ofdma-test.cc.
References ns3::Create(), ns3::EhtPhy::GetEhtMcs7(), ns3::EhtPhy::GetEhtMcs9(), ns3::HePhy::GetHeMcs7(), ns3::HePhy::GetHeMcs9(), ns3::VhtPhy::GetVhtMcs5(), ns3::NanoSeconds(), NS_ASSERT, NS_ASSERT_MSG, NS_LOG_FUNCTION, ns3::WifiMacHeader::SetAddr1(), ns3::WifiMacHeader::SetQosTid(), ns3::WifiMacHeader::SetSequenceNumber(), ns3::WifiMacHeader::SetType(), ns3::WIFI_MAC_QOSDATA, ns3::WIFI_MOD_CLASS_EHT, ns3::WIFI_MOD_CLASS_HE, ns3::WIFI_PREAMBLE_EHT_MU, and ns3::WIFI_PREAMBLE_HE_MU.
|
private |
Stop interference function.
Definition at line 670 of file wifi-phy-ofdma-test.cc.
|
private |
channel width
Definition at line 513 of file wifi-phy-ofdma-test.cc.
|
private |
count RX bytes for STA 1
Definition at line 502 of file wifi-phy-ofdma-test.cc.
|
private |
count RX bytes for STA 2
Definition at line 503 of file wifi-phy-ofdma-test.cc.
|
private |
count RX bytes for STA 3
Definition at line 504 of file wifi-phy-ofdma-test.cc.
|
private |
count RX failure for STA 1
Definition at line 499 of file wifi-phy-ofdma-test.cc.
|
private |
count RX failure for STA 2
Definition at line 500 of file wifi-phy-ofdma-test.cc.
|
private |
count RX failure for STA 3
Definition at line 501 of file wifi-phy-ofdma-test.cc.
|
private |
count RX success for STA 1
Definition at line 496 of file wifi-phy-ofdma-test.cc.
|
private |
count RX success for STA 2
Definition at line 497 of file wifi-phy-ofdma-test.cc.
|
private |
count RX success for STA 3
Definition at line 498 of file wifi-phy-ofdma-test.cc.
|
private |
expected duration to send MU PPDU
Definition at line 514 of file wifi-phy-ofdma-test.cc.
|
private |
frequency
Definition at line 512 of file wifi-phy-ofdma-test.cc.
|
private |
the modulation class to consider for the test
Definition at line 494 of file wifi-phy-ofdma-test.cc.
|
private |
PHY of AP.
Definition at line 506 of file wifi-phy-ofdma-test.cc.
|
private |
PHY of interferer.
Definition at line 510 of file wifi-phy-ofdma-test.cc.
|
private |
PHY of STA 1.
Definition at line 507 of file wifi-phy-ofdma-test.cc.
|
private |
PHY of STA 2.
Definition at line 508 of file wifi-phy-ofdma-test.cc.
|
private |
PHY of STA 3.
Definition at line 509 of file wifi-phy-ofdma-test.cc.