RIC-194 Setup from RAN: On Routing Manager Failure, return Setup Failure
[ric-plt/e2mgr.git] / E2Manager / handlers / rmrmsghandlers / x2enb_configuration_update_handler_test.go
1 //
2 // Copyright 2019 AT&T Intellectual Property
3 // Copyright 2019 Nokia
4 //
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
8 //
9 //      http://www.apache.org/licenses/LICENSE-2.0
10 //
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.
16
17 //  This source code is part of the near-RT RIC (RAN Intelligent Controller)
18 //  platform project (RICP).
19
20 package rmrmsghandlers
21
22 import (
23         "e2mgr/mocks"
24         "e2mgr/models"
25         "e2mgr/rmrCgo"
26         "fmt"
27         "testing"
28         "time"
29         "unsafe"
30 )
31
32 const PackedX2EnbConfigurationUpdateAck = "200800080000010011400100"
33 const PackedX2EnbConfigurationUpdateFailure = "400800080000010005400142"
34
35 func initX2EnbConfigurationUpdateHandlerTest(t *testing.T) (X2EnbConfigurationUpdateHandler, *mocks.RmrMessengerMock) {
36         log := initLog(t)
37         rmrMessengerMock := &mocks.RmrMessengerMock{}
38         rmrSender := initRmrSender(rmrMessengerMock, log)
39         h := NewX2EnbConfigurationUpdateHandler(log, rmrSender)
40         return h, rmrMessengerMock
41 }
42
43 func TestHandleX2EnbConfigUpdateSuccess(t *testing.T) {
44         h, rmrMessengerMock := initX2EnbConfigurationUpdateHandlerTest(t)
45
46         ranName := "test"
47         xAction := []byte("123456aa")
48         var payload []byte
49         _, _ = fmt.Sscanf(PackedX2EnbConfigurationUpdateAck, "%x", &payload)
50         var msgSrc unsafe.Pointer
51
52         mBuf := rmrCgo.NewMBuf(rmrCgo.RIC_ENB_CONFIGURATION_UPDATE_ACK, len(payload), ranName, &payload, &xAction, msgSrc)
53         notificationRequest := models.NotificationRequest{RanName: mBuf.Meid, Len: mBuf.Len, Payload: *mBuf.Payload,
54                 StartTime: time.Now(), TransactionId:xAction}
55         var err error
56         rmrMessengerMock.On("SendMsg", mBuf, true).Return(&rmrCgo.MBuf{}, err)
57         h.Handle(&notificationRequest)
58         rmrMessengerMock.AssertCalled(t, "SendMsg", mBuf, true)
59 }
60
61 func TestHandleX2EnbConfigUpdateFailure(t *testing.T) {
62         h, rmrMessengerMock := initX2EnbConfigurationUpdateHandlerTest(t)
63
64         ranName := "test"
65         xAction := []byte("123456aa")
66
67         var payload []byte
68         _, _ = fmt.Sscanf(PackedX2EnbConfigurationUpdateFailure, "%x", &payload)
69         var msgSrc unsafe.Pointer
70
71         mBuf := rmrCgo.NewMBuf(rmrCgo.RIC_ENB_CONFIGURATION_UPDATE_FAILURE, len(payload), ranName, &payload, &xAction, msgSrc)
72         notificationRequest := models.NotificationRequest{RanName: mBuf.Meid, Len: 0, Payload: []byte{0},
73                 StartTime: time.Now(), TransactionId:xAction}
74         rmrMessengerMock.On("SendMsg", mBuf, true).Return(&rmrCgo.MBuf{}, fmt.Errorf("send failure"))
75         h.Handle(&notificationRequest)
76         rmrMessengerMock.AssertCalled(t, "SendMsg", mBuf, true)
77 }