RIC-11565:Add support for Multiple E2 Nodes: CU/DU for the case having same GNBId
[ric-plt/e2mgr.git] / E2Manager / handlers / rmrmsghandlers / e2t_keep_alive_response_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
18 //  This source code is part of the near-RT RIC (RAN Intelligent Controller)
19 //  platform project (RICP).
20
21 package rmrmsghandlers
22
23 import (
24         "e2mgr/configuration"
25         "e2mgr/logger"
26         "e2mgr/mocks"
27         "e2mgr/models"
28         "e2mgr/services"
29         "testing"
30 )
31
32 func initE2TKeepAliveTest(t *testing.T) (*logger.Logger, E2TKeepAliveResponseHandler, *mocks.RnibReaderMock, *mocks.RnibWriterMock, *mocks.E2TInstancesManagerMock) {
33
34         logger := initLog(t)
35         config := &configuration.Configuration{RnibRetryIntervalMs: 10, MaxRnibConnectionAttempts: 3}
36
37         readerMock := &mocks.RnibReaderMock{}
38         writerMock := &mocks.RnibWriterMock{}
39
40         rnibDataService := services.NewRnibDataService(logger, config, readerMock, writerMock)
41
42         e2tInstancesManagerMock := &mocks.E2TInstancesManagerMock{}
43         handler := NewE2TKeepAliveResponseHandler(logger, rnibDataService, e2tInstancesManagerMock)
44         return logger, handler, readerMock, writerMock, e2tInstancesManagerMock
45 }
46
47 func TestE2TKeepAliveUnmarshalPayloadFailure(t *testing.T) {
48         _, handler, _, _, e2tInstancesManagerMock := initE2TKeepAliveTest(t)
49         notificationRequest := &models.NotificationRequest{RanName: RanName, Payload: []byte("asd")}
50         handler.Handle(notificationRequest)
51         e2tInstancesManagerMock.AssertNotCalled(t, "ResetKeepAliveTimestamp")
52 }
53
54 func TestE2TKeepAliveUnmarshalPayloadSuccess(t *testing.T) {
55         _, handler, _, _, e2tInstancesManagerMock := initE2TKeepAliveTest(t)
56
57         jsonRequest := "{\"address\":\"10.10.2.15:9800\"}"
58         notificationRequest := &models.NotificationRequest{RanName: RanName, Payload: []byte(jsonRequest)}
59
60         e2tInstancesManagerMock.On("ResetKeepAliveTimestamp", "10.10.2.15:9800").Return(nil)
61         handler.Handle(notificationRequest)
62         e2tInstancesManagerMock.AssertCalled(t, "ResetKeepAliveTimestamp", "10.10.2.15:9800")
63 }