RIC:1060: Change in PTL
[ric-plt/rtmgr.git] / pkg / sbi / nngpush_test.go
1 /*
2 ==================================================================================
3    Copyright (c) 2019 AT&T Intellectual Property.
4    Copyright (c) 2019 Nokia
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    This source code is part of the near-RT RIC (RAN Intelligent Controller)
19    platform project (RICP).
20
21 ==================================================================================
22 */
23 /*
24         Mnemonic:       rmrpush_test.go
25         Abstract:
26         Date:           3 May 2019
27 */
28 package sbi
29
30 import (
31         //"errors"
32         "gerrit.o-ran-sc.org/r/ric-plt/xapp-frame/pkg/xapp"
33         "os"
34         "routing-manager/pkg/rtmgr"
35         "routing-manager/pkg/stub"
36         "testing"
37         "time"
38 )
39
40 type Consumer struct{}
41
42 func (m Consumer) Consume(params *xapp.RMRParams) (err error) {
43         xapp.SdlStorage.Store(rtmgr.RTMGR_SDL_NS, "myKey", params.Payload)
44         return nil
45 }
46
47 // Test cases
48 func TestMain(m *testing.M) {
49         go xapp.RunWithParams(Consumer{}, false)
50         time.Sleep(time.Duration(5) * time.Second)
51         code := m.Run()
52         os.Exit(code)
53 }
54
55 /*
56 Resets the EndpointList according to argumnets
57 */
58 func resetTestPushDataset(instance RmrPush, testdata []rtmgr.Endpoint) {
59         rtmgr.RMRConnStatus = make(map[string]bool)
60         rtmgr.Eps = make(map[string]*rtmgr.Endpoint)
61         for _, endpoint := range testdata {
62                 ep := endpoint
63                 //ep.Socket, _ = instance.NewSocket()
64                 rtmgr.Eps[ep.Uuid] = &ep
65         }
66 }
67
68 /*
69 rmrpush.Initialize() method is empty, nothing to be tested
70 */
71 func TestRmrPushInitialize(t *testing.T) {
72         var rmrpush = RmrPush{}
73
74         _ = rmrpush.Initialize("")
75 }
76
77 /*
78 rmrpush.Terminate() method is empty, nothing to be tested
79 */
80 func TestRmrPushTerminate(t *testing.T) {
81         var rmrpush = RmrPush{}
82
83         _ = rmrpush.Terminate()
84 }
85
86 /*
87 rmrpush.UpdateEndpoints() is testd against stub.ValidXApps dataset
88 */
89 func TestRmrPushUpdateEndpoints(t *testing.T) {
90         var rmrpush = RmrPush{}
91         resetTestPushDataset(rmrpush, stub.ValidEndpoints)
92
93         rmrpush.UpdateEndpoints(&stub.ValidRicComponents)
94         if rtmgr.Eps == nil {
95                 t.Errorf("rmrpush.UpdateEndpoints() result was incorrect, got: %v, want: %v.", nil, "rtmgr.Endpoints")
96         }
97 }
98
99 /*
100 rmrpush.AddEndpoint() is tested for happy path case
101 */
102 func TestRmrPushAddEndpoint(t *testing.T) {
103         //      var err error
104         var rmrpush = RmrPush{}
105         resetTestPushDataset(rmrpush, stub.ValidEndpoints)
106         _ = rmrpush.AddEndpoint(rtmgr.Eps["localhost"])
107         /*      if err != nil {
108                 t.Errorf("rmrpush.AddEndpoint() return was incorrect, got: %v, want: %v.", err, "nil")
109         }*/
110 }
111
112 /*
113 rmrpush.DistributeAll() is tested for happy path case
114 */
115 func TestRmrPushDistributeAll(t *testing.T) {
116         var err error
117         var rmrpush = RmrPush{}
118         resetTestPushDataset(rmrpush, stub.ValidEndpoints)
119
120         rmrcallid = 200
121         err = rmrpush.DistributeAll(stub.ValidPolicies)
122         t.Log(err)
123         /*if err != nil {
124                 t.Errorf("rmrpush.DistributeAll(policies) was incorrect, got: %v, want: %v.", err, "nil")
125         }*/
126 }
127
128 /*
129 rmrpush.DistributeToEp() is tested for Sending case
130 */
131 func TestDistributeToEp(t *testing.T) {
132         var err error
133         var rmrpush = RmrPush{}
134         resetTestPushDataset(rmrpush, stub.ValidEndpoints)
135
136         rmrdynamiccallid = 255
137         err = rmrpush.DistributeToEp(stub.ValidPolicies, "localhost:4561", 100)
138         if err != nil {
139                 t.Errorf("rmrpush.DistributetoEp(policies) was incorrect, got: %v, want: %v.", err, "nil")
140         }
141 }
142
143 func TestDeleteEndpoint(t *testing.T) {
144         var err error
145         var rmrpush = RmrPush{}
146         resetTestPushDataset(rmrpush, stub.ValidEndpoints)
147
148         err = rmrpush.DeleteEndpoint(rtmgr.Eps["localhost"])
149         if err != nil {
150                 t.Errorf("rmrpush.DeleteEndpoint() was incorrect, got: %v, want: %v.", err, "nil")
151         }
152 }
153
154 func TestCheckEndpoint(t *testing.T) {
155         var rmrpush = RmrPush{}
156         resetTestPushDataset(rmrpush, stub.ValidEndpoints1)
157         rmrpush.CheckEndpoint("192.168.0.1:0")
158         rmrpush.CheckEndpoint("10.2.2.1:0")
159         rmrpush.CheckEndpoint("localhost:0")
160 }
161
162 func TestCreateEndpoint(t *testing.T) {
163         var rmrpush = RmrPush{}
164         resetTestPushDataset(rmrpush, stub.ValidEndpoints1)
165         rmrpush.CreateEndpoint("Src=127.0.0.1:4561 hello")
166 }
167
168 /*
169 Initialize and send policies
170 */
171 func TestRmrPushInitializeandsendPolicies(t *testing.T) {
172         var rmrpush = RmrPush{}
173         resetTestPushDataset(rmrpush, stub.ValidEndpoints)
174         policies := []string{"hello", "welcome"}
175         rmrpush.send_data(rtmgr.Eps["localhost"], &policies, 1)
176 }
177
178 func TestString(t *testing.T) {
179         var params xapp.RMRParams
180         params.Payload = []byte("abcdefgh")
181         params.Meid = &xapp.RMRMeid{}
182         msg := RMRParams{&params}
183         msg.String()
184
185 }
186
187 func TestSenddata(t *testing.T) {
188         var rmrpush = RmrPush{}
189         ep := rtmgr.Endpoint{Whid: -1, Ip: "1.1.1.1"}
190         policies := []string{"mse|12345|-1|local.com"}
191         rmrpush.send_data(&ep, &policies, 300)
192 }
193
194 func TestSendDynamicdata(t *testing.T) {
195         var rmrpush = RmrPush{}
196         ep := "1.1.1.1"
197         policies := []string{"mse|12345|-1|local.com"}
198         rmrpush.sendDynamicRoutes(ep, 1, &policies, 300)
199 }