Simple frame capture model test. More...
Public Member Functions | |
TestSimpleFrameCaptureModel () | |
virtual | ~TestSimpleFrameCaptureModel () |
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 |
Protected Member Functions | |
void | DoSetup (void) override |
Implementation to do any local setup required for this TestCase. More... | |
void | DoTeardown (void) override |
Implementation to do any local setup required for this TestCase. 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... | |
Private Member Functions | |
void | DoRun (void) override |
Implementation to actually run this TestCase. More... | |
void | Expect1000BPacketDropped () |
Verify whether 1000 bytes packet has been dropped. More... | |
void | Expect1000BPacketReceived () |
Verify whether 1000 bytes packet has been received. More... | |
void | Expect1500BPacketDropped () |
Verify whether 1500 bytes packet has been dropped. More... | |
void | Expect1500BPacketReceived () |
Verify whether 1500 bytes packet has been received. More... | |
void | Reset (void) |
Reset function. More... | |
void | RxDropped (Ptr< const Packet > p, WifiPhyRxfailureReason reason) |
RX dropped function. More... | |
void | RxSuccess (Ptr< WifiPsdu > psdu, RxSignalInfo rxSignalInfo, WifiTxVector txVector, std::vector< bool > statusPerMpdu) |
Spectrum wifi receive success function. More... | |
void | SendPacket (double rxPowerDbm, uint32_t packetSize) |
Send packet function. More... | |
Private Attributes | |
Ptr< SpectrumWifiPhy > | m_phy |
Phy. More... | |
bool | m_rxDropped1000B |
count dropped packets with 1000B payload More... | |
bool | m_rxDropped1500B |
count dropped packets with 1500B payload More... | |
bool | m_rxSuccess1000B |
count received packets with 1000B payload More... | |
bool | m_rxSuccess1500B |
count received packets with 1500B payload More... | |
uint64_t | m_uid |
the UID to use for the PPDU 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... | |
Simple frame capture model test.
Definition at line 940 of file wifi-phy-reception-test.cc.
TestSimpleFrameCaptureModel::TestSimpleFrameCaptureModel | ( | ) |
Definition at line 1006 of file wifi-phy-reception-test.cc.
|
virtual |
Definition at line 1105 of file wifi-phy-reception-test.cc.
References m_phy.
|
overrideprivatevirtual |
Implementation to actually run this TestCase.
Subclasses should override this method to conduct their tests.
Implements ns3::TestCase.
Definition at line 1142 of file wifi-phy-reception-test.cc.
References ns3::WifiPhy::AssignStreams(), Expect1000BPacketDropped(), Expect1000BPacketReceived(), Expect1500BPacketDropped(), Expect1500BPacketReceived(), m_phy, ns3::MicroSeconds(), Reset(), ns3::Seconds(), and SendPacket().
|
overrideprotectedvirtual |
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 1111 of file wifi-phy-reception-test.cc.
References CHANNEL_NUMBER, ns3::WifiPhy::ConfigureStandard(), m_phy, ns3::MakeCallback(), ns3::MicroSeconds(), RxDropped(), RxSuccess(), ns3::WifiPhy::SetErrorRateModel(), ns3::WifiPhy::SetFrameCaptureModel(), ns3::WifiPhy::SetInterferenceHelper(), ns3::WifiPhy::SetOperatingChannel(), ns3::WifiPhy::SetPreambleDetectionModel(), ns3::WifiPhy::SetReceiveOkCallback(), ns3::ObjectBase::TraceConnectWithoutContext(), ns3::WIFI_PHY_BAND_5GHZ, and ns3::WIFI_STANDARD_80211ax.
|
overrideprotectedvirtual |
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 1135 of file wifi-phy-reception-test.cc.
References ns3::Object::Dispose(), and m_phy.
|
private |
Verify whether 1000 bytes packet has been dropped.
Definition at line 1094 of file wifi-phy-reception-test.cc.
References m_rxDropped1000B, and NS_TEST_ASSERT_MSG_EQ.
Referenced by DoRun().
|
private |
Verify whether 1000 bytes packet has been received.
Definition at line 1083 of file wifi-phy-reception-test.cc.
References m_rxSuccess1000B, and NS_TEST_ASSERT_MSG_EQ.
Referenced by DoRun().
|
private |
Verify whether 1500 bytes packet has been dropped.
Definition at line 1100 of file wifi-phy-reception-test.cc.
References m_rxDropped1500B, and NS_TEST_ASSERT_MSG_EQ.
Referenced by DoRun().
|
private |
Verify whether 1500 bytes packet has been received.
Definition at line 1089 of file wifi-phy-reception-test.cc.
References m_rxSuccess1500B, and NS_TEST_ASSERT_MSG_EQ.
Referenced by DoRun().
|
private |
Reset function.
Definition at line 1074 of file wifi-phy-reception-test.cc.
References m_rxDropped1000B, m_rxDropped1500B, m_rxSuccess1000B, and m_rxSuccess1500B.
Referenced by DoRun().
|
private |
RX dropped function.
p | the packet |
reason | the reason |
Definition at line 1060 of file wifi-phy-reception-test.cc.
References ns3::Packet::GetSize(), m_rxDropped1000B, m_rxDropped1500B, and NS_LOG_FUNCTION.
Referenced by DoSetup().
|
private |
Spectrum wifi receive success function.
psdu | the PSDU |
rxSignalInfo | the info on the received signal ( |
txVector | the transmit vector |
statusPerMpdu | reception status per MPDU |
Definition at line 1044 of file wifi-phy-reception-test.cc.
References ns3::WifiPsdu::GetSize(), ns3::WifiPsdu::IsAggregate(), ns3::WifiPsdu::IsSingle(), m_rxSuccess1000B, m_rxSuccess1500B, NS_ASSERT, and NS_LOG_FUNCTION.
Referenced by DoSetup().
|
private |
Send packet function.
rxPowerDbm | the transmit power in dBm |
packetSize | the size of the packet in bytes |
Definition at line 1017 of file wifi-phy-reception-test.cc.
References ns3::WifiPhy::CalculateTxDuration(), CHANNEL_WIDTH, ns3::DbmToW(), FREQUENCY, ns3::WifiPhy::GetPhyBand(), ns3::WifiPsdu::GetSize(), GUARD_WIDTH, m_phy, m_uid, packetSize, ns3::WifiMacHeader::SetQosTid(), ns3::WifiMacHeader::SetType(), ns3::SpectrumWifiPhy::StartRx(), ns3::WIFI_MAC_QOSDATA, ns3::WIFI_PHY_BAND_5GHZ, and ns3::WIFI_PREAMBLE_HE_SU.
Referenced by DoRun().
|
private |
Phy.
Definition at line 996 of file wifi-phy-reception-test.cc.
Referenced by ~TestSimpleFrameCaptureModel(), DoRun(), DoSetup(), DoTeardown(), and SendPacket().
|
private |
count dropped packets with 1000B payload
Definition at line 1000 of file wifi-phy-reception-test.cc.
Referenced by Expect1000BPacketDropped(), Reset(), and RxDropped().
|
private |
count dropped packets with 1500B payload
Definition at line 1001 of file wifi-phy-reception-test.cc.
Referenced by Expect1500BPacketDropped(), Reset(), and RxDropped().
|
private |
count received packets with 1000B payload
Definition at line 998 of file wifi-phy-reception-test.cc.
Referenced by Expect1000BPacketReceived(), Reset(), and RxSuccess().
|
private |
count received packets with 1500B payload
Definition at line 999 of file wifi-phy-reception-test.cc.
Referenced by Expect1500BPacketReceived(), Reset(), and RxSuccess().
|
private |
the UID to use for the PPDU
Definition at line 1003 of file wifi-phy-reception-test.cc.
Referenced by SendPacket().