1 /*******************************************************************************
3 * Copyright (c) 2019 AT&T Intellectual Property.
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
9 * http://www.apache.org/licenses/LICENSE-2.0
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
17 *******************************************************************************/
20 * This source code is part of the near-RT RIC (RAN Intelligent Controller)
21 * platform project (RICP).
33 func TestPrepareEndcConfigurationUpdateFailurePDU(t *testing.T) {
35 _,err := logger.InitLogger(InfoLevel)
37 t.Errorf("failed to initialize logger, error: %s", err)
39 packedPdu := "402500080000010005400142"
40 packedEndcConfigurationUpdateFailure := PackedEndcConfigurationUpdateFailure
42 tmp := fmt.Sprintf("%x", packedEndcConfigurationUpdateFailure)
43 if len(tmp) != len(packedPdu) {
44 t.Errorf("want packed len:%d, got: %d\n", len(packedPdu)/2, len(packedEndcConfigurationUpdateFailure)/2)
47 if strings.Compare(tmp, packedPdu) != 0 {
48 t.Errorf("\nwant :\t[%s]\n got: \t\t[%s]\n", packedPdu, tmp)
52 func TestPrepareEndcConfigurationUpdateFailurePDUFailure(t *testing.T) {
54 _, err := logger.InitLogger(InfoLevel)
56 t.Errorf("failed to initialize logger, error: %s", err)
59 err = prepareEndcConfigurationUpdateFailurePDU(1, 4096)
61 t.Errorf("want: error, got: success.\n")
64 expected:= "#configuration_update.prepareEndcConfigurationUpdateFailurePDU - failed to build and pack the endc configuration update failure message #src/asn1codec_utils.c.pack_pdu_aux - Encoded output of E2AP-PDU, is too big"
65 if !strings.Contains(err.Error(), expected) {
66 t.Errorf("want :[%s], got: [%s]\n", expected, err)
70 func TestPrepareX2EnbConfigurationUpdateFailurePDU(t *testing.T) {
72 _,err := logger.InitLogger(InfoLevel)
74 t.Errorf("failed to initialize logger, error: %s", err)
76 packedPdu := "400800080000010005400142"
77 packedEndcX2ConfigurationUpdateFailure := PackedX2EnbConfigurationUpdateFailure
79 tmp := fmt.Sprintf("%x", packedEndcX2ConfigurationUpdateFailure)
80 if len(tmp) != len(packedPdu) {
81 t.Errorf("want packed len:%d, got: %d\n", len(packedPdu)/2, len(packedEndcX2ConfigurationUpdateFailure)/2)
84 if strings.Compare(tmp, packedPdu) != 0 {
85 t.Errorf("\nwant :\t[%s]\n got: \t\t[%s]\n", packedPdu, tmp)
89 func TestPrepareX2EnbConfigurationUpdateFailurePDUFailure(t *testing.T) {
91 _, err := logger.InitLogger(InfoLevel)
93 t.Errorf("failed to initialize logger, error: %s", err)
96 err = prepareX2EnbConfigurationUpdateFailurePDU(1, 4096)
98 t.Errorf("want: error, got: success.\n")
101 expected:= "#configuration_update.prepareX2EnbConfigurationUpdateFailurePDU - failed to build and pack the x2 configuration update failure message #src/asn1codec_utils.c.pack_pdu_aux - Encoded output of E2AP-PDU, is too big"
102 if !strings.Contains(err.Error(), expected) {
103 t.Errorf("want :[%s], got: [%s]\n", expected, err)
107 func TestPrepareEndcConfigurationUpdateAckPDU(t *testing.T) {
109 _,err := logger.InitLogger(InfoLevel)
111 t.Errorf("failed to initialize logger, error: %s", err)
113 packedPdu := "2025000a00000100f70003000000"
114 packedEndcConfigurationUpdateAck := PackedEndcConfigurationUpdateAck
116 tmp := fmt.Sprintf("%x", packedEndcConfigurationUpdateAck)
117 if len(tmp) != len(packedPdu) {
118 t.Errorf("want packed len:%d, got: %d\n", len(packedPdu)/2, len(packedEndcConfigurationUpdateAck)/2)
121 if strings.Compare(tmp, packedPdu) != 0 {
122 t.Errorf("\nwant :\t[%s]\n got: \t\t[%s]\n", packedPdu, tmp)
126 func TestPrepareEndcConfigurationUpdateAckPDUFailure(t *testing.T) {
128 _, err := logger.InitLogger(InfoLevel)
130 t.Errorf("failed to initialize logger, error: %s", err)
133 err = prepareEndcConfigurationUpdateAckPDU(1, 4096)
135 t.Errorf("want: error, got: success.\n")
138 expected:= "#configuration_update.prepareEndcConfigurationUpdateAckPDU - failed to build and pack the endc configuration update ack message #src/asn1codec_utils.c.pack_pdu_aux - Encoded output of E2AP-PDU, is too big"
139 if !strings.Contains(err.Error(), expected) {
140 t.Errorf("want :[%s], got: [%s]\n", expected, err)
144 func TestPrepareX2EnbConfigurationUpdateAckPDU(t *testing.T) {
146 _,err := logger.InitLogger(InfoLevel)
148 t.Errorf("failed to initialize logger, error: %s", err)
150 packedPdu := "200800080000010011400100"
151 packedEndcX2ConfigurationUpdateAck := PackedX2EnbConfigurationUpdateAck
153 tmp := fmt.Sprintf("%x", packedEndcX2ConfigurationUpdateAck)
154 if len(tmp) != len(packedPdu) {
155 t.Errorf("want packed len:%d, got: %d\n", len(packedPdu)/2, len(packedEndcX2ConfigurationUpdateAck)/2)
158 if strings.Compare(tmp, packedPdu) != 0 {
159 t.Errorf("\nwant :\t[%s]\n got: \t\t[%s]\n", packedPdu, tmp)
163 func TestPrepareX2EnbConfigurationUpdateAckPDUFailure(t *testing.T) {
165 _, err := logger.InitLogger(InfoLevel)
167 t.Errorf("failed to initialize logger, error: %s", err)
170 err = prepareX2EnbConfigurationUpdateAckPDU(1, 4096)
172 t.Errorf("want: error, got: success.\n")
175 expected:= "#configuration_update.prepareX2EnbConfigurationUpdateAckPDU - failed to build and pack the x2 configuration update ack message #src/asn1codec_utils.c.pack_pdu_aux - Encoded output of E2AP-PDU, is too big"
176 if !strings.Contains(err.Error(), expected) {
177 t.Errorf("want :[%s], got: [%s]\n", expected, err)