20#include "ns3/ap-wifi-mac.h"
21#include "ns3/boolean.h"
22#include "ns3/config.h"
23#include "ns3/mobility-helper.h"
24#include "ns3/multi-model-spectrum-channel.h"
25#include "ns3/packet-socket-client.h"
26#include "ns3/packet-socket-helper.h"
27#include "ns3/packet-socket-server.h"
28#include "ns3/qos-utils.h"
29#include "ns3/rng-seed-manager.h"
30#include "ns3/spectrum-wifi-helper.h"
31#include "ns3/string.h"
33#include "ns3/wifi-net-device.h"
34#include "ns3/wifi-psdu.h"
61 void DoRun()
override;
117 :
TestCase(
"Test case for resuming data transmission when the recipient moves back"),
138 for (
const auto& psduPair : psduMap)
140 std::stringstream ss;
141 ss <<
" " << psduPair.second->GetHeader(0).GetTypeString() <<
" seq "
142 << psduPair.second->GetHeader(0).GetSequenceNumber() <<
" from "
143 << psduPair.second->GetAddr2() <<
" to " << psduPair.second->GetAddr1();
148 if (psduMap.begin()->second->GetHeader(0).IsQosData())
152 if (!psduMap.begin()->second->GetHeader(0).IsRetry())
188 client->SetRemote(socket);
190 client->SetStartTime(
Seconds(0.5));
191 client->SetStopTime(
Seconds(1.0));
194 server->SetLocal(socket);
196 server->SetStartTime(
Seconds(0.0));
197 server->SetStopTime(
Seconds(1.0));
204 Config::Set(
"/NodeList/*/DeviceList/*/$ns3::WifiNetDevice/Phy/$ns3::WifiPhy/ChannelSettings",
214 if (state == WifiPhyState::SWITCHING)
227 int64_t streamNumber = 100;
234 spectrumChannel->AddPropagationLossModel(lossModel);
236 CreateObject<ConstantSpeedPropagationDelayModel>();
237 spectrumChannel->SetPropagationDelayModel(delayModel);
240 phy.SetChannel(spectrumChannel);
241 phy.Set(
"ChannelSettings",
StringValue(
"{36, 20, BAND_5GHZ, 0}"));
245 wifi.SetRemoteStationManager(
"ns3::IdealWifiManager");
248 mac.SetType(
"ns3::StaWifiMac",
"Ssid",
SsidValue(
Ssid(
"channel-switching-test")));
252 mac.SetType(
"ns3::ApWifiMac",
255 "EnableBeaconJitter",
266 positionAlloc->Add(Vector(0.0, 0.0, 0.0));
267 positionAlloc->Add(Vector(5.0, 0.0, 0.0));
268 mobility.SetPositionAllocator(positionAlloc);
270 mobility.SetMobilityModel(
"ns3::ConstantPositionMobilityModel");
277 "/NodeList/*/DeviceList/*/$ns3::WifiNetDevice/Mac/$ns3::StaWifiMac/Assoc",
284 "/NodeList/0/DeviceList/*/$ns3::WifiNetDevice/Phy/State/State",
287 "/NodeList/1/DeviceList/*/$ns3::WifiNetDevice/Phy/State/State",
296 "The QoS Data frame should have been transmitted twice by the AP");
299 "The QoS Data frame should have been received once by the STA");
319 :
TestSuite(
"wifi-channel-switching", UNIT)
This test verifies that communication between an AP and a STA resumes after that both switch channel ...
uint8_t m_assocCount
count of completed Assoc Request procedures
NetDeviceContainer m_staDevice
STA device container.
void StateChange(uint32_t nodeId, Time start, Time duration, WifiPhyState state)
Callback invoked when the PHY on the given node changes state.
uint32_t m_payloadSize
payload size in bytes
NodeContainer m_staNode
STA node container.
void Associated(Mac48Address bssid)
Callback invoked when a station associates with an AP.
void SendPacket()
Send a packet from the AP to the STA through a packet socket.
uint64_t m_rxBytes
RX bytes.
void L7Receive(Ptr< const Packet > p, const Address &addr)
Function to trace packets received by the server application.
std::array< uint8_t, 2 > m_channelSwitchCount
Per-node number of channel switch events.
NetDeviceContainer m_apDevice
AP device container.
WifiChannelSwitchingTest()
Constructor.
void ChannelSwitch()
Request channel switch on both AP and STA.
NodeContainer m_apNode
AP node container.
~WifiChannelSwitchingTest() override
void Transmit(WifiConstPsduMap psduMap, WifiTxVector txVector, double txPowerW)
Callback invoked when PHY receives a PSDU to transmit from the MAC.
void DoRun() override
Implementation to actually run this TestCase.
uint8_t m_txCount
count of transmissions
WifiChannelSwitchingTestSuite()
a polymophic address class
AttributeValue implementation for Boolean.
Helper class used to assign positions and mobility models to nodes.
holds a vector of ns3::NetDevice pointers
Ptr< NetDevice > Get(uint32_t i) const
Get the Ptr<NetDevice> stored in this container at a given index.
keep track of a set of node pointers.
void Create(uint32_t n)
Create n nodes and append pointers to them to the end of this NodeContainer.
Ptr< Node > Get(uint32_t i) const
Get the Ptr<Node> stored in this container at a given index.
uint32_t AddApplication(Ptr< Application > application)
Associate an Application to this Node.
an address for a packet socket
void SetProtocol(uint16_t protocol)
Set the protocol.
void SetPhysicalAddress(const Address address)
Set the destination address.
void SetSingleDevice(uint32_t device)
Set the address to match only a specified NetDevice.
Give ns3::PacketSocket powers to ns3::Node.
void Install(Ptr< Node > node) const
Aggregate an instance of a ns3::PacketSocketFactory onto the provided node.
Smart pointer class similar to boost::intrusive_ptr.
static void SetRun(uint64_t run)
Set the run number of simulation.
static void SetSeed(uint32_t seed)
Set the seed.
static EventId Schedule(const Time &delay, FUNC f, Ts &&... args)
Schedule an event to expire after delay.
static void Destroy()
Execute the events scheduled with ScheduleDestroy().
static void Run()
Run the simulation.
static void Stop()
Tell the Simulator the calling event should be the last one executed.
Make it easy to create and manage PHY objects for the spectrum model.
The IEEE 802.11 SSID Information Element.
AttributeValue implementation for Ssid.
Hold variables of type string.
void AddTestCase(TestCase *testCase, TestDuration duration=QUICK)
Add an individual child TestCase to this test suite.
Simulation virtual time values and global simulation resolution.
AttributeValue implementation for Time.
Hold an unsigned integer type.
helps to create WifiNetDevice objects
create MAC layers for a ns3::WifiNetDevice.
static Time CalculateTxDuration(uint32_t size, const WifiTxVector &txVector, WifiPhyBand band, uint16_t staId=SU_STA_ID)
This class mimics the TXVECTOR which is to be passed to the PHY in order to define the parameters whi...
void ConnectWithoutContext(std::string path, const CallbackBase &cb)
void Set(std::string path, const AttributeValue &value)
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
#define NS_LOG_INFO(msg)
Use NS_LOG to output a message of level LOG_INFO.
#define NS_TEST_EXPECT_MSG_EQ(actual, limit, msg)
Test that an actual and expected (limit) value are equal and report if not.
Time MicroSeconds(uint64_t value)
Construct a Time in the indicated unit.
Time Seconds(double value)
Construct a Time in the indicated unit.
@ WIFI_PHY_BAND_5GHZ
The 5 GHz band.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
std::unordered_map< uint16_t, Ptr< const WifiPsdu > > WifiConstPsduMap
Map of const PSDUs indexed by STA-ID.
Callback< R, Args... > MakeCallback(R(T::*memPtr)(Args...), OBJ objPtr)
Build Callbacks for class method members which take varying numbers of arguments and potentially retu...
static WifiChannelSwitchingTestSuite g_issue211TestSuite
the test suite
WifiPhyState
The state of the PHY layer.