A Discrete-Event Network Simulator
API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
hwmp-reactive-regression.cc
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2009 IITP RAS
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License version 2 as
7  * published by the Free Software Foundation;
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17  *
18  * Authors: Kirill Andreev <andreev@iitp.ru>
19  */
20 
21 #include "ns3/mesh-helper.h"
22 #include "ns3/simulator.h"
23 #include "ns3/random-variable-stream.h"
24 #include "ns3/rng-seed-manager.h"
25 #include "ns3/mobility-helper.h"
26 #include "ns3/double.h"
27 #include "ns3/uinteger.h"
28 #include "ns3/string.h"
29 #include "ns3/yans-wifi-helper.h"
30 #include "ns3/internet-stack-helper.h"
31 #include "ns3/ipv4-address-helper.h"
32 #include "ns3/abort.h"
33 #include "ns3/udp-echo-helper.h"
34 #include "ns3/mobility-model.h"
35 #include "ns3/pcap-test.h"
36 #include <sstream>
37 
38 #include "hwmp-reactive-regression.h"
39 
41 const char * const PREFIX = "hwmp-reactive-regression-test";
42 
43 HwmpReactiveRegressionTest::HwmpReactiveRegressionTest () : TestCase ("HWMP on-demand regression test"),
44  m_nodes (0),
45  m_time (Seconds (10))
46 {
47 }
48 HwmpReactiveRegressionTest::~HwmpReactiveRegressionTest ()
49 {
50  delete m_nodes;
51 }
52 void
54 {
55  RngSeedManager::SetSeed (12345);
56  RngSeedManager::SetRun (7);
57  CreateNodes ();
58  CreateDevices ();
59  InstallApplications ();
60 
61  Simulator::Stop (m_time);
62  Simulator::Run ();
63  Simulator::Destroy ();
64 
65  CheckResults ();
66  delete m_nodes, m_nodes = 0;
67 }
68 void
69 HwmpReactiveRegressionTest::CreateNodes ()
70 {
71  m_nodes = new NodeContainer;
72  m_nodes->Create (6);
73  MobilityHelper mobility;
74  Ptr<ListPositionAllocator> positionAlloc = CreateObject<ListPositionAllocator>();
75  positionAlloc->Add (Vector ( 0, 0, 0));
76  positionAlloc->Add (Vector ( 0, 150, 0));
77  positionAlloc->Add (Vector ( 0, 300, 0));
78  positionAlloc->Add (Vector ( 0, 450, 0));
79  positionAlloc->Add (Vector ( 0, 600, 0));
80  positionAlloc->Add (Vector ( 0, 750, 0));
81  mobility.SetPositionAllocator (positionAlloc);
82  mobility.SetMobilityModel ("ns3::ConstantPositionMobilityModel");
83  mobility.Install (*m_nodes);
84  Simulator::Schedule (Seconds (5.0), &HwmpReactiveRegressionTest::ResetPosition, this);
85 }
86 void
87 HwmpReactiveRegressionTest::InstallApplications ()
88 {
89  UdpEchoServerHelper echoServer (9);
90  ApplicationContainer serverApps = echoServer.Install (m_nodes->Get (0));
91  serverApps.Start (Seconds (0.0));
92  serverApps.Stop (m_time);
93  UdpEchoClientHelper echoClient (m_interfaces.GetAddress (0), 9);
94  echoClient.SetAttribute ("MaxPackets", UintegerValue (300));
95  echoClient.SetAttribute ("Interval", TimeValue (Seconds (0.5)));
96  echoClient.SetAttribute ("PacketSize", UintegerValue (20));
97  ApplicationContainer clientApps = echoClient.Install (m_nodes->Get (5));
98  clientApps.Start (Seconds (2.0));
99  clientApps.Stop (m_time);
100 }
101 void
102 HwmpReactiveRegressionTest::CreateDevices ()
103 {
104  int64_t streamsUsed = 0;
105  // 1. setup WiFi
106  YansWifiPhyHelper wifiPhy = YansWifiPhyHelper::Default ();
107  // This test suite output was originally based on YansErrorRateModel
108  wifiPhy.SetErrorRateModel ("ns3::YansErrorRateModel");
109  YansWifiChannelHelper wifiChannel = YansWifiChannelHelper::Default ();
110  Ptr<YansWifiChannel> chan = wifiChannel.Create ();
111  wifiPhy.SetChannel (chan);
112 
113  // 2. setup mesh
114  MeshHelper mesh = MeshHelper::Default ();
115  mesh.SetStackInstaller ("ns3::Dot11sStack");
116  mesh.SetMacType ("RandomStart", TimeValue (Seconds (0.1)));
117  mesh.SetNumberOfInterfaces (1);
118  NetDeviceContainer meshDevices = mesh.Install (wifiPhy, *m_nodes);
119  // Six devices, 4 streams per device
120  streamsUsed += mesh.AssignStreams (meshDevices, streamsUsed);
121  NS_TEST_EXPECT_MSG_EQ (streamsUsed, (meshDevices.GetN () * 4), "Stream assignment mismatch");
122  streamsUsed += wifiChannel.AssignStreams (chan, streamsUsed);
123  NS_TEST_EXPECT_MSG_EQ (streamsUsed, (meshDevices.GetN () * 4), "Stream assignment mismatch");
124 
125  // 3. setup TCP/IP
126  InternetStackHelper internetStack;
127  internetStack.Install (*m_nodes);
128  Ipv4AddressHelper address;
129  address.SetBase ("10.1.1.0", "255.255.255.0");
130  m_interfaces = address.Assign (meshDevices);
131  // 4. write PCAP if needed
132  wifiPhy.EnablePcapAll (CreateTempDirFilename (PREFIX));
133 }
134 
135 void
136 HwmpReactiveRegressionTest::CheckResults ()
137 {
138  for (int i = 0; i < 6; ++i)
139  {
140  NS_PCAP_TEST_EXPECT_EQ (PREFIX << "-" << i << "-1.pcap");
141  }
142 }
143 
144 void
145 HwmpReactiveRegressionTest::ResetPosition ()
146 {
147  Ptr<Object> object = m_nodes->Get (3);
148  Ptr<MobilityModel> model = object->GetObject<MobilityModel> ();
149  if (model == 0)
150  {
151  return;
152  }
153  model->SetPosition (Vector (9000, 0, 0));
154 
155 }
holds a vector of ns3::Application pointers.
smart pointer class similar to boost::intrusive_ptr
Definition: ptr.h:59
void SetErrorRateModel(std::string name, std::string n0="", const AttributeValue &v0=EmptyAttributeValue(), std::string n1="", const AttributeValue &v1=EmptyAttributeValue(), std::string n2="", const AttributeValue &v2=EmptyAttributeValue(), std::string n3="", const AttributeValue &v3=EmptyAttributeValue(), std::string n4="", const AttributeValue &v4=EmptyAttributeValue(), std::string n5="", const AttributeValue &v5=EmptyAttributeValue(), std::string n6="", const AttributeValue &v6=EmptyAttributeValue(), std::string n7="", const AttributeValue &v7=EmptyAttributeValue())
NodeContainer * m_nodes
XXX It is important to have pointers here.
Ptr< YansWifiChannel > Create(void) const
Make it easy to create and manage PHY objects for the yans model.
create an application which sends a udp packet and waits for an echo of this packet ...
aggregate IP/TCP/UDP functionality to existing Nodes.
encapsulates test code
Definition: test.h:834
a 3d vector
Definition: vector.h:31
void SetNumberOfInterfaces(uint32_t nInterfaces)
Set a number of interfaces in a mesh network.
Definition: mesh-helper.cc:74
uint32_t GetN(void) const
Get the number of Ptr<NetDevice> stored in this container.
Keep track of the current position and velocity of an object.
void SetChannel(Ptr< YansWifiChannel > channel)
Create a server application which waits for input udp packets and sends them back to the original sen...
void Install(Ptr< Node > node) const
"Layout" a single node according to the current position allocator type.
void EnablePcapAll(std::string prefix, bool promiscuous=false)
Enable pcap output on each device (which is of the appropriate type) in the set of all nodes created ...
hold objects of type ns3::Time
Definition: nstime.h:700
Hold an unsigned integer type.
Definition: uinteger.h:46
holds a vector of ns3::NetDevice pointers
void Start(Time start)
Arrange for all of the Applications in this container to Start() at the Time given as a parameter...
void SetMacType(std::string n0="", const AttributeValue &v0=EmptyAttributeValue(), std::string n1="", const AttributeValue &v1=EmptyAttributeValue(), std::string n2="", const AttributeValue &v2=EmptyAttributeValue(), std::string n3="", const AttributeValue &v3=EmptyAttributeValue(), std::string n4="", const AttributeValue &v4=EmptyAttributeValue(), std::string n5="", const AttributeValue &v5=EmptyAttributeValue(), std::string n6="", const AttributeValue &v6=EmptyAttributeValue(), std::string n7="", const AttributeValue &v7=EmptyAttributeValue())
Definition: mesh-helper.cc:123
keep track of a set of node pointers.
void SetMobilityModel(std::string type, std::string n1="", const AttributeValue &v1=EmptyAttributeValue(), std::string n2="", const AttributeValue &v2=EmptyAttributeValue(), std::string n3="", const AttributeValue &v3=EmptyAttributeValue(), std::string n4="", const AttributeValue &v4=EmptyAttributeValue(), std::string n5="", const AttributeValue &v5=EmptyAttributeValue(), std::string n6="", const AttributeValue &v6=EmptyAttributeValue(), std::string n7="", const AttributeValue &v7=EmptyAttributeValue(), std::string n8="", const AttributeValue &v8=EmptyAttributeValue(), std::string n9="", const AttributeValue &v9=EmptyAttributeValue())
void Install(std::string nodeName) const
virtual void DoRun()
Implementation to actually run this test case.
manage and create wifi channel objects for the yans model.
int64_t AssignStreams(NetDeviceContainer c, int64_t stream)
Definition: mesh-helper.cc:212
void SetStackInstaller(std::string type, std::string n0="", const AttributeValue &v0=EmptyAttributeValue(), std::string n1="", const AttributeValue &v1=EmptyAttributeValue(), std::string n2="", const AttributeValue &v2=EmptyAttributeValue(), std::string n3="", const AttributeValue &v3=EmptyAttributeValue(), std::string n4="", const AttributeValue &v4=EmptyAttributeValue(), std::string n5="", const AttributeValue &v5=EmptyAttributeValue(), std::string n6="", const AttributeValue &v6=EmptyAttributeValue(), std::string n7="", const AttributeValue &v7=EmptyAttributeValue())
Definition: mesh-helper.cc:46
void SetPosition(const Vector &position)
Helper class used to assign positions and mobility models to nodes.
void Stop(Time stop)
Arrange for all of the Applications in this container to Stop() at the Time given as a parameter...
Ipv4InterfaceContainer Assign(const NetDeviceContainer &c)
Assign IP addresses to the net devices specified in the container based on the current network prefix...
Time Seconds(double seconds)
create ns3::Time instances in units of seconds.
Definition: nstime.h:586
NetDeviceContainer Install(const WifiPhyHelper &phyHelper, NodeContainer c) const
Install 802.11s mesh device & protocols on given node list.
Definition: mesh-helper.cc:79
Ptr< Node > Get(uint32_t i) const
Get the Ptr<Node> stored in this container at a given index.
A helper class to make life easier while doing simple IPv4 address assignment in scripts.
void Create(uint32_t n)
Create n nodes and append pointers to them to the end of this NodeContainer.
void SetAttribute(std::string name, const AttributeValue &value)
Helper to create IEEE 802.11s mesh networks.
Definition: mesh-helper.h:38
void SetPositionAllocator(Ptr< PositionAllocator > allocator)
Ptr< T > GetObject(void) const
Definition: object.h:332
int64_t AssignStreams(Ptr< YansWifiChannel > c, int64_t stream)
void SetBase(Ipv4Address network, Ipv4Mask mask, Ipv4Address base="0.0.0.1")
Set the base network number, network mask and base address.
Ipv4Address GetAddress(uint32_t i, uint32_t j=0) const