RIC-547 - E2M publish SDL event - Automation
[ric-plt/e2mgr.git] / E2Manager / controllers / e2t_controller_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 package controllers
19
20 import (
21         "e2mgr/configuration"
22         "e2mgr/managers"
23         "e2mgr/mocks"
24         "e2mgr/models"
25         "e2mgr/providers/httpmsghandlerprovider"
26         "e2mgr/services"
27         "encoding/json"
28         "gerrit.o-ran-sc.org/r/ric-plt/nodeb-rnib.git/common"
29         "gerrit.o-ran-sc.org/r/ric-plt/nodeb-rnib.git/entities"
30         "github.com/magiconair/properties/assert"
31         "github.com/pkg/errors"
32         "io/ioutil"
33         "net/http"
34         "net/http/httptest"
35         "testing"
36 )
37
38 const E2TAddress string = "10.0.2.15:38000"
39 const E2TAddress2 string = "10.0.2.16:38001"
40
41 type controllerE2TInstancesTestContext struct {
42         e2tAddresses         []string
43         e2tInstances         []*entities.E2TInstance
44         error                error
45         expectedStatusCode   int
46         expectedJsonResponse string
47 }
48
49 func setupE2TControllerTest(t *testing.T) (*E2TController, *mocks.RnibReaderMock) {
50         log := initLog(t)
51         config := configuration.ParseConfiguration()
52
53         readerMock := &mocks.RnibReaderMock{}
54
55         rnibDataService := services.NewRnibDataService(log, config, readerMock, nil)
56         e2tInstancesManager := managers.NewE2TInstancesManager(rnibDataService, log)
57
58         ranListManager := managers.NewRanListManager(log)
59         ranAlarmService := services.NewRanAlarmService(log, config)
60         ranConnectStatusChangeManager := managers.NewRanConnectStatusChangeManager(log, rnibDataService,ranListManager, ranAlarmService)
61
62         handlerProvider := httpmsghandlerprovider.NewIncomingRequestHandlerProvider(log, nil, config, rnibDataService, nil, e2tInstancesManager, &managers.E2TAssociationManager{}, nil, ranConnectStatusChangeManager)
63         controller := NewE2TController(log, handlerProvider)
64         return controller, readerMock
65 }
66
67 func controllerGetE2TInstancesTestExecuter(t *testing.T, context *controllerE2TInstancesTestContext) {
68         controller, readerMock := setupE2TControllerTest(t)
69         writer := httptest.NewRecorder()
70         readerMock.On("GetE2TAddresses").Return(context.e2tAddresses, context.error)
71
72         if context.e2tInstances != nil {
73                 readerMock.On("GetE2TInstances", context.e2tAddresses).Return(context.e2tInstances, context.error)
74         }
75
76         req, _ := http.NewRequest("GET", "/e2t/list", nil)
77         controller.GetE2TInstances(writer, req)
78         assert.Equal(t, context.expectedStatusCode, writer.Result().StatusCode)
79         bodyBytes, _ := ioutil.ReadAll(writer.Body)
80         assert.Equal(t, context.expectedJsonResponse, string(bodyBytes))
81         readerMock.AssertExpectations(t)
82 }
83
84 func TestControllerGetE2TInstancesSuccess(t *testing.T) {
85         ranNames1 := []string{"test1", "test2", "test3"}
86         e2tInstanceResponseModel1 := models.NewE2TInstanceResponseModel(E2TAddress, ranNames1)
87         e2tInstanceResponseModel2 := models.NewE2TInstanceResponseModel(E2TAddress2, []string{})
88         e2tInstancesResponse := models.E2TInstancesResponse{e2tInstanceResponseModel1, e2tInstanceResponseModel2}
89         bytes, _ := json.Marshal(e2tInstancesResponse)
90
91         context := controllerE2TInstancesTestContext{
92                 e2tAddresses:         []string{E2TAddress, E2TAddress2},
93                 e2tInstances:         []*entities.E2TInstance{{Address: E2TAddress, AssociatedRanList: ranNames1}, {Address: E2TAddress2, AssociatedRanList: []string{}}},
94                 error:                nil,
95                 expectedStatusCode:   http.StatusOK,
96                 expectedJsonResponse: string(bytes),
97         }
98
99         controllerGetE2TInstancesTestExecuter(t, &context)
100 }
101
102 func TestControllerGetE2TInstancesEmptySuccess(t *testing.T) {
103         e2tInstancesResponse := models.E2TInstancesResponse{}
104         bytes, _ := json.Marshal(e2tInstancesResponse)
105
106         context := controllerE2TInstancesTestContext{
107                 e2tAddresses:         []string{},
108                 e2tInstances:         nil,
109                 error:                nil,
110                 expectedStatusCode:   http.StatusOK,
111                 expectedJsonResponse: string(bytes),
112         }
113
114         controllerGetE2TInstancesTestExecuter(t, &context)
115 }
116
117 func TestControllerGetE2TInstancesInternal(t *testing.T) {
118         context := controllerE2TInstancesTestContext{
119                 e2tAddresses:         nil,
120                 e2tInstances:         nil,
121                 error:                common.NewInternalError(errors.New("error")),
122                 expectedStatusCode:   http.StatusInternalServerError,
123                 expectedJsonResponse: "{\"errorCode\":500,\"errorMessage\":\"RNIB error\"}",
124         }
125
126         controllerGetE2TInstancesTestExecuter(t, &context)
127 }
128
129 func TestInvalidRequestName(t *testing.T) {
130         controller, _ := setupE2TControllerTest(t)
131
132         writer := httptest.NewRecorder()
133
134         header := &http.Header{}
135
136         controller.handleRequest(writer, header, "", nil, true)
137
138         var errorResponse = parseJsonRequest(t, writer.Body)
139
140         assert.Equal(t, http.StatusInternalServerError, writer.Result().StatusCode)
141         assert.Equal(t, errorResponse.Code, 501)
142 }