Non-functional changes to silence Sonar
[portal/ric-dashboard.git] / webapp-backend / src / main / java / org / oransc / ric / portal / dashboard / config / E2ManagerMockConfiguration.java
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2019 AT&T Intellectual Property and Nokia
6  * %%
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ========================LICENSE_END===================================
19  */
20 package org.oransc.ric.portal.dashboard.config;
21
22 import static org.mockito.ArgumentMatchers.any;
23 import static org.mockito.Mockito.doAnswer;
24 import static org.mockito.Mockito.mock;
25 import static org.mockito.Mockito.when;
26
27 import java.lang.invoke.MethodHandles;
28 import java.util.ArrayList;
29 import java.util.List;
30
31 import org.oransc.ric.e2mgr.client.api.HealthCheckApi;
32 import org.oransc.ric.e2mgr.client.api.NodebApi;
33 import org.oransc.ric.e2mgr.client.invoker.ApiClient;
34 import org.oransc.ric.e2mgr.client.model.GetNodebResponse;
35 import org.oransc.ric.e2mgr.client.model.NodebIdentity;
36 import org.oransc.ric.e2mgr.client.model.NodebIdentityGlobalNbId;
37 import org.oransc.ric.e2mgr.client.model.SetupRequest;
38 import org.slf4j.Logger;
39 import org.slf4j.LoggerFactory;
40 import org.springframework.context.annotation.Bean;
41 import org.springframework.context.annotation.Configuration;
42 import org.springframework.context.annotation.Profile;
43 import org.springframework.http.HttpStatus;
44
45 /**
46  * Creates a mock implementation of the E2 Manager client API.
47  */
48 @Profile("mock")
49 @Configuration
50 public class E2ManagerMockConfiguration {
51
52         private static final Logger logger = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
53
54         private final List<NodebIdentity> nodebIdList;
55         private final GetNodebResponse nodebResponse;
56
57         public E2ManagerMockConfiguration() {
58                 logger.info("Configuring mock E2 Manager");
59                 NodebIdentityGlobalNbId globalNbId = new NodebIdentityGlobalNbId().nbId("mockNbId").plmnId("mockPlmId");
60                 NodebIdentity nbid = new NodebIdentity().inventoryName("mockInvName").globalNbId(globalNbId);
61                 nodebIdList = new ArrayList<>();
62                 nodebIdList.add(nbid);
63                 nodebResponse = new GetNodebResponse().connectionStatus("mockConnectionStatus").failureType("mockFailureType")
64                                 .ip("127.0.0.1").nodeType("mockNodeType").port(123).ranName("mockRanName");
65         }
66
67         private ApiClient apiClient() {
68                 ApiClient mockClient = mock(ApiClient.class);
69                 when(mockClient.getStatusCode()).thenReturn(HttpStatus.OK);
70                 return mockClient;
71         }
72
73         @Bean
74         // Use the same name as regular configuration
75         public HealthCheckApi e2MgrHealthCheckApi() {
76                 ApiClient apiClient = apiClient();
77                 HealthCheckApi mockApi = mock(HealthCheckApi.class);
78                 when(mockApi.getApiClient()).thenReturn(apiClient);
79                 doAnswer(i -> null).when(mockApi).healthGet();
80                 return mockApi;
81         }
82
83         @Bean
84         // Use the same name as regular configuration
85         public NodebApi e2MgrNodebApi() {
86                 ApiClient apiClient = apiClient();
87                 NodebApi mockApi = mock(NodebApi.class);
88                 when(mockApi.getApiClient()).thenReturn(apiClient);
89                 doAnswer(i -> null).when(mockApi).nodebDelete();
90                 doAnswer(i -> nodebResponse).when(mockApi).getNb(any(String.class));
91                 doAnswer(i -> nodebIdList).when(mockApi).getNodebIdList();
92                 doAnswer(i -> null).when(mockApi).endcSetup(any(SetupRequest.class));
93                 doAnswer(i -> null).when(mockApi).x2Setup(any(SetupRequest.class));
94                 return mockApi;
95         }
96
97 }