21 #include "ns3/config.h"
22 #include "ns3/simulator.h"
23 #include "ns3/pointer.h"
25 #include "ns3/packet.h"
26 #include "ns3/node-container.h"
27 #include "ns3/net-device-container.h"
28 #include "ns3/error-model.h"
29 #include "ns3/rng-seed-manager.h"
30 #include "ns3/radio-bearer-stats-calculator.h"
31 #include "ns3/lte-rlc-header.h"
32 #include "ns3/lte-rlc-um.h"
33 #include "ns3/config-store.h"
58 double losses[] = {0.0, 0.10, 0.25, 0.50, 0.75, 0.90, 0.95};
59 uint32_t seeds[] = {1111, 2222, 3333, 4444, 5555, 6666, 7777, 8888, 9999, 10101};
61 for ( uint32_t l = 0 ; l < (
sizeof (losses) /
sizeof (
double)) ; l++ )
63 for ( uint32_t
s = 0 ;
s < (
sizeof (seeds) /
sizeof (uint32_t)) ;
s++ )
65 std::ostringstream name;
66 name <<
" Losses = " << losses[l] * 100 <<
"%. Seed = " << seeds[
s];
70 testDuration = TestCase::QUICK;
74 testDuration = TestCase::EXTENSIVE;
122 uint16_t numberOfNodes = 1;
137 RngSeedManager::SetSeed (
m_seed);
148 enbNodes.
Create (numberOfNodes);
149 ueNodes.
Create (numberOfNodes);
176 ueLteDevs.
Get (0)->SetAttribute (
"ReceiveErrorModel",
PointerValue (dlEm));
183 lteSimpleHelper->
m_enbRrc->SetPduSize (100);
196 Simulator::Schedule (
Seconds (0.100), &LteTestRrc::Start, lteSimpleHelper->
m_enbRrc);
197 Simulator::Schedule (
Seconds (10.100), &LteTestRrc::Stop, lteSimpleHelper->
m_enbRrc);
200 Simulator::Stop (
Seconds (100.000));
203 uint32_t txEnbRrcPdus = lteSimpleHelper->
m_enbRrc->GetTxPdus ();
204 uint32_t rxUeRrcPdus = lteSimpleHelper->
m_ueRrc->GetRxPdus ();
220 "TX PDUs (" << txEnbRrcPdus <<
") != RX PDUs (" << rxUeRrcPdus <<
")");
222 Simulator::Destroy ();
Ptr< LteTestRrc > m_enbRrc
hold variables of type string
Test x.x.x RLC AM: End-to-end flow.
Ptr< NetDevice > Get(uint32_t i) const
Get the Ptr stored in this container at a given index.
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
Ptr< LteTestRrc > m_ueRrc
#define NS_LOG_INFO(msg)
Use NS_LOG to output a message of level LOG_INFO.
void SetTxOpportunityMode(uint8_t mode)
Ptr< LteTestMac > m_ueMac
Ptr< LteTestMac > m_enbMac
virtual ~LteRlcAmE2eTestCase()
#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.
holds a vector of ns3::NetDevice pointers
NetDeviceContainer InstallEnbDevice(NodeContainer c)
create a set of eNB devices
Callback< R > MakeCallback(R(T::*memPtr)(void), OBJ objPtr)
void SetTxOppTime(Time txOppTime)
TestDuration
How long the test takes to execute.
keep track of a set of node pointers.
NetDeviceContainer InstallUeDevice(NodeContainer c)
create a set of UE devices
static LteRlcAmE2eTestSuite lteRlcAmE2eTestSuite
void AddTestCase(TestCase *testCase) NS_DEPRECATED
Add an individual child TestCase case to this TestCase.
void SetTxOppSize(uint32_t txOppSize)
virtual void DoRun(void)
Implementation to actually run this TestCase.
Time Seconds(double value)
Construct a Time in the indicated unit.
void DlDropEvent(Ptr< const Packet > p)
void Create(uint32_t n)
Create n nodes and append pointers to them to the end of this NodeContainer.
LteRlcAmE2eTestSuite()
Test x.x.x RLC AM: End-to-end flow.
Hold a floating point type.
void SetAttribute(std::string name, const AttributeValue &value)
void UlDropEvent(Ptr< const Packet > p)