mirror of
https://gitlab.eurecom.fr/oai/openairinterface5g.git
synced 2026-07-13 04:30:28 +00:00
Assisted-by: Gemini:Flash-3.5 Signed-off-by: Bartosz Podrygajlo <bartosz.podrygajlo@openairinterface.org>
61 lines
2.2 KiB
C
61 lines
2.2 KiB
C
/*
|
|
* SPDX-License-Identifier: LicenseRef-CSSL-1.0
|
|
*/
|
|
#include "nfapi/tests/nr_fapi_test.h"
|
|
#include "nr_fapi_p5.h"
|
|
#include "nr_fapi_p5_utils.h"
|
|
|
|
void test_pack_unpack(nfapi_nr_stop_request_scf_t *req)
|
|
{
|
|
uint8_t msg_buf[65535];
|
|
uint16_t msg_len = sizeof(*req);
|
|
// first test the packing procedure
|
|
int pack_result = fapi_nr_p5_message_pack(req, msg_len, msg_buf, sizeof(msg_buf), NULL);
|
|
// STOP.request message body length is 0
|
|
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_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_stop_request_scf_t unpacked_req = {0};
|
|
int unpack_result =
|
|
fapi_nr_p5_message_unpack(msg_buf, header.message_length + NFAPI_HEADER_LENGTH, &unpacked_req, sizeof(unpacked_req), NULL);
|
|
DevAssert(unpack_result >= 0);
|
|
DevAssert(eq_stop_request(&unpacked_req, req));
|
|
free_stop_request(&unpacked_req);
|
|
}
|
|
|
|
void test_copy(const nfapi_nr_stop_request_scf_t *msg)
|
|
{
|
|
// Test copy function
|
|
nfapi_nr_stop_request_scf_t copy = {0};
|
|
copy_stop_request(msg, ©);
|
|
DevAssert(eq_stop_request(msg, ©));
|
|
free_stop_request(©);
|
|
}
|
|
|
|
int main()
|
|
{
|
|
fapi_test_init();
|
|
|
|
nfapi_nr_stop_request_scf_t req = {.header.message_id = NFAPI_NR_PHY_MSG_TYPE_STOP_REQUEST};
|
|
// Perform tests
|
|
test_pack_unpack(&req);
|
|
test_copy(&req);
|
|
// All tests successful!
|
|
free_stop_request(&req);
|
|
return 0;
|
|
}
|