Primary 20 MHz Covered By Ppdu Test This test checks whether the functions WifiPpdu::DoesOverlapChannel and WifiPpdu::DoesCoverChannel are returning the expected results. More...
Public Member Functions | |
TestPrimary20CoveredByPpdu () | |
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 | |
Ptr< HePpdu > | CreatePpdu (uint16_t ppduCenterFreqMhz) |
Function to create a PPDU. 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 | DoTeardown () override |
Implementation to do any local setup required for this TestCase. More... | |
void | RunOne (WifiPhyBand band, uint16_t phyCenterFreqMhz, uint8_t p20Index, uint16_t ppduCenterFreqMhz, bool expectedP20Overlap, bool expectedP20Covered) |
Run one function. More... | |
Private Attributes | |
Ptr< SpectrumWifiPhy > | m_rxPhy |
RX PHY. More... | |
Ptr< SpectrumWifiPhy > | m_txPhy |
TX PHY. 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... | |
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... | |
Primary 20 MHz Covered By Ppdu Test This test checks whether the functions WifiPpdu::DoesOverlapChannel and WifiPpdu::DoesCoverChannel are returning the expected results.
Definition at line 4496 of file wifi-phy-reception-test.cc.
TestPrimary20CoveredByPpdu::TestPrimary20CoveredByPpdu | ( | ) |
Definition at line 4537 of file wifi-phy-reception-test.cc.
Function to create a PPDU.
ppduCenterFreqMhz | the center frequency used for the transmission of the PPDU (in MHz) |
Definition at line 4544 of file wifi-phy-reception-test.cc.
References ns3::WifiPhy::CalculateTxDuration(), ns3::WifiPhy::GetOperatingChannel(), ns3::WifiPhy::GetPhyBand(), m_rxPhy, m_txPhy, ns3::WifiPhy::SetOperatingChannel(), check-style-clang-format::type, ns3::WIFI_MAC_QOSDATA, ns3::WIFI_PREAMBLE_HE_SU, and ns3::WIFI_STANDARD_80211ax.
Referenced by RunOne().
|
overrideprivatevirtual |
Implementation to actually run this TestCase.
Subclasses should override this method to conduct their tests.
Implements ns3::TestCase.
Definition at line 4628 of file wifi-phy-reception-test.cc.
References RunOne(), ns3::WIFI_PHY_BAND_2_4GHZ, and ns3::WIFI_PHY_BAND_5GHZ.
|
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 4566 of file wifi-phy-reception-test.cc.
References ns3::SpectrumWifiPhy::AddChannel(), ns3::WifiPhy::ConfigureStandard(), m_rxPhy, m_txPhy, ns3::WifiPhy::SetErrorRateModel(), ns3::WifiPhy::SetInterferenceHelper(), and ns3::WIFI_STANDARD_80211ax.
|
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 4586 of file wifi-phy-reception-test.cc.
References ns3::Object::Dispose(), m_rxPhy, and m_txPhy.
|
private |
Run one function.
band | the PHY band to use |
phyCenterFreqMhz | the operating center frequency of the PHY (in MHz) |
p20Index | the primary20 index |
ppduCenterFreqMhz | the center frequency used for the transmission of the PPDU (in MHz) |
expectedP20Overlap | flag whether the primary 20 MHz channel is expected to be fully covered by the bandwidth of the incoming PPDU |
expectedP20Covered | flag whether the primary 20 MHz channel is expected to overlap with the bandwidth of the incoming PPDU |
Definition at line 4595 of file wifi-phy-reception-test.cc.
References CreatePpdu(), ns3::WifiPhy::GetOperatingChannel(), ns3::WifiPhy::GetPhyEntity(), ns3::WifiPhyOperatingChannel::GetPrimaryChannelCenterFrequency(), m_rxPhy, NS_TEST_ASSERT_MSG_EQ, ns3::WifiPhy::SetOperatingChannel(), check-style-clang-format::type, and ns3::WIFI_STANDARD_80211ax.
Referenced by DoRun().
|
private |
RX PHY.
Definition at line 4533 of file wifi-phy-reception-test.cc.
Referenced by CreatePpdu(), DoSetup(), DoTeardown(), and RunOne().
|
private |
TX PHY.
Definition at line 4534 of file wifi-phy-reception-test.cc.
Referenced by CreatePpdu(), DoSetup(), and DoTeardown().