Files
openairinterface5g/nfapi/tests/p7/nr_fapi_rach_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

99 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_rach_indication_PDU(nfapi_nr_prach_indication_pdu_t *pdu)
{
pdu->phy_cell_id = rand32();
pdu->symbol_index = rand8_range(0,13);
pdu->slot_index = rand8_range(0,79);
pdu->freq_index = rand8_range(0,7);
pdu->avg_rssi = rand8();
pdu->avg_snr = rand8();
pdu->num_preamble = rand8_range(0,63);
for (int preamble_idx = 0; preamble_idx < pdu->num_preamble; ++preamble_idx) {
nfapi_nr_prach_indication_preamble_t *preamble = &pdu->preamble_list[preamble_idx];
preamble->preamble_index = rand8_range(0,63);
preamble->timing_advance = rand16_range(0,3846);
preamble->preamble_pwr = rand32_range(0, 170000);
}
}
static void fill_rach_indication(nfapi_nr_rach_indication_t *msg)
{
msg->sfn = rand16_range(0, 1023);
msg->slot = rand16_range(0, 159);
msg->number_of_pdus = rand8_range(1, NFAPI_NR_RACH_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_rach_indication_PDU(&msg->pdu_list[pdu_idx]);
}
}
static void test_pack_unpack(nfapi_nr_rach_indication_t *req)
{
size_t message_size = get_rach_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_rach_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_rach_indication(&unpacked_req, req));
free_rach_indication(&unpacked_req);
free(msg_buf);
}
static void test_copy(const nfapi_nr_rach_indication_t *msg)
{
// Test copy function
nfapi_nr_rach_indication_t copy = {0};
copy_rach_indication(msg, &copy);
DevAssert(eq_rach_indication(msg, &copy));
free_rach_indication(&copy);
}
int main()
{
fapi_test_init();
nfapi_nr_rach_indication_t *req = calloc_or_fail(1, sizeof(nfapi_nr_rach_indication_t));
req->header.message_id = NFAPI_NR_PHY_MSG_TYPE_RACH_INDICATION;
// Get the actual allocated size
printf("Allocated size before filling: %zu bytes\n", get_rach_indication_size(req));
// Fill TX_DATA request
fill_rach_indication(req);
printf("Allocated size after filling: %zu bytes\n", get_rach_indication_size(req));
// Perform tests
test_pack_unpack(req);
test_copy(req);
// All tests successful!
free_rach_indication(req);
free(req);
return 0;
}