Test TXOP rules. More...
Classes | |
struct | FrameInfo |
Information about transmitted frames. More... | |
Public Member Functions | |
WifiTxopTest (bool pifsRecovery) | |
Constructor. More... | |
virtual | ~WifiTxopTest () |
void | CheckResults (void) |
Check correctness of transmitted frames. More... | |
void | L7Receive (std::string context, Ptr< const Packet > p, const Address &addr) |
Function to trace packets received by the server application. More... | |
void | Transmit (std::string context, WifiConstPsduMap psduMap, WifiTxVector txVector, double txPowerW) |
Callback invoked when PHY receives a PSDU to transmit. More... | |
Public Member Functions inherited from ns3::TestCase | |
TestCase (const TestCase &)=delete | |
virtual | ~TestCase () |
Destructor. More... | |
std::string | GetName (void) const |
TestCase & | operator= (const TestCase &)=delete |
Private Member Functions | |
void | DoRun (void) override |
Implementation to actually run this TestCase. More... | |
Private Attributes | |
uint8_t | m_aifsn |
AIFSN for BE. More... | |
NetDeviceContainer | m_apDevices |
container for AP's NetDevice More... | |
uint32_t | m_cwMin |
CWmin for BE. More... | |
uint16_t | m_nStations |
number of stations More... | |
bool | m_pifsRecovery |
whether to use PIFS recovery More... | |
uint16_t | m_received |
number of packets received by the stations More... | |
NetDeviceContainer | m_staDevices |
container for stations' NetDevices More... | |
Time | m_txopLimit |
TXOP limit. More... | |
std::vector< FrameInfo > | m_txPsdus |
transmitted PSDUs 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 TestCsse. More... | |
bool | IsStatusFailure (void) const |
Check if any tests failed. More... | |
bool | IsStatusSuccess (void) 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 (void) const |
Check if this run should assert on failure. More... | |
bool | MustContinueOnFailure (void) 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... | |
Test TXOP rules.
Definition at line 53 of file wifi-txop-test.cc.
WifiTxopTest::WifiTxopTest | ( | bool | pifsRecovery | ) |
Constructor.
pifsRecovery | whether PIFS recovery is used after failure of a non-initial frame |
Definition at line 106 of file wifi-txop-test.cc.
|
virtual |
Definition at line 115 of file wifi-txop-test.cc.
void WifiTxopTest::CheckResults | ( | void | ) |
Check correctness of transmitted frames.
Definition at line 321 of file wifi-txop-test.cc.
References ns3::NetDeviceContainer::Get(), m_aifsn, m_apDevices, m_cwMin, m_pifsRecovery, m_received, m_staDevices, m_txopLimit, m_txPsdus, ns3::MicroSeconds(), ns3::NanoSeconds(), NS_TEST_ASSERT_MSG_EQ, NS_TEST_ASSERT_MSG_GT_OR_EQ, NS_TEST_ASSERT_MSG_LT, NS_TEST_ASSERT_MSG_LT_OR_EQ, and ns3::Seconds().
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 150 of file wifi-txop-test.cc.
References CheckResults(), ns3::Config::Connect(), ns3::NetDeviceContainer::Get(), ns3::PointerValue::Get(), ns3::NetDevice::GetAddress(), ns3::NetDevice::GetIfIndex(), ns3::WifiNetDevice::GetMac(), ns3::PacketSocketHelper::Install(), L7Receive(), m_aifsn, m_apDevices, m_cwMin, m_nStations, m_pifsRecovery, m_staDevices, m_txopLimit, third::mac, ns3::MakeCallback(), ns3::MicroSeconds(), ns3::MilliSeconds(), third::mobility, third::phy, ns3::Seconds(), ns3::Config::SetDefault(), ns3::PacketSocketAddress::SetPhysicalAddress(), ns3::PacketSocketAddress::SetProtocol(), ns3::PacketSocketAddress::SetSingleDevice(), Transmit(), third::wifi, ns3::WIFI_STANDARD_80211a, third::wifiApNode, and third::wifiStaNodes.
Function to trace packets received by the server application.
context | the context |
p | the packet |
addr | the address |
Definition at line 120 of file wifi-txop-test.cc.
References ns3::Packet::GetSize(), and m_received.
Referenced by DoRun().
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 129 of file wifi-txop-test.cc.
References m_txPsdus, ns3::MilliSeconds(), ns3::Now(), SU_STA_ID, and ns3::WIFI_PHY_BAND_5GHZ.
Referenced by DoRun().
|
private |
AIFSN for BE.
Definition at line 100 of file wifi-txop-test.cc.
Referenced by CheckResults(), and DoRun().
|
private |
container for AP's NetDevice
Definition at line 97 of file wifi-txop-test.cc.
Referenced by CheckResults(), and DoRun().
|
private |
CWmin for BE.
Definition at line 101 of file wifi-txop-test.cc.
Referenced by CheckResults(), and DoRun().
|
private |
|
private |
whether to use PIFS recovery
Definition at line 103 of file wifi-txop-test.cc.
Referenced by CheckResults(), and DoRun().
|
private |
number of packets received by the stations
Definition at line 102 of file wifi-txop-test.cc.
Referenced by CheckResults(), and L7Receive().
|
private |
container for stations' NetDevices
Definition at line 96 of file wifi-txop-test.cc.
Referenced by CheckResults(), and DoRun().
|
private |
TXOP limit.
Definition at line 99 of file wifi-txop-test.cc.
Referenced by CheckResults(), and DoRun().
|
private |
transmitted PSDUs
Definition at line 98 of file wifi-txop-test.cc.
Referenced by CheckResults(), and Transmit().