Test the WifiPhyOperatingChannel::Get20MHzIndicesCoveringRu() method. More...
Public Member Functions | |
Wifi20MHzIndicesCoveringRuTest (WifiStandard standard) | |
Constructor. | |
~Wifi20MHzIndicesCoveringRuTest () override=default | |
void | RunOne (uint8_t primary20, WifiRu::RuSpec ru, MHz_u width, const std::set< uint8_t > &indices) |
Check that the indices of the 20 MHz channels covering the given RU as computed by WifiPhyOperatingChannel::Get20MHzIndicesCoveringRu() are correct. | |
![]() | |
TestCase (const TestCase &)=delete | |
virtual | ~TestCase () |
Destructor. | |
std::string | GetName () const |
TestCase & | operator= (const TestCase &)=delete |
Private Member Functions | |
void | DoRun () override |
Implementation to actually run this TestCase. | |
Private Attributes | |
WifiPhyOperatingChannel | m_channel |
operating channel | |
WifiStandard | m_standard |
The standard to use for the test. | |
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. | |
Test the WifiPhyOperatingChannel::Get20MHzIndicesCoveringRu() method.
Definition at line 53 of file wifi-ru-allocation-test.cc.
Wifi20MHzIndicesCoveringRuTest::Wifi20MHzIndicesCoveringRuTest | ( | WifiStandard | standard | ) |
Constructor.
standard | the standard to use for the test |
Definition at line 85 of file wifi-ru-allocation-test.cc.
|
overridedefault |
|
overrideprivatevirtual |
Implementation to actually run this TestCase.
Subclasses should override this method to conduct their tests.
Implements ns3::TestCase.
Definition at line 120 of file wifi-ru-allocation-test.cc.
References m_channel, m_standard, anonymous_namespace{wifi-ru-allocation-test.cc}::MakeRuSpec(), RunOne(), ns3::WifiPhyOperatingChannel::SetDefault(), ns3::WIFI_PHY_BAND_6GHZ, ns3::WIFI_STANDARD_80211ax, and ns3::WIFI_STANDARD_80211be.
void Wifi20MHzIndicesCoveringRuTest::RunOne | ( | uint8_t | primary20, |
WifiRu::RuSpec | ru, | ||
MHz_u | width, | ||
const std::set< uint8_t > & | indices ) |
Check that the indices of the 20 MHz channels covering the given RU as computed by WifiPhyOperatingChannel::Get20MHzIndicesCoveringRu() are correct.
primary20 | the index of the primary20 channel to configure |
ru | the given RU |
width | the width of the channel to which the given RU refers to; normally, it is the width of the PPDU for which the RU is allocated |
indices | the expected indices |
Definition at line 93 of file wifi-ru-allocation-test.cc.
References ns3::WifiPhyOperatingChannel::Get20MHzIndicesCoveringRu(), ns3::WifiPhyOperatingChannel::GetWidth(), m_channel, NS_TEST_EXPECT_MSG_EQ, and ns3::WifiPhyOperatingChannel::SetPrimary20Index().
Referenced by DoRun().
|
private |
operating channel
Definition at line 82 of file wifi-ru-allocation-test.cc.
|
private |
The standard to use for the test.
Definition at line 81 of file wifi-ru-allocation-test.cc.
Referenced by DoRun().