/* * * Copyright 2019 AT&T Intellectual Property * Copyright 2019 Nokia * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * */ #include #include #include #include void test_build_pack_x2enb_configuration_update_ack(); void test_build_pack_x2enb_configuration_update_failure(); void test_build_pack_endc_configuration_update_ack(); void test_build_pack_endc_configuration_update_failure(); int main(int argc, char* argv[]) { test_build_pack_x2enb_configuration_update_ack(); test_build_pack_x2enb_configuration_update_failure(); test_build_pack_endc_configuration_update_ack(); test_build_pack_endc_configuration_update_failure(); exit(0); } void test_build_pack_x2enb_configuration_update_ack(){ size_t error_buf_size = 8192; size_t packed_buf_size = 4096; unsigned char responseDataBuf[packed_buf_size]; char responseErrorBuf[error_buf_size]; bool result = build_pack_x2enb_configuration_update_ack(&packed_buf_size, responseDataBuf, error_buf_size, responseErrorBuf); if (!result) { printf("#test_build_pack_x2enb_configuration_update_ack failed. Packing error %s\n", responseErrorBuf); return; } printf("x2enb configuration update acknowledge packed size:%lu\nPayload:\n", packed_buf_size); for (size_t i = 0; i < packed_buf_size; ++i) printf("%02x",responseDataBuf[i]); printf("\n"); } void test_build_pack_x2enb_configuration_update_failure(){ size_t error_buf_size = 8192; size_t packed_buf_size = 4096; unsigned char responseDataBuf[packed_buf_size]; char responseErrorBuf[error_buf_size]; bool result = build_pack_x2enb_configuration_update_failure(&packed_buf_size, responseDataBuf, error_buf_size, responseErrorBuf); if (!result) { printf("#test_build_pack_x2enb_configuration_update_failure. Packing error %s\n", responseErrorBuf); return; } printf("x2enb configuration update failure packed size:%lu\nPayload:\n", packed_buf_size); for (size_t i = 0; i < packed_buf_size; ++i) printf("%02x",responseDataBuf[i]); printf("\n"); } void test_build_pack_endc_configuration_update_ack(){ size_t error_buf_size = 8192; size_t packed_buf_size = 4096; unsigned char responseDataBuf[packed_buf_size]; char responseErrorBuf[error_buf_size]; bool result = build_pack_endc_configuration_update_ack(&packed_buf_size, responseDataBuf, error_buf_size, responseErrorBuf); if (!result) { printf("#test_build_pack_endc_configuration_update_ack. Packing error %s\n", responseErrorBuf); return; } printf("endc configuration update acknowledge packed size:%lu\nPayload:\n", packed_buf_size); for (size_t i = 0; i < packed_buf_size; ++i) printf("%02x",responseDataBuf[i]); printf("\n"); E2AP_PDU_t *pdu = calloc(1, sizeof(E2AP_PDU_t)); if (!unpack_pdu_aux(pdu, packed_buf_size, responseDataBuf,error_buf_size, responseErrorBuf,ATS_ALIGNED_BASIC_PER)){ printf("#%s failed. Packing error %s\n", __func__, responseErrorBuf); } responseErrorBuf[0] = 0; asn1_pdu_printer(pdu, sizeof(responseErrorBuf), responseErrorBuf); printf("#%s: %s\n", __func__, responseErrorBuf); } void test_build_pack_endc_configuration_update_failure(){ size_t error_buf_size = 8192; size_t packed_buf_size = 4096; unsigned char responseDataBuf[packed_buf_size]; char responseErrorBuf[error_buf_size]; bool result = build_pack_endc_configuration_update_failure(&packed_buf_size, responseDataBuf, error_buf_size, responseErrorBuf); if (!result) { printf("#test_build_pack_endc_configuration_update_failure. Packing error %s\n", responseErrorBuf); return; } printf("endc configuration update failure packed size:%lu\nPayload:\n", packed_buf_size); for (size_t i = 0; i < packed_buf_size; ++i) printf("%02x",responseDataBuf[i]); printf("\n"); }