21 #include <ns3/basic-data-calculators.h>
22 #include <ns3/config.h>
23 #include <ns3/error-model.h>
24 #include <ns3/integer.h>
25 #include <ns3/internet-stack-helper.h>
26 #include <ns3/ipv4-address-helper.h>
27 #include <ns3/ipv6-address-helper.h>
29 #include <ns3/mac48-address.h>
31 #include <ns3/nstime.h>
32 #include <ns3/packet.h>
34 #include <ns3/simple-channel.h>
35 #include <ns3/simple-net-device.h>
36 #include <ns3/tcp-congestion-ops.h>
37 #include <ns3/tcp-l4-protocol.h>
39 #include <ns3/three-gpp-http-client.h>
40 #include <ns3/three-gpp-http-header.h>
41 #include <ns3/three-gpp-http-helper.h>
42 #include <ns3/three-gpp-http-server.h>
90 const Time& channelDelay,
109 void DoRun()
override;
110 void DoTeardown()
override;
127 void ObjectSent(uint32_t size);
133 void PartReceived(uint32_t size);
145 bool ObjectReceived(uint32_t& txSize, uint32_t& rxSize);
147 bool IsEmpty()
const;
149 uint16_t GetNumOfObjectsReceived()
const;
197 void ServerMainObjectCallback(uint32_t size);
217 void ServerEmbeddedObjectCallback(uint32_t size);
238 void ClientStateTransitionCallback(
const std::string& oldState,
const std::string& newState);
245 void ClientRxDelayCallback(
const Time& delay,
const Address& from);
252 void ClientRxRttCallback(
const Time& rtt,
const Address& from);
262 void ProgressCallback();
296 const Time& channelDelay,
303 m_channelDelay(channelDelay),
306 m_numOfPagesReceived(0),
307 m_numOfPacketDrops(0)
334 dev->SetAddress(Mac48Address::Allocate());
356 NS_LOG_DEBUG(
this <<
" node is assigned to " << assignedAddress <<
".");
363 dev->TraceConnectWithoutContext(
408 "Invalid number of HTTP servers has been installed");
412 "HTTP server installation fails to produce a proper type");
422 "Invalid number of HTTP clients has been installed");
426 "HTTP client installation fails to produce a proper type");
429 bool traceSourceConnected = httpClient->TraceConnectWithoutContext(
430 "TxMainObjectRequest",
433 traceSourceConnected = httpClient->TraceConnectWithoutContext(
434 "TxEmbeddedObjectRequest",
437 traceSourceConnected = httpServer->TraceConnectWithoutContext(
443 traceSourceConnected = httpServer->TraceConnectWithoutContext(
447 traceSourceConnected = httpClient->TraceConnectWithoutContext(
448 "RxMainObjectPacket",
451 traceSourceConnected = httpClient->TraceConnectWithoutContext(
457 traceSourceConnected = httpServer->TraceConnectWithoutContext(
462 traceSourceConnected = httpClient->TraceConnectWithoutContext(
463 "RxEmbeddedObjectPacket",
467 traceSourceConnected = httpClient->TraceConnectWithoutContext(
473 traceSourceConnected = httpClient->TraceConnectWithoutContext(
477 traceSourceConnected = httpClient->TraceConnectWithoutContext(
481 traceSourceConnected = httpClient->TraceConnectWithoutContext(
496 NS_LOG_INFO(
this <<
" Total request objects received: "
498 NS_LOG_INFO(
this <<
" Total main objects received: "
500 NS_LOG_INFO(
this <<
" Total embedded objects received: "
515 "Tracker of request objects detected irrelevant packet(s).");
518 "Tracker of main objects detected irrelevant packet(s).");
521 "Tracker of embedded objects detected irrelevant packet(s).");
523 Simulator::Destroy();
535 m_numOfObjectsReceived(0)
544 m_objectsSize.push_back(size);
560 if (m_objectsSize.empty())
566 txSize = m_objectsSize.front();
570 m_objectsSize.pop_front();
572 m_numOfObjectsReceived++;
580 return (m_objectsSize.empty() && (m_rxBuffer == 0));
586 return m_numOfObjectsReceived;
613 "Error finding ThreeGppHttpHeader in a packet received by the server");
616 "Request object's client TS is unexpectedly non-positive");
630 "Transmitted size and received size of request object differ");
658 "Error finding ThreeGppHttpHeader in a packet received by the server");
660 ThreeGppHttpHeader::MAIN_OBJECT,
661 "Invalid content type in the received packet");
664 "Main object's client TS is unexpectedly non-positive");
667 "Main object's server TS is unexpectedly non-positive");
675 "Transmitted size and received size of main object differ");
678 "Actual main object packet size and received size of main object differ");
706 "Error finding ThreeGppHttpHeader in a packet received by the server");
708 ThreeGppHttpHeader::EMBEDDED_OBJECT,
709 "Invalid content type in the received packet");
712 "Embedded object's client TS is unexpectedly non-positive");
715 "Embedded object's server TS is unexpectedly non-positive");
723 "Transmitted size and received size of embedded object differ");
727 "Actual embedded object packet size and received size of embedded object differ");
732 const std::string& newState)
736 if (newState ==
"READING")
802 :
TestSuite(
"three-gpp-http-client-server-test", SYSTEM)
810 double bitErrorRate[] = {0.0, 5.0e-6};
811 uint32_t mtuSize[] = {536, 1460};
816 for (uint32_t i1 = 0; i1 < 3; i1++)
818 for (uint32_t i2 = 0; i2 < 2; i2++)
820 for (uint32_t i3 = 0; i3 < 2; i3++)
822 AddHttpObjectTestCase(run++,
827 AddHttpObjectTestCase(run++,
855 const Time& channelDelay,
860 std::ostringstream name;
861 name <<
"Run #" << rngRun;
862 name <<
" delay=" << channelDelay.
As(Time::MS);
863 name <<
" ber=" << bitErrorRate;
864 name <<
" mtu=" << mtuSize;
879 testDuration = TestCase::EXTENSIVE;
883 testDuration = TestCase::TAKES_FOREVER;
888 TcpNewReno::GetTypeId(),
A test class for running several system tests which validate the web browsing traffic model.
void AddHttpObjectTestCase(uint32_t rngRun, const Time &channelDelay, double bitErrorRate, uint32_t mtuSize, bool useIpv6)
Creates a test case with the given parameters.
ThreeGppHttpClientServerTestSuite()
Instantiate the test suite.
ThreeGppHttpObjectTracker()
Creates a new instance with all counters begin at zero.
void PartReceived(uint32_t size)
Shall be invoked when an object part has been received.
void ObjectSent(uint32_t size)
Shall be invoked when a whole object has been transmitted.
bool ObjectReceived(uint32_t &txSize, uint32_t &rxSize)
Shall be invoked after all parts of a complete object have been received.
uint32_t m_rxBuffer
The accumulated size (in bytes) of parts of a whole object.
uint16_t GetNumOfObjectsReceived() const
uint16_t m_numOfObjectsReceived
Number of whole objects that have been received so far.
std::list< uint32_t > m_objectsSize
Each entry is the size (in bytes) of object transmitted.
A test class which verifies that each HTTP object sent is also received the same size.
ThreeGppHttpObjectTracker m_embeddedObjectTracker
Tracker of embedded objects.
void DeviceDropCallback(Ptr< const Packet > packet)
Connected with PhyRxDrop trace source of both the client's and server's devices.
InternetStackHelper m_internetStackHelper
Installs TCP/IP stack on the nodes.
void ClientRxDelayCallback(const Time &delay, const Address &from)
Connected with RxDelay trace source of the client.
TypeId m_tcpType
TCP algorithm used.
ThreeGppHttpObjectTestCase(const std::string &name, uint32_t rngRun, const TypeId &tcpType, const Time &channelDelay, double bitErrorRate, uint32_t mtuSize, bool useIpv6)
void ClientTxEmbeddedObjectRequestCallback(Ptr< const Packet > packet)
Connected with TxEmbeddedObjectRequest trace source of the client.
void ClientTxMainObjectRequestCallback(Ptr< const Packet > packet)
Connected with TxMainObjectRequest trace source of the client.
void ClientRxEmbeddedObjectCallback(Ptr< const ThreeGppHttpClient > httpClient, Ptr< const Packet > packet)
Connected with RxEmbeddedObject trace source of the client.
uint16_t m_numOfPagesReceived
Begins with 0. Simulation stops if this reaches 3.
void DoRun() override
Implementation to actually run this TestCase.
Ipv4AddressHelper m_ipv4AddressHelper
Assigns IPv4 addresses to the nodes.
void DoTeardown() override
Implementation to do any local setup required for this TestCase.
uint32_t m_mtuSize
Maximum transmission unit (in bytes).
void ServerRxCallback(Ptr< const Packet > packet, const Address &from)
Connected with Rx trace source of the server.
void ClientRxMainObjectPacketCallback(Ptr< const Packet > packet)
Connected with RxMainObjectPacket trace source of the client.
void ClientRxMainObjectCallback(Ptr< const ThreeGppHttpClient > httpClient, Ptr< const Packet > packet)
Connected with RxMainObject trace source of the client.
void ClientRxEmbeddedObjectPacketCallback(Ptr< const Packet > packet)
Connected with RxEmbeddedObjectPacket trace source of the client.
Ptr< Node > CreateSimpleInternetNode(Ptr< SimpleChannel > channel, Address &assignedAddress)
Creates a Node, complete with a TCP/IP stack and address assignment.
Ptr< MinMaxAvgTotalCalculator< double > > m_rttCalculator
Keeps statistical information of round-trip delays (in seconds).
void ProgressCallback()
Dummy event.
void ClientStateTransitionCallback(const std::string &oldState, const std::string &newState)
Connected with StateTransition trace source of the client.
ThreeGppHttpObjectTracker m_requestObjectTracker
Tracker of request objects.
Time m_channelDelay
Time needed by a packet to propagate.
uint32_t m_rngRun
Determines the set of random values generated.
void ServerEmbeddedObjectCallback(uint32_t size)
Connected with EmbeddedObject trace source of the server.
uint16_t m_numOfPacketDrops
Number of packets dropped because of m_errorModel.
Ipv6AddressHelper m_ipv6AddressHelper
Assigns IPv6 addresses to the nodes.
Ptr< MinMaxAvgTotalCalculator< double > > m_delayCalculator
Keeps statistical information of one-trip delays (in seconds).
void ClientRxRttCallback(const Time &rtt, const Address &from)
Connected with RxRtt trace source of the client.
bool m_useIpv6
Whether to use IPv6 or IPv4.
Ptr< RateErrorModel > m_errorModel
Receive error model to be attached to the devices of both directions.
void ServerMainObjectCallback(uint32_t size)
Connected with MainObject trace source of the server.
ThreeGppHttpObjectTracker m_mainObjectTracker
Tracker of main objects.
a polymophic address class
holds a vector of ns3::Application pointers.
Ptr< Application > Get(uint32_t i) const
Get the Ptr<Application> stored in this container at a given index.
uint32_t GetN() const
Get the number of Ptr<Application> stored in this container.
aggregate IP/TCP/UDP functionality to existing Nodes.
void Install(std::string nodeName) const
Aggregate implementations of the ns3::Ipv4, ns3::Ipv6, ns3::Udp, and ns3::Tcp classes onto the provid...
A helper class to make life easier while doing simple IPv4 address assignment in scripts.
void SetBase(Ipv4Address network, Ipv4Mask mask, Ipv4Address base="0.0.0.1")
Set the base network number, network mask and base address.
Ipv4InterfaceContainer Assign(const NetDeviceContainer &c)
Assign IP addresses to the net devices specified in the container based on the current network prefix...
Ipv4 addresses are stored in host order in this class.
holds a vector of std::pair of Ptr<Ipv4> and interface index.
Ipv4Address GetAddress(uint32_t i, uint32_t j=0) const
a class to represent an Ipv4 address mask
Helper class to auto-assign global IPv6 unicast addresses.
void SetBase(Ipv6Address network, Ipv6Prefix prefix, Ipv6Address base=Ipv6Address("::1"))
Set the base network number, network prefix, and base interface ID.
Ipv6InterfaceContainer Assign(const NetDeviceContainer &c)
Allocate an Ipv6InterfaceContainer with auto-assigned addresses.
Describes an IPv6 address.
Keep track of a set of IPv6 interfaces.
Ipv6Address GetAddress(uint32_t i, uint32_t j) const
Get the address for the specified index.
Describes an IPv6 prefix.
double getMax() const override
Returns the maximum value.
double getMean() const override
Returns the mean value.
double getMin() const override
Returns the minimum value.
void Update(const T i)
Updates all variables of MinMaxAvgTotalCalculator.
holds a vector of ns3::NetDevice pointers
uint32_t AddDevice(Ptr< NetDevice > device)
Associate a NetDevice to this node.
Ptr< T > GetObject() const
Get a pointer to the requested aggregated Object.
uint32_t RemoveHeader(Header &header)
Deserialize and remove the header from the internal buffer.
uint32_t GetSize() const
Returns the the size in bytes of the packet (including the zero-filled initial payload).
Ptr< Packet > Copy() const
performs a COW copy of the packet.
void SetRate(double rate)
void SetUnit(ErrorUnit error_unit)
TCP socket creation and multiplexing/demultiplexing.
TestDuration
How long the test takes to execute.
void AddTestCase(TestCase *testCase, TestDuration duration=QUICK)
Add an individual child TestCase to this test suite.
std::string GetName() const
Helper to make it easier to instantiate an ThreeGppHttpClient on a set of nodes.
ApplicationContainer Install(NodeContainer c) const
Install a ThreeGppHttpClient on each node of the input container configured with all the attributes s...
Model application which simulates the traffic of a web browser.
Helper to make it easier to instantiate an ThreeGppHttpServer on a set of nodes.
ApplicationContainer Install(NodeContainer c) const
Install an ThreeGppHttpServer on each node of the input container configured with all the attributes ...
Model application which simulates the traffic of a web server.
Simulation virtual time values and global simulation resolution.
bool IsPositive() const
Exactly equivalent to t >= 0.
TimeWithUnit As(const Unit unit=Time::AUTO) const
Attach a unit to a Time, to facilitate output in a specific unit.
double GetSeconds() const
Get an approximation of the time stored in this instance in the indicated unit.
a unique identifier for an interface.
Hold an unsigned integer type.
#define NS_ASSERT(condition)
At runtime, in debugging builds, if this condition is not true, the program prints the source file,...
void SetGlobal(std::string name, const AttributeValue &value)
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
#define NS_LOG_DEBUG(msg)
Use NS_LOG to output a message of level LOG_DEBUG.
#define NS_LOG_LOGIC(msg)
Use NS_LOG to output a message of level LOG_LOGIC.
#define NS_LOG_FUNCTION(parameters)
If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by ",...
#define NS_LOG_INFO(msg)
Use NS_LOG to output a message of level LOG_INFO.
Time Now()
create an ns3::Time instance which contains the current simulation time.
#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.
#define NS_TEST_EXPECT_MSG_EQ(actual, limit, msg)
Test that an actual and expected (limit) value are equal and report if not.
#define NS_TEST_ASSERT_MSG_NE(actual, limit, msg)
Test that an actual and expected (limit) value are not equal and report and abort if not.
#define NS_TEST_ASSERT_MSG_GT(actual, limit, msg)
Test that an actual value is greater than a limit and report and abort if not.
Time Seconds(double value)
Construct a Time in the indicated unit.
Time MilliSeconds(uint64_t value)
Construct a Time in the indicated unit.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
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 ThreeGppHttpClientServerTestSuite g_httpClientServerTestSuiteInstance
The global instance of the three-gpp-http-client-server system test.