17 #include "ns3/brite-module.h"
18 #include "ns3/core-module.h"
19 #include "ns3/internet-module.h"
20 #include "ns3/network-module.h"
21 #include "ns3/on-off-helper.h"
22 #include "ns3/packet-sink-helper.h"
23 #include "ns3/packet-sink.h"
24 #include "ns3/point-to-point-module.h"
25 #include "ns3/random-variable-stream.h"
49 void DoRun()
override;
53 :
TestCase(
"Test that two brite topologies created with same seed value produce same graph "
54 "(not an exact test)")
65 std::string
confFile =
"src/brite/test/test.conf";
67 SeedManager::SetRun(1);
68 SeedManager::SetSeed(1);
72 SeedManager::SetRun(1);
73 SeedManager::SetSeed(1);
82 int numAsA = bthA.
GetNAs();
83 int numAsB = bthB.
GetNAs();
90 "Total number of nodes for each topology should be equal");
93 "Total number of edges for each topology should be equal");
95 for (
unsigned int i = 0; i < bthA.
GetNAs(); ++i)
99 "Total number of leaf nodes different for AS " << i);
117 void DoRun()
override;
121 :
TestCase(
"Test that packets can be send across a BRITE topology using UDP")
132 std::string
confFile =
"src/brite/test/test.conf";
139 address.SetBase(
"10.0.0.0",
"255.255.255.0");
148 stack.Install(source);
151 int numNodesInAsZero =
bth.GetNNodesForAs(0);
152 source.
Add(
bth.GetNodeForAs(0, numNodesInAsZero - 1));
158 int numNodesInAsOne =
bth.GetNNodesForAs(1);
159 sink.Add(
bth.GetNodeForAs(1, numNodesInAsOne - 1));
167 p2pSourceDevices =
p2p.Install(source);
168 p2pSinkDevices =
p2p.Install(
sink);
170 address.SetBase(
"10.1.0.0",
"255.255.0.0");
172 sourceInterfaces =
address.Assign(p2pSourceDevices);
174 address.SetBase(
"10.2.0.0",
"255.255.0.0");
176 sinkInterfaces =
address.Assign(p2pSinkDevices);
198 Ipv4GlobalRoutingHelper::PopulateRoutingTables();
200 Simulator::Stop(
Seconds(10.0));
206 Simulator::Destroy();
static BriteTestSuite g_briteTestSuite
Static variable for test initialization.
BRITE topology function Test.
void DoRun() override
Implementation to actually run this TestCase.
~BriteTopologyFunctionTestCase() override
BriteTopologyFunctionTestCase()
BRITE topology structure Test.
void DoRun() override
Implementation to actually run this TestCase.
BriteTopologyStructureTestCase()
~BriteTopologyStructureTestCase() override
a polymophic address class
holds a vector of ns3::Application pointers.
void Start(Time start) const
Start all of the Applications in this container at the start time given as a parameter.
Ptr< Application > Get(uint32_t i) const
Get the Ptr<Application> stored in this container at a given index.
void Stop(Time stop) const
Arrange for all of the Applications in this container to Stop() at the Time given as a parameter.
Interface with BRITE, the Boston university Representative Internet Topology gEnerator.
void AssignStreams(int64_t streamNumber)
Assigns stream number to UniformRandomVariable used to generate brite seed file.
uint32_t GetNAs() const
Returns the number of AS created in the topology.
uint32_t GetNNodesTopology() const
Returns the number of nodes created within the topology.
void BuildBriteTopology(InternetStackHelper &stack)
Create NS3 topology using information generated from BRITE.
uint32_t GetNLeafNodesForAs(uint32_t asNum)
Returns the number of router leaf nodes for a given AS.
uint32_t GetNEdgesTopology() const
Returns the number of edges created within the topology.
aggregate IP/TCP/UDP functionality to existing Nodes.
A helper class to make life easier while doing simple IPv4 address assignment in scripts.
holds a vector of std::pair of Ptr<Ipv4> and interface index.
Ipv4Address GetAddress(uint32_t i, uint32_t j=0) const
holds a vector of ns3::NetDevice pointers
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.
void Add(const NodeContainer &nc)
Append the contents of another NodeContainer to the end of this container.
Ptr< Node > Get(uint32_t i) const
Get the Ptr<Node> stored in this container at a given index.
A helper to make it easier to instantiate an ns3::OnOffApplication on a set of nodes.
ApplicationContainer Install(NodeContainer c) const
Install an ns3::OnOffApplication on each node of the input container configured with all the attribut...
void SetAttribute(std::string name, const AttributeValue &value)
Helper function used to set the underlying application attributes.
A helper to make it easier to instantiate an ns3::PacketSinkApplication on a set of nodes.
ApplicationContainer Install(NodeContainer c) const
Install an ns3::PacketSinkApplication on each node of the input container configured with all the att...
Build a set of PointToPointNetDevice objects.
Hold variables of type string.
void AddTestCase(TestCase *testCase, TestDuration duration=QUICK)
Add an individual child TestCase to this test suite.
@ UNIT
This test suite implements a Unit Test.
void(* DataRate)(DataRate oldValue, DataRate newValue)
TracedValue callback signature for DataRate.
#define NS_TEST_ASSERT_MSG_EQ(actual, limit, msg)
Test that an actual and expected (limit) value are equal and report and abort if not.
Time Seconds(double value)
Construct a Time in the indicated unit.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
Ptr< PacketSink > sink
Pointer to the packet sink application.