E2AP Wrapper Implementation
[ric-app/hw.git] / test / test_indc.h
1 /*
2 ==================================================================================
3
4         Copyright (c) 2019-2020 AT&T Intellectual Property.
5
6    Licensed under the Apache License, Version 2.0 (the "License");
7    you may not use this file except in compliance with the License.
8    You may obtain a copy of the License at
9
10        http://www.apache.org/licenses/LICENSE-2.0
11
12    Unless required by applicable law or agreed to in writing, software
13    distributed under the License is distributed on an "AS IS" BASIS,
14    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15    See the License for the specific language governing permissions and
16    limitations under the License.
17 ==================================================================================
18 /*
19  * test_e2sm.h
20  *
21  *  Created on: Apr, 2020
22  *      Author: Shraboni Jana
23  */
24
25 #ifndef TEST_TEST_ASN_H_
26 #define TEST_TEST_ASN_H_
27 #include<iostream>
28 #include<gtest/gtest.h>
29
30 #include "e2ap_indication.hpp"
31 #include "e2sm_indication.hpp"
32
33 #include "e2ap_subscription_request.hpp"
34 #include "e2sm_subscription.hpp"
35 using namespace std;
36 TEST(E2SM, IndicationMessageEncode)
37 {
38         unsigned char buff[1024];
39         size_t buf_len = 1024;
40
41
42         HWIndicationHeader headerObj;
43         headerObj.set_ricIndicationHeader(1);
44         std::cout << headerObj.get_error() << std::endl;
45
46         HWIndicationMessage messageObj;
47         messageObj.set_hw_message("HelloWorld-E2SM");
48         std::cout << messageObj.get_error() << std::endl;
49
50         E2APIndication<HWIndicationHeader,HWIndicationMessage>::IndicationIEs infoObj;
51         infoObj.set_ranFunctionID(1);
52         infoObj.set_ricActionID(1);
53         infoObj.set_ricRequestorID(1);
54         infoObj.set_ricIndicationHeader(headerObj);
55         infoObj.set_ricIndicationMessage(messageObj);
56
57         E2APIndication<HWIndicationHeader,HWIndicationMessage> e2obj(infoObj);
58
59         bool res = e2obj.encode(buff, &buf_len);
60         if(!res)
61         {
62                 std::cout << e2obj.get_error() << std::endl;
63         }
64         ASSERT_TRUE(res);
65
66
67         FILE * pFile;
68         pFile = fopen ("indication1.per","w");
69         if (pFile!=NULL)
70          {
71                   fwrite (buff , sizeof(char), buf_len, pFile);
72               sleep(2);
73                   fclose (pFile);
74                   sleep(2);
75          }
76
77 }
78 TEST(E2SM, IndicationMessageDecode)
79 {
80        unsigned char e2ap_buff[4096];
81        char filename[100] = "indication2.per";
82        FILE *fp;
83        fp = fopen(filename,"rb");
84        if(!fp) {
85                      perror(filename);
86                      exit(1); }
87
88            size_t e2ap_buff_size = fread(e2ap_buff, 1, 4096, fp);
89            fclose(fp);
90            sleep(2);
91        if(!e2ap_buff_size){
92              fprintf(stderr, "%s: Empty or broken\n", filename);
93               exit(1);
94            } else {
95               fprintf(stderr, "e2ap buffer size: %ld \n", e2ap_buff_size);
96        }
97
98     bool decode_status = true;
99     try{
100         E2APIndication<HWIndicationHeader,HWIndicationMessage> e2obj(&e2ap_buff[0],&e2ap_buff_size);
101         E2APIndication<HWIndicationHeader,HWIndicationMessage>::IndicationIEs indIEs = e2obj.getIndicationIEs();
102         std::cout << indIEs.get_ricRequestorID() << std::endl;
103
104         size_t hsize = indIEs.get_ricIndicationHeader_size();
105         unsigned char* hvalue = (unsigned char*)indIEs.get_ricIndicationHeader();
106         HWIndicationHeader headerObj(&hvalue[0], &hsize);
107
108           size_t msize = indIEs.get_ricIndicationMessage_size();
109           auto mvalue = (unsigned char*)indIEs.get_ricIndicationMessage();
110           HWIndicationMessage msgObj(&mvalue[0], &msize);
111
112     } catch(const char* e){
113                 decode_status = false;
114                 std::cout << "Error Message: " << e << std::endl;
115         }
116
117
118         ASSERT_TRUE(decode_status);
119
120 }
121
122 /**/
123
124 #endif /* TEST_TEST_ASN_H_ */