Files
openairinterface5g/nfapi/tests/p7/nr_fapi_rx_data_indication_test.c
Bartosz Podrygajlo efdab585e2 fix(build): Fix unused argument warnings in unit tests
Assisted-by: Gemini:Flash-3.5
Signed-off-by: Bartosz Podrygajlo <bartosz.podrygajlo@openairinterface.org>
2026-05-27 16:24:18 +02:00

97 lines
3.7 KiB
C

/*
* SPDX-License-Identifier: LicenseRef-CSSL-1.0
*/
#include "dci_payload_utils.h"
#include "nr_fapi_p7.h"
#include "nr_fapi_p7_utils.h"
static void fill_rx_data_indication_PDU(nfapi_nr_rx_data_pdu_t *pdu)
{
pdu->handle = rand32();
pdu->rnti = rand16_range(1, 65535);
pdu->harq_id = rand8_range(0, 15);
pdu->pdu_length = rand32_range(0, 65535 * 100); // Testing to a maximum of 100 times 2^16, to test 32 bit would take too long
pdu->ul_cqi = rand8();
pdu->timing_advance = rand16_range(0, 63);
pdu->rssi = rand16_range(0, 1280);
pdu->pdu = calloc_or_fail(pdu->pdu_length, sizeof(uint8_t));
for (int i = 0; i < pdu->pdu_length; ++i) {
pdu->pdu[i] = rand8();
}
}
static void fill_rx_data_indication(nfapi_nr_rx_data_indication_t *msg)
{
msg->sfn = rand16_range(0, 1023);
msg->slot = rand16_range(0, 159);
msg->number_of_pdus = rand8_range(1, NFAPI_NR_RX_DATA_IND_MAX_PDU); // Minimum 1 PDUs in order to test at least one
msg->pdu_list = calloc_or_fail(msg->number_of_pdus, sizeof(*msg->pdu_list));
for (int pdu_idx = 0; pdu_idx < msg->number_of_pdus; ++pdu_idx) {
fill_rx_data_indication_PDU(&msg->pdu_list[pdu_idx]);
}
}
static void test_pack_unpack(nfapi_nr_rx_data_indication_t *req)
{
const size_t message_size = get_rx_data_indication_size(req);
uint8_t *msg_buf = calloc_or_fail(message_size, sizeof(uint8_t));
/*uint8_t msg_buf[1024*1024*3];
size_t message_size = sizeof(msg_buf);*/
// first test the packing procedure
int pack_result = fapi_nr_p7_message_pack(req, msg_buf, message_size, NULL);
DevAssert(pack_result >= 0 + NFAPI_HEADER_LENGTH);
// update req message_length value with value calculated in message_pack procedure
req->header.message_length = pack_result; //- NFAPI_HEADER_LENGTH;
// test the unpacking of the header
// copy first NFAPI_HEADER_LENGTH bytes into a new buffer, to simulate SCTP PEEK
fapi_message_header_t header;
uint32_t header_buffer_size = NFAPI_HEADER_LENGTH;
uint8_t header_buffer[header_buffer_size];
for (int idx = 0; idx < header_buffer_size; idx++) {
header_buffer[idx] = msg_buf[idx];
}
uint8_t *pReadPackedMessage = header_buffer;
int unpack_header_result = fapi_nr_p7_message_header_unpack(pReadPackedMessage, NFAPI_HEADER_LENGTH, &header, sizeof(header), 0);
DevAssert(unpack_header_result >= 0);
DevAssert(header.message_id == req->header.message_id);
DevAssert(header.message_length == req->header.message_length);
// test the unpacking and compare with initial message
nfapi_nr_rx_data_indication_t unpacked_req = {0};
int unpack_result =
fapi_nr_p7_message_unpack(msg_buf, header.message_length + NFAPI_HEADER_LENGTH, &unpacked_req, sizeof(unpacked_req), 0);
DevAssert(unpack_result >= 0);
DevAssert(eq_rx_data_indication(&unpacked_req, req));
free_rx_data_indication(&unpacked_req);
free(msg_buf);
}
static void test_copy(const nfapi_nr_rx_data_indication_t *msg)
{
// Test copy function
nfapi_nr_rx_data_indication_t copy = {0};
copy_rx_data_indication(msg, &copy);
DevAssert(eq_rx_data_indication(msg, &copy));
free_rx_data_indication(&copy);
}
int main()
{
fapi_test_init();
nfapi_nr_rx_data_indication_t *req = calloc_or_fail(1, sizeof(nfapi_nr_rx_data_indication_t));
req->header.message_id = NFAPI_NR_PHY_MSG_TYPE_RX_DATA_INDICATION;
// Get the actual allocated size
printf("Allocated size before filling: %zu bytes\n", get_rx_data_indication_size(req));
// Fill TX_DATA request
fill_rx_data_indication(req);
printf("Allocated size after filling: %zu bytes\n", get_rx_data_indication_size(req));
// Perform tests
test_pack_unpack(req);
test_copy(req);
// All tests successful!
free_rx_data_indication(req);
free(req);
return 0;
}