Upgrade E2 to version 20190626
[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("1.2.3.4").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
80                 doAnswer(i -> {
81                         return null;
82                 }).when(mockApi).healthGet();
83
84                 return mockApi;
85         }
86
87         @Bean
88         // Use the same name as regular configuration
89         public NodebApi e2MgrNodebApi() {
90                 ApiClient apiClient = apiClient();
91                 NodebApi mockApi = mock(NodebApi.class);
92                 when(mockApi.getApiClient()).thenReturn(apiClient);
93
94                 doAnswer(i -> {
95                         return null;
96                 }).when(mockApi).nodebDelete();
97
98                 doAnswer(i -> {
99                         return nodebResponse;
100                 }).when(mockApi).getNb(any(String.class));
101
102                 doAnswer(i -> {
103                         return nodebIdList;
104                 }).when(mockApi).getNodebIdList();
105
106                 doAnswer(i -> {
107                         return null;
108                 }).when(mockApi).endcSetup(any(SetupRequest.class));
109
110                 doAnswer(i -> {
111                         return null;
112                 }).when(mockApi).x2Setup(any(SetupRequest.class));
113
114                 return mockApi;
115         }
116
117 }