24 #include <ns3/boolean.h>
25 #include <ns3/double.h>
26 #include <ns3/integer.h>
28 #include <ns3/simulator.h>
30 #include <ns3/internet-stack-helper.h>
31 #include <ns3/ipv4-address-helper.h>
32 #include <ns3/ipv4-interface-container.h>
33 #include <ns3/friis-spectrum-propagation-loss.h>
34 #include <ns3/ipv4-static-routing-helper.h>
35 #include <ns3/lte-enb-net-device.h>
36 #include <ns3/lte-helper.h>
37 #include <ns3/lte-ue-net-device.h>
38 #include <ns3/lte-ue-rrc.h>
39 #include <ns3/mobility-helper.h>
40 #include <ns3/net-device-container.h>
41 #include <ns3/node-container.h>
42 #include <ns3/point-to-point-epc-helper.h>
43 #include <ns3/point-to-point-helper.h>
54 :
TestSuite (
"lte-primary-cell-change", SYSTEM)
92 std::string name,
bool isIdealRrc, int64_t rngRun,
93 uint8_t numberOfComponentCarriers, uint8_t sourceComponentCarrier, uint8_t targetComponentCarrier)
95 m_isIdealRrc {isIdealRrc},
97 m_numberOfComponentCarriers {numberOfComponentCarriers},
98 m_sourceComponentCarrier {sourceComponentCarrier},
99 m_targetComponentCarrier {targetComponentCarrier}
124 auto lteHelper = CreateObject<LteHelper> ();
129 auto epcHelper = CreateObject<PointToPointEpcHelper> ();
130 lteHelper->SetEpcHelper (epcHelper);
135 auto ueNode = CreateObject<Node> ();
138 mobility.SetMobilityModel (
"ns3::ConstantPositionMobilityModel");
143 auto enbDevs = lteHelper->InstallEnbDevice (enbNodes);
144 auto ueDev = DynamicCast<LteUeNetDevice> (lteHelper->InstallUeDevice (ueNode).Get (0));
154 std::map<uint8_t, Ptr<ComponentCarrierUe>> ueCcMap = ueDev->GetCcMap ();
164 Config::Connect (
"/NodeList/*/DeviceList/*/LteUeRrc/ConnectionEstablished",
170 lteHelper->AddX2Interface (enbNodes);
171 lteHelper->HandoverRequest (
Seconds (1.0), ueDev, sourceEnbDev, targetCellId);
174 Simulator::Stop (
Seconds (2.0));
177 uint16_t expectedCellId = targetCellId;
178 uint16_t actualCellId = ueDev->GetRrc ()->GetCellId ();
179 NS_TEST_ASSERT_MSG_EQ (expectedCellId, actualCellId,
"IMSI " << ueDev->GetImsi () <<
" has attached to an unexpected cell");
182 LteUeRrc::CONNECTED_NORMALLY,
183 "UE " << ueDev->GetImsi ()
184 <<
" is not at CONNECTED_NORMALLY state");
187 Simulator::Destroy ();
193 std::string context, uint64_t imsi, uint16_t cellId, uint16_t rnti,
196 NS_LOG_FUNCTION (
this << imsi << cellId << rnti << oldState << newState);
202 std::string context, uint64_t imsi, uint16_t cellId, uint16_t rnti)
Testing the handover procedure with multiple component carriers.
virtual ~LtePrimaryCellChangeTestCase()
virtual void DoRun()
Setup the simulation according to the configuration set by the class constructor, run it,...
LtePrimaryCellChangeTestCase(std::string name, bool isIdealRrc, int64_t rngRun, uint8_t numberOfComponentCarriers, uint8_t sourceComponentCarrier, uint8_t targetComponentCarrier)
Creates an instance of the initial cell selection test case.
void StateTransitionCallback(std::string context, uint64_t imsi, uint16_t cellId, uint16_t rnti, LteUeRrc::State oldState, LteUeRrc::State newState)
State transition callback function.
uint8_t m_sourceComponentCarrier
source primary component carrier
void ConnectionEstablishedCallback(std::string context, uint64_t imsi, uint16_t cellId, uint16_t rnti)
Connection established callback function.
std::map< uint64_t, LteUeRrc::State > m_lastState
The current UE RRC state.
uint8_t m_targetComponentCarrier
target primary component carrier
bool m_isIdealRrc
whether the LTE is configured to use ideal RRC
uint8_t m_numberOfComponentCarriers
number of component carriers
Test suite for executing the primary cell change test cases.
LtePrimaryCellChangeTestSuite()
AttributeValue implementation for Boolean.
static TypeId GetTypeId()
Get the type ID.
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...
State
The states of the UE RRC entity.
Helper class used to assign positions and mobility models to nodes.
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 AddTestCase(TestCase *testCase, TestDuration duration=QUICK)
Add an individual child TestCase to this test suite.
std::string GetName(void) const
AttributeValue implementation for TypeId.
Hold an unsigned integer type.
void SetGlobal(std::string name, const AttributeValue &value)
void SetDefault(std::string name, const AttributeValue &value)
void Connect(std::string path, const CallbackBase &cb)
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
#define NS_LOG_FUNCTION(parameters)
If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by ",...
#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.
static LtePrimaryCellChangeTestSuite g_ltePrimaryCellChangeTestSuite
Every class exported by the ns3 library is enclosed in the ns3 namespace.
Callback< R, Ts... > MakeCallback(R(T::*memPtr)(Ts...), OBJ objPtr)
Build Callbacks for class method members which take varying numbers of arguments and potentially retu...