Make sure that Ideal rate manager recovers when the station is moving away from the access point. More...
Public Member Functions | |
Issue40TestCase () | |
~Issue40TestCase () override | |
void | DoRun () override |
Implementation to actually run this TestCase. More... | |
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 | |
void | RunOne (bool useAmpdu) |
Run one function. More... | |
void | RxSuccessCallback (std::string context, Ptr< const Packet > p) |
Callback when packet is successfully received. More... | |
void | SendPackets (uint8_t numPackets, Ptr< NetDevice > sourceDevice, Address &destination) |
Triggers the arrival of 1000 Byte-long packets in the source device. More... | |
void | TxFinalDataFailedCallback (std::string context, Mac48Address address) |
Transmit final data failed function. More... | |
Private Attributes | |
uint16_t | m_rxCount |
Count number of successfully received data packets. More... | |
uint16_t | m_txCount |
Count number of transmitted data packets. More... | |
uint16_t | m_txMacFinalDataFailedCount |
Count number of unsuccessfuly transmitted data packets. 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... | |
Make sure that Ideal rate manager recovers when the station is moving away from the access point.
The scenario considers an access point and a moving station. Initially, the station is located at 1 meter from the access point. After 1s, the station moves away from the access for 0.5s to reach a point away of 50 meters from the access point. The tests checks the Ideal rate manager is reset once it has failed to transmit a data packet, so that the next data packets can be successfully transmitted using a lower modulation.
See Issue 40
Definition at line 2549 of file wifi-test.cc.
Issue40TestCase::Issue40TestCase | ( | ) |
Definition at line 2589 of file wifi-test.cc.
|
override |
Definition at line 2597 of file wifi-test.cc.
|
overridevirtual |
Implementation to actually run this TestCase.
Subclasses should override this method to conduct their tests.
Implements ns3::TestCase.
Definition at line 2759 of file wifi-test.cc.
References RunOne().
|
private |
Run one function.
useAmpdu | flag to indicate whether the test should be run with A-MPDU |
Definition at line 2625 of file wifi-test.cc.
References ns3::WaypointMobilityModel::AddWaypoint(), third::channel, ns3::Config::Connect(), ns3::NodeContainer::Create(), ns3::PointerValue::Get(), ns3::NetDeviceContainer::Get(), ns3::NodeContainer::Get(), ns3::ObjectBase::GetAttribute(), ns3::WifiNetDevice::GetMac(), ns3::Object::GetObject(), m_rxCount, m_txCount, m_txMacFinalDataFailedCount, third::mac, ns3::MakeCallback(), third::mobility, NS_TEST_ASSERT_MSG_EQ, third::phy, RxSuccessCallback(), ns3::Seconds(), SendPackets(), TxFinalDataFailedCallback(), third::wifi, ns3::WIFI_STANDARD_80211ac, and third::wifiApNode.
Referenced by DoRun().
Callback when packet is successfully received.
context | node context |
p | the received packet |
Definition at line 2602 of file wifi-test.cc.
References m_rxCount.
Referenced by RunOne().
|
private |
Triggers the arrival of 1000 Byte-long packets in the source device.
numPackets | number of packets in burst |
sourceDevice | pointer to the source NetDevice |
destination | address of the destination device |
Definition at line 2608 of file wifi-test.cc.
References m_txCount.
Referenced by RunOne().
|
private |
Transmit final data failed function.
context | the context |
address | the MAC address |
Definition at line 2619 of file wifi-test.cc.
References m_txMacFinalDataFailedCount.
Referenced by RunOne().
|
private |
Count number of successfully received data packets.
Definition at line 2583 of file wifi-test.cc.
Referenced by RunOne(), and RxSuccessCallback().
|
private |
Count number of transmitted data packets.
Definition at line 2584 of file wifi-test.cc.
Referenced by RunOne(), and SendPackets().
|
private |
Count number of unsuccessfuly transmitted data packets.
Definition at line 2586 of file wifi-test.cc.
Referenced by RunOne(), and TxFinalDataFailedCallback().