Moving to ubuntu 18 and fixing UT's
[ric-plt/rtmgr.git] / pkg / sbi / sbi_test.go
index feba821..68c7654 100644 (file)
    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.
    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.
+
+   This source code is part of the near-RT RIC (RAN Intelligent Controller)
+   platform project (RICP).
+
 ==================================================================================
 */
 /*
 ==================================================================================
 */
 /*
@@ -26,6 +30,7 @@ package sbi
 import (
        "errors"
        "reflect"
 import (
        "errors"
        "reflect"
+       "routing-manager/pkg/rtmgr"
        "testing"
 )
 
        "testing"
 )
 
@@ -49,3 +54,42 @@ func TestGetSbi(t *testing.T) {
                }
        }
 }
                }
        }
 }
+
+func TestUpdateE2TendPoint(t *testing.T) {
+       var err error
+       var sbi = Sbi{}
+       sbii, err := GetSbi("nngpush")
+
+       var EP = make(map[string]*rtmgr.Endpoint)
+       EP["127.0.0.2"] = &rtmgr.Endpoint{Uuid: "127.0.0.2", Name: "E2TERM", XAppType: "app1", Ip: "127.0.0.2", Port: 4562, TxMessages: []string{"", ""}, RxMessages: []string{"", ""}, Socket: nil, IsReady: true, Keepalive: false}
+       rtmgr.Eps = EP
+
+       var nngpush = NngPush{}
+       nngpush.AddEndpoint(rtmgr.Eps["127.0.0.2"])
+
+       var E2map = make(map[string]rtmgr.E2TInstance)
+
+       E2map["127.0.0.2:4562"] = rtmgr.E2TInstance{
+               Name:    "E2Tinstance1",
+               Fqdn:    "127.0.0.2:4562",
+               Ranlist: []string{"1", "2"},
+       }
+
+       sbi.updateE2TEndpoints(&E2map, sbii)
+       t.Log(err)
+}
+
+func TestPruneEndpointList(t *testing.T) {
+       var sbi = Sbi{}
+       var err error
+       sbii, err := GetSbi("nngpush")
+       var EP = make(map[string]*rtmgr.Endpoint)
+       EP["127.0.0.2"] = &rtmgr.Endpoint{Uuid: "127.0.0.2", Name: "E2TERM", XAppType: "app1", Ip: "127.0.0.1", Port: 4562, TxMessages: []string{"", ""}, RxMessages: []string{"", ""}, Socket: nil, IsReady: true, Keepalive: false}
+       rtmgr.Eps = EP
+
+       var nngpush = NngPush{}
+       nngpush.AddEndpoint(rtmgr.Eps["127.0.0.2"])
+
+       sbi.pruneEndpointList(sbii)
+       t.Log(err)
+}