22#include "ns3/lte-rlc-am-header.h"
23#include "ns3/packet.h"
53 uint8_t buffer[psize];
54 std::ostringstream oss(std::ostringstream::out);
58 oss << std::setfill(
'0') << std::setw(2) << std::hex << (
uint32_t)buffer[i];
71 uint8_t buffer[psize];
72 std::ostringstream oss(std::ostringstream::out);
76 oss << (std::bitset<8>(buffer[i]));
78 return std::string(oss.str() +
"\n");
87 NS_LOG_DEBUG(
"---- SERIALIZED PACKET CONTENTS (HEX): -------");
100 NS_LOG_DEBUG(
"--------- " << s.data() <<
" INFO: -------");
101 std::ostringstream oss(std::ostringstream::out);
124 std::list<SequenceNumber10> nackSnList,
128 void DoRun()
override;
136 std::list<SequenceNumber10> nackSnList,
140 m_nackSnList(nackSnList),
167 "serialized packet content " << hex <<
" differs from test vector "
182 "deserialized NACK SN differs from test vector");
207 std::list<SequenceNumber10> nackSnList;
208 std::string hex(
"0020");
214 std::list<SequenceNumber10> nackSnList;
215 std::string hex(
"0da4");
221 const std::list<SequenceNumber10> nackSnList{
224 std::string hex(
"000bb480");
230 const std::list<SequenceNumber10> nackSnList{
234 std::string hex(
"000bfed790");
240 const std::list<SequenceNumber10> nackSnList{
245 std::string hex(
"000bfed795d980");
251 const std::list<SequenceNumber10> nackSnList{
257 std::string hex(
"000bfed795d9cad8");
uint32_t RemoveHeader(Header &header)
Deserialize and remove the header from the internal buffer.
void AddHeader(const Header &header)
Add header to this packet.
uint32_t GetSize() const
Returns the the size in bytes of the packet (including the zero-filled initial payload).
uint32_t CopyData(uint8_t *buffer, uint32_t size) const
Copy the packet contents to a byte buffer.
Rlc Am Status Pdu Test Case.
std::string m_hex
hex string
std::list< SequenceNumber10 > m_nackSnList
list of nack sequence numbers
void DoRun() override
Implementation to actually run this TestCase.
RlcAmStatusPduTestCase(SequenceNumber10 ackSn, std::list< SequenceNumber10 > nackSnList, std::string hex)
Constructor.
SequenceNumber10 m_ackSn
ack sequence number
void AddTestCase(TestCase *testCase, TestDuration duration=QUICK)
Add an individual child TestCase to this test suite.
static std::string sprintPacketContentsBin(Ptr< Packet > pkt)
Function to convert packet contents in binary format.
static std::string sprintPacketContentsHex(Ptr< Packet > pkt)
Function to convert packet contents in hex format.
static void LogPacketInfo(T source, std::string s)
Log packet info function.
static void LogPacketContents(Ptr< Packet > pkt)
Function to log packet contents.
#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_FUNCTION(parameters)
If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by ",...
#define NS_TEST_ASSERT_MSG_LT(actual, limit, msg)
Test that an actual value is less than a limit and report and abort if not.
#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_ASSERT_MSG_GT(actual, limit, msg)
Test that an actual value is greater than a limit and report and abort if not.
ns3::LteRlcHeaderTestSuite staticLteRlcHeaderTestSuiteInstance
the test suite
Every class exported by the ns3 library is enclosed in the ns3 namespace.