[RICPLT-2526] KeepAlive worker and response.
[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 package rmrmsghandlers
18
19 import (
20         "e2mgr/configuration"
21         "e2mgr/logger"
22         "e2mgr/mocks"
23         "e2mgr/models"
24         "e2mgr/services"
25         "testing"
26 )
27
28 func initE2TKeepAliveTest(t *testing.T) (*logger.Logger, E2TKeepAliveResponseHandler, *mocks.RnibReaderMock, *mocks.RnibWriterMock, *mocks.E2TInstancesManagerMock) {
29
30         logger := initLog(t)
31         config := &configuration.Configuration{RnibRetryIntervalMs: 10, MaxRnibConnectionAttempts: 3}
32
33         readerMock := &mocks.RnibReaderMock{}
34         writerMock := &mocks.RnibWriterMock{}
35
36         rnibDataService := services.NewRnibDataService(logger, config, readerMock, writerMock)
37
38         e2tInstancesManagerMock := &mocks.E2TInstancesManagerMock{}
39         handler := NewE2TKeepAliveResponseHandler(logger, rnibDataService, e2tInstancesManagerMock)
40         return logger, handler, readerMock, writerMock, e2tInstancesManagerMock
41 }
42
43 func TestE2TKeepAliveUnmarshalPayloadFailure(t *testing.T) {
44         _, handler, _, _, e2tInstancesManagerMock := initE2TKeepAliveTest(t)
45         notificationRequest := &models.NotificationRequest{RanName: RanName, Payload: []byte("asd")}
46         handler.Handle(notificationRequest)
47         e2tInstancesManagerMock.AssertNotCalled(t, "ResetKeepAliveTimestamp")
48 }
49
50 func TestE2TKeepAliveUnmarshalPayloadSuccess(t *testing.T) {
51         _, handler, _, _, e2tInstancesManagerMock := initE2TKeepAliveTest(t)
52
53         jsonRequest := "{\"address\":\"10.10.2.15:9800\"}"
54         notificationRequest := &models.NotificationRequest{RanName: RanName, Payload: []byte(jsonRequest)}
55
56         e2tInstancesManagerMock.On("ResetKeepAliveTimestamp", "10.10.2.15:9800").Return(nil)
57         handler.Handle(notificationRequest)
58         e2tInstancesManagerMock.AssertCalled(t, "ResetKeepAliveTimestamp", "10.10.2.15:9800")
59 }