Test TXOP rules. More...
Classes | |
struct | FrameInfo |
Information about transmitted frames. More... | |
struct | Params |
Parameters for this test. More... | |
Public Member Functions | |
WifiTxopTest (const Params ¶ms) | |
Constructor. | |
void | CheckResults () |
Check correctness of transmitted frames. | |
void | L7Receive (std::string context, Ptr< const Packet > p, const Address &addr) |
Function to trace packets received by the server application. | |
void | Transmit (std::string context, WifiConstPsduMap psduMap, WifiTxVector txVector, double txPowerW) |
Callback invoked when PHY receives a PSDU to transmit. | |
Public Member Functions inherited from ns3::TestCase | |
TestCase (const TestCase &)=delete | |
virtual | ~TestCase () |
Destructor. | |
std::string | GetName () const |
TestCase & | operator= (const TestCase &)=delete |
Private Types | |
enum | TrafficDirection : uint8_t { DOWNLINK = 0 , UPLINK } |
Enumeration for traffic directions. More... | |
Private Member Functions | |
void | DoRun () override |
Implementation to actually run this TestCase. | |
Ptr< PacketSocketClient > | GetApplication (TrafficDirection dir, std::size_t staId, std::size_t count, std::size_t pktSize) const |
Private Attributes | |
bool | m_apCorrupted |
whether the frame to be corrupted by the AP has been corrupted | |
NetDeviceContainer | m_apDevices |
container for AP's NetDevice | |
Ptr< ListErrorModel > | m_apErrorModel |
error model to install on the AP | |
Time | m_apTxopLimit |
TXOP limit for AP (AC BE) | |
std::vector< PacketSocketAddress > | m_dlSockets |
packet socket address for DL traffic | |
bool | m_lengthBasedRtsCtsThresh |
whether to use length based RTS/CTS threshold | |
WifiMode | m_mode |
wifi mode used to transmit data frames | |
bool | m_nonHt |
whether to use 802.11a or 802.11ax | |
uint16_t | m_nStations |
number of stations | |
std::size_t | m_payloadSizeRtsOff |
size in bytes of packets not protected by RTS | |
std::size_t | m_payloadSizeRtsOn |
size in bytes of packets protected by RTS | |
bool | m_pifsRecovery |
whether to use PIFS recovery | |
bool | m_protectedIfResponded |
whether a STA is protected if it responds to the AP | |
uint16_t | m_received |
number of packets received by the stations | |
bool | m_singleRtsPerTxop |
whether to use single RTS per TXOP | |
uint8_t | m_staAifsn |
AIFSN for STAs (AC BE) | |
bool | m_staCorrupted |
whether the frame to be corrupted by the STA has been corrupted | |
uint32_t | m_staCwMax |
CWmax for STAs (AC BE) | |
uint32_t | m_staCwMin |
CWmin for STAs (AC BE) | |
NetDeviceContainer | m_staDevices |
container for stations' NetDevices | |
Ptr< ListErrorModel > | m_staErrorModel |
error model to install on a STA | |
Time | m_startTime |
time when data frame exchanges start | |
Time | m_staTxopLimit |
TXOP limit for STAs (AC BE) | |
std::vector< FrameInfo > | m_txPsdus |
transmitted PSDUs | |
std::vector< PacketSocketAddress > | m_ulSockets |
packet socket address for UL traffic | |
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 TXOP rules.
A BSS consisting of an AP and 3 non-AP STAs is considered in this test. Both non-HT (802.11a) and HE devices are tested. Two TXOPs are simulated in this test:
Definition at line 61 of file wifi-txop-test.cc.
|
private |
Enumeration for traffic directions.
Enumerator | |
---|---|
DOWNLINK | |
UPLINK |
Definition at line 111 of file wifi-txop-test.cc.
WifiTxopTest::WifiTxopTest | ( | const Params & | params | ) |
Constructor.
params | parameters for the Wi-Fi TXOP test |
Definition at line 167 of file wifi-txop-test.cc.
void WifiTxopTest::CheckResults | ( | ) |
Check correctness of transmitted frames.
Definition at line 502 of file wifi-txop-test.cc.
References ns3::AC_BE, ns3::WifiPhy::CalculatePhyPreambleAndHeaderDuration(), ns3::DynamicCast(), ns3::NetDeviceContainer::Get(), ns3::NetDeviceContainer::GetN(), ns3::WifiRemoteStationManager::GetTypeId(), ns3::TypeId::AttributeInformation::initialValue, ns3::TypeId::LookupAttributeByName(), m_apDevices, m_apTxopLimit, m_lengthBasedRtsCtsThresh, m_nonHt, m_pifsRecovery, m_protectedIfResponded, m_received, m_singleRtsPerTxop, m_staAifsn, m_staCwMax, m_staCwMin, m_staDevices, m_staTxopLimit, m_txPsdus, ns3::MicroSeconds(), ns3::NanoSeconds(), NS_TEST_ASSERT_MSG_EQ, NS_TEST_EXPECT_MSG_EQ, NS_TEST_EXPECT_MSG_GT, NS_TEST_EXPECT_MSG_GT_OR_EQ, NS_TEST_EXPECT_MSG_LT, NS_TEST_EXPECT_MSG_LT_OR_EQ, ns3::Seconds(), and ns3::SINGLE_LINK_OP_ID.
|
overrideprivatevirtual |
Implementation to actually run this TestCase.
Subclasses should override this method to conduct their tests.
Implements ns3::TestCase.
Definition at line 272 of file wifi-txop-test.cc.
References ns3::CreateObject(), ns3::WifiMode::GetDataRate(), m_lengthBasedRtsCtsThresh, m_mode, m_nonHt, m_nStations, m_payloadSizeRtsOn, m_pifsRecovery, m_singleRtsPerTxop, ns3::Seconds(), ns3::Config::SetDefault(), ns3::RngSeedManager::SetRun(), and ns3::RngSeedManager::SetSeed().
|
private |
dir | the traffic direction (downlink/uplink) |
staId | the index (starting at 0) of the non-AP STA generating/receiving packets |
count | the number of packets to generate |
pktSize | the size of the packets to generate |
Definition at line 485 of file wifi-txop-test.cc.
References ns3::CreateObject(), dir, DOWNLINK, m_dlSockets, m_ulSockets, ns3::MicroSeconds(), pktSize, and ns3::Seconds().
Referenced by Transmit().
Function to trace packets received by the server application.
context | the context |
p | the packet |
addr | the address |
Definition at line 193 of file wifi-txop-test.cc.
References m_payloadSizeRtsOff, and m_received.
void WifiTxopTest::Transmit | ( | std::string | context, |
WifiConstPsduMap | psduMap, | ||
WifiTxVector | txVector, | ||
double | txPowerW ) |
Callback invoked when PHY receives a PSDU to transmit.
context | the context |
psduMap | the PSDU map |
txVector | the TX vector |
txPowerW | the tx power in Watts |
Definition at line 202 of file wifi-txop-test.cc.
References ns3::WifiPhy::CalculateTxDuration(), DOWNLINK, ns3::NetDeviceContainer::Get(), GetApplication(), m_apCorrupted, m_apDevices, m_apErrorModel, m_nonHt, m_payloadSizeRtsOn, m_staCorrupted, m_staDevices, m_staErrorModel, m_startTime, m_txPsdus, ns3::Simulator::Now(), NS_LOG_INFO, ns3::ListErrorModel::SetList(), ns3::SU_STA_ID, and ns3::WIFI_PHY_BAND_5GHZ.
|
private |
whether the frame to be corrupted by the AP has been corrupted
Definition at line 161 of file wifi-txop-test.cc.
Referenced by Transmit().
|
private |
container for AP's NetDevice
Definition at line 142 of file wifi-txop-test.cc.
Referenced by CheckResults(), and Transmit().
|
private |
error model to install on the AP
Definition at line 159 of file wifi-txop-test.cc.
Referenced by Transmit().
|
private |
TXOP limit for AP (AC BE)
Definition at line 144 of file wifi-txop-test.cc.
Referenced by CheckResults().
|
private |
packet socket address for DL traffic
Definition at line 163 of file wifi-txop-test.cc.
Referenced by GetApplication().
|
private |
whether to use length based RTS/CTS threshold
Definition at line 157 of file wifi-txop-test.cc.
Referenced by CheckResults(), and DoRun().
|
private |
wifi mode used to transmit data frames
Definition at line 154 of file wifi-txop-test.cc.
Referenced by DoRun().
|
private |
whether to use 802.11a or 802.11ax
Definition at line 150 of file wifi-txop-test.cc.
Referenced by CheckResults(), DoRun(), and Transmit().
|
private |
|
private |
size in bytes of packets not protected by RTS
Definition at line 152 of file wifi-txop-test.cc.
Referenced by L7Receive().
|
private |
size in bytes of packets protected by RTS
Definition at line 151 of file wifi-txop-test.cc.
Referenced by DoRun(), and Transmit().
|
private |
whether to use PIFS recovery
Definition at line 155 of file wifi-txop-test.cc.
Referenced by CheckResults(), and DoRun().
|
private |
whether a STA is protected if it responds to the AP
Definition at line 158 of file wifi-txop-test.cc.
Referenced by CheckResults().
|
private |
number of packets received by the stations
Definition at line 149 of file wifi-txop-test.cc.
Referenced by CheckResults(), and L7Receive().
|
private |
whether to use single RTS per TXOP
Definition at line 156 of file wifi-txop-test.cc.
Referenced by CheckResults(), and DoRun().
|
private |
AIFSN for STAs (AC BE)
Definition at line 145 of file wifi-txop-test.cc.
Referenced by CheckResults().
|
private |
whether the frame to be corrupted by the STA has been corrupted
Definition at line 162 of file wifi-txop-test.cc.
Referenced by Transmit().
|
private |
CWmax for STAs (AC BE)
Definition at line 147 of file wifi-txop-test.cc.
Referenced by CheckResults().
|
private |
CWmin for STAs (AC BE)
Definition at line 146 of file wifi-txop-test.cc.
Referenced by CheckResults().
|
private |
container for stations' NetDevices
Definition at line 141 of file wifi-txop-test.cc.
Referenced by CheckResults(), and Transmit().
|
private |
error model to install on a STA
Definition at line 160 of file wifi-txop-test.cc.
Referenced by Transmit().
|
private |
time when data frame exchanges start
Definition at line 153 of file wifi-txop-test.cc.
Referenced by Transmit().
|
private |
TXOP limit for STAs (AC BE)
Definition at line 148 of file wifi-txop-test.cc.
Referenced by CheckResults().
|
private |
transmitted PSDUs
Definition at line 143 of file wifi-txop-test.cc.
Referenced by CheckResults(), and Transmit().
|
private |
packet socket address for UL traffic
Definition at line 164 of file wifi-txop-test.cc.
Referenced by GetApplication().