1c2afe9bd731c79d00320a09a4799c66d8b87279
[ric-plt/e2mgr.git] / E2Manager / handlers / rmrmsghandlers / endc_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 )
30
31 const PackedEndcConfigurationUpdateAck = "2025000a00000100f70003000000"
32 const PackedEndcConfigurationUpdateFailure = "402500080000010005400142"
33
34 func initEndcConfigurationUpdateHandlerTest(t *testing.T) (EndcConfigurationUpdateHandler, *mocks.RmrMessengerMock) {
35         log := initLog(t)
36         rmrMessengerMock := &mocks.RmrMessengerMock{}
37         rmrSender := initRmrSender(rmrMessengerMock, log)
38         h := NewEndcConfigurationUpdateHandler(log, rmrSender)
39         return h, rmrMessengerMock
40 }
41
42 func TestHandleEndcConfigUpdateSuccess(t *testing.T) {
43         h, rmrMessengerMock := initEndcConfigurationUpdateHandlerTest(t)
44
45         ranName := "test"
46         xAction := []byte("123456aa")
47
48         var payload []byte
49         _, _ = fmt.Sscanf(PackedEndcConfigurationUpdateAck, "%x", &payload)
50
51         mBuf := rmrCgo.NewMBuf(rmrCgo.RIC_ENDC_CONF_UPDATE_ACK, len(payload), ranName, &payload, &xAction)
52         notificationRequest := models.NotificationRequest{RanName: mBuf.Meid, Len: mBuf.Len, Payload: *mBuf.Payload, StartTime: time.Now(),
53                 TransactionId: *mBuf.XAction}
54         var err error
55         rmrMessengerMock.On("SendMsg", mBuf, true).Return(&rmrCgo.MBuf{}, err)
56         h.Handle(&notificationRequest)
57         rmrMessengerMock.AssertCalled(t, "SendMsg", mBuf, true)
58 }
59
60 func TestHandleEndcConfigUpdateFailure(t *testing.T) {
61         h, rmrMessengerMock := initEndcConfigurationUpdateHandlerTest(t)
62
63         ranName := "test"
64         xAction := []byte("123456aa")
65
66         var payload []byte
67         _, _ = fmt.Sscanf(PackedEndcConfigurationUpdateFailure, "%x", &payload)
68
69         mBuf := rmrCgo.NewMBuf(rmrCgo.RIC_ENDC_CONF_UPDATE_FAILURE, len(payload), ranName, &payload, &xAction)
70         notificationRequest := models.NotificationRequest{RanName: mBuf.Meid, Len: 0, Payload: []byte{0}, StartTime: time.Now(),
71                 TransactionId: *mBuf.XAction}
72         rmrMessengerMock.On("SendMsg", mBuf, true).Return(&rmrCgo.MBuf{}, fmt.Errorf("send failure"))
73         h.Handle(&notificationRequest)
74         rmrMessengerMock.AssertCalled(t, "SendMsg", mBuf, true)
75 }