Fixing up PDCP NR tx test. Starting to add rx test.

master
Pedro Alvarez 5 years ago committed by Andre Puschmann
parent 378c8d247e
commit 7e6725f0a2

@ -182,7 +182,6 @@ void pdcp_entity_nr::write_data_header(const srslte::unique_byte_buffer_t& sdu,
switch (cfg.sn_len) { switch (cfg.sn_len) {
case PDCP_SN_LEN_12: case PDCP_SN_LEN_12:
log->console("wazapp\n");
srslte::uint16_to_uint8(0x3F & count, sdu->msg); srslte::uint16_to_uint8(0x3F & count, sdu->msg);
if (is_drb()) { if (is_drb()) {
sdu->msg[0] |= 0x80; // On DRB Data PDUs we must set the D flag. sdu->msg[0] |= 0x80; // On DRB Data PDUs we must set the D flag.

@ -53,16 +53,17 @@ class rlc_dummy : public srsue::rlc_interface_pdcp
public: public:
rlc_dummy(srslte::log* log_) : log(log_) {} rlc_dummy(srslte::log* log_) : log(log_) {}
const srslte::unique_byte_buffer_t& get_last_pdcp_pdu() { return last_pdcp_pdu; }
void write_sdu(uint32_t lcid, srslte::unique_byte_buffer_t sdu, bool blocking = true) void write_sdu(uint32_t lcid, srslte::unique_byte_buffer_t sdu, bool blocking = true)
{ {
log->info_hex(sdu->msg, sdu->N_bytes, "RLC SDU"); log->info_hex(sdu->msg, sdu->N_bytes, "RLC SDU");
last_pdcp_pdu(std::move(sdu)); last_pdcp_pdu.swap(sdu);
} }
private: private:
srslte::log* log; srslte::log* log;
srslte::unique_byte_buffer_t last_pdcp_pdu; srslte::unique_byte_buffer_t last_pdcp_pdu;
srslte::unique_byte_buffer_t get_last_pdcp_pdu() { return last_pdcp_pdu; }
bool rb_is_um(uint32_t lcid) { return false; } bool rb_is_um(uint32_t lcid) { return false; }
}; };
@ -103,7 +104,7 @@ private:
* Input: {0x18, 0xE2} * Input: {0x18, 0xE2}
* Output: PDCP Header {0x80,0x00}, Ciphered Text {0x8f, 0xe3}, MAC-I {0xe0, 0xdf, 0x82, 0x92} * Output: PDCP Header {0x80,0x00}, Ciphered Text {0x8f, 0xe3}, MAC-I {0xe0, 0xdf, 0x82, 0x92}
*/ */
bool test_tx_basic(srslte::byte_buffer_pool* pool, srslte::log* log) int test_tx_basic(srslte::byte_buffer_pool* pool, srslte::log* log)
{ {
srslte::pdcp_entity_nr pdcp; srslte::pdcp_entity_nr pdcp;
srslte::srslte_pdcp_config_t cfg = {1, srslte::PDCP_RB_IS_DRB, SECURITY_DIRECTION_UPLINK, srslte::PDCP_SN_LEN_12}; srslte::srslte_pdcp_config_t cfg = {1, srslte::PDCP_RB_IS_DRB, SECURITY_DIRECTION_UPLINK, srslte::PDCP_SN_LEN_12};
@ -119,26 +120,23 @@ bool test_tx_basic(srslte::byte_buffer_pool* pool, srslte::log* log)
// Test SDU // Test SDU
srslte::unique_byte_buffer_t sdu = allocate_unique_buffer(*pool); srslte::unique_byte_buffer_t sdu = allocate_unique_buffer(*pool);
memcpy(msg->msg, sdu1, SDU1_LEN); memcpy(sdu->msg, sdu1, SDU1_LEN);
msg->N_bytes = SDU1_LEN; sdu->N_bytes = SDU1_LEN;
// Expected PDCP PDU // Expected PDCP PDU
srslte::unique_byte_buffer_t pdu_exp = allocate_unique_buffer(*pool); srslte::unique_byte_buffer_t pdu_exp = allocate_unique_buffer(*pool);
memcpy(pdu_exp->msg, pdu_exp, PDU1_LEN); memcpy(pdu_exp->msg, pdu1, PDU1_LEN);
msg->N_bytes = PDU1_LEN; pdu_exp->N_bytes = PDU1_LEN;
// Actual PDCP PDU
srslte::unique_byte_buffer_t pdu_act = allocate_unique_buffer(*pool);
// Run test // Run test
pdcp.write_sdu(std::move(sdu), true); pdcp.write_sdu(std::move(sdu), true);
rlc.get_last_pdcp_pdu(pdu); const srslte::unique_byte_buffer_t& pdu_act = rlc.get_last_pdcp_pdu();
TESTASSERT(pdu->N_Bytes == PDU1_LEN); TESTASSERT(pdu_act->N_bytes == pdu_exp->N_bytes);
for (int i = 0; i < PDU1_LEN; ++i) { for (uint32_t i = 0; i < pdu_exp->N_bytes; ++i) {
TESTASSERT(pdu->msg[i] == PDU1_LEN); TESTASSERT(pdu_act->msg[i] == pdu_exp->msg[i]);
} }
return true; return 0;
} }
/* /*
@ -163,22 +161,16 @@ bool test_rx_basic(srslte::byte_buffer_pool* pool, srslte::log* log)
pdcp.enable_encryption(); pdcp.enable_encryption();
uint8_t mac_exp[4]; uint8_t mac_exp[4];
srslte::unique_byte_buffer_t msg = allocate_unique_buffer(*pool); srslte::unique_byte_buffer_t pdu = allocate_unique_buffer(*pool);
srslte::unique_byte_buffer_t ct_exp = allocate_unique_buffer(*pool); srslte::unique_byte_buffer_t sdu_exp = allocate_unique_buffer(*pool);
memcpy(msg->msg, sdu1, SDU1_LEN); memcpy(pdu->msg, pdu1, PDU1_LEN);
msg->N_bytes = SDU1_LEN; pdu->N_bytes = PDU1_LEN;
ct_exp->N_bytes = SDU1_LEN; sdu_exp->N_bytes = SDU1_LEN;
srslte::security_128_eia2(&k_int[16], 0, 0, SECURITY_DIRECTION_UPLINK, msg->msg, msg->N_bytes, mac_exp);
srslte::security_128_eea2(&k_enc[16], 0, 0, SECURITY_DIRECTION_UPLINK, msg->msg, msg->N_bytes, ct_exp->msg);
log->info_hex(mac_exp, 4, "MAC-I:"); pdcp.write_pdu(std::move(pdu));
log->info_hex(ct_exp->msg, ct_exp->N_bytes, "Cipher text:"); return 0;
pdcp.write_pdu(std::move(msg), true);
return true;
} }
// Setup all tests // Setup all tests
int run_all_tests(srslte::byte_buffer_pool* pool) int run_all_tests(srslte::byte_buffer_pool* pool)
{ {
@ -187,7 +179,8 @@ int run_all_tests(srslte::byte_buffer_pool* pool)
log.set_level(srslte::LOG_LEVEL_DEBUG); log.set_level(srslte::LOG_LEVEL_DEBUG);
log.set_hex_limit(128); log.set_hex_limit(128);
TESTASSERT(test_tx_basic(pool, &log)); TESTASSERT(test_tx_basic(pool, &log) == 0);
TESTASSERT(test_rx_basic(pool, &log) == 0);
return 0; return 0;
} }

Loading…
Cancel
Save