Drop Nokia from file header copyright line
[portal/ric-dashboard.git] / webapp-backend / src / test / java / org / oransc / ric / portal / dashboard / config / AppManagerMockConfiguration.java
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2019 AT&T Intellectual Property
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
29 import org.oransc.ric.plt.appmgr.client.api.HealthApi;
30 import org.oransc.ric.plt.appmgr.client.api.XappApi;
31 import org.oransc.ric.plt.appmgr.client.invoker.ApiClient;
32 import org.oransc.ric.plt.appmgr.client.model.AllDeployableXapps;
33 import org.oransc.ric.plt.appmgr.client.model.AllDeployedXapps;
34 import org.oransc.ric.plt.appmgr.client.model.AllXappConfig;
35 import org.oransc.ric.plt.appmgr.client.model.ConfigMetadata;
36 import org.oransc.ric.plt.appmgr.client.model.SubscriptionRequest;
37 import org.oransc.ric.plt.appmgr.client.model.SubscriptionResponse;
38 import org.oransc.ric.plt.appmgr.client.model.XAppConfig;
39 import org.oransc.ric.plt.appmgr.client.model.XAppInfo;
40 import org.oransc.ric.plt.appmgr.client.model.Xapp;
41 import org.oransc.ric.plt.appmgr.client.model.Xapp.StatusEnum;
42 import org.oransc.ric.plt.appmgr.client.model.XappInstance;
43 import org.slf4j.Logger;
44 import org.slf4j.LoggerFactory;
45 import org.springframework.beans.factory.annotation.Value;
46 import org.springframework.context.annotation.Bean;
47 import org.springframework.context.annotation.Configuration;
48 import org.springframework.context.annotation.Profile;
49 import org.springframework.http.HttpStatus;
50
51 /**
52  * Creates an implementation of the xApp manager client that answers requests
53  * with mock data.
54  */
55 @Profile("test")
56 @Configuration
57 public class AppManagerMockConfiguration {
58
59         private static final Logger logger = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
60
61         // Simulate remote method delay for UI testing
62         @Value("${mock.config.delay:0}")
63         private int delayMs;
64
65         private final AllDeployableXapps deployableApps;
66         private final AllDeployedXapps deployedXapps;
67         private final AllXappConfig allXappConfigs;
68         private final SubscriptionResponse subRes;
69
70         public AppManagerMockConfiguration() {
71                 logger.info("Configuring mock xApp Manager");
72                 final String[] appNames = { "AdmissionControl", "Automatic Neighbor Relation", "UE Event Collector" };
73                 final String configJson = " { \"config\" : \"example\" }";
74                 final String descriptorJson = " { \"descriptor\" : \"example\" }";
75                 allXappConfigs = new AllXappConfig();
76                 deployableApps = new AllDeployableXapps();
77                 deployedXapps = new AllDeployedXapps();
78                 for (String n : appNames) {
79                         ConfigMetadata metadata = new ConfigMetadata().configName("config-" + n).name(n).namespace("namespace");
80                         XAppConfig config = new XAppConfig().config(configJson).descriptor(descriptorJson).metadata(metadata);
81                         allXappConfigs.add(config);
82                         deployableApps.add(n);
83                         Xapp xapp = new Xapp().name(n).version("version").status(StatusEnum.UNKNOWN);
84                         xapp.addInstancesItem(new XappInstance().name("abcd-1234").ip("127.0.0.1").port(200)
85                                         .status(XappInstance.StatusEnum.RUNNING));
86                         deployedXapps.add(xapp);
87                 }
88                 subRes = new SubscriptionResponse().eventType(SubscriptionResponse.EventTypeEnum.ALL).id("subid").version(1);
89         }
90
91         @Bean
92         // Use the same name as regular configuration
93         public HealthApi xappMgrHealthApi() {
94                 ApiClient mockClient = mock(ApiClient.class);
95                 when(mockClient.getStatusCode()).thenReturn(HttpStatus.OK);
96                 HealthApi mockApi = mock(HealthApi.class);
97                 when(mockApi.getApiClient()).thenReturn(mockClient);
98                 doAnswer(i -> null).when(mockApi).getHealthAlive();
99                 doAnswer(i -> null).when(mockApi).getHealthReady();
100                 return mockApi;
101         }
102
103         @Bean
104         // Use the same name as regular configuration
105         public XappApi xappMgrXappApi() {
106                 ApiClient mockClient = mock(ApiClient.class);
107                 when(mockClient.getStatusCode()).thenReturn(HttpStatus.OK);
108                 XappApi mockApi = mock(XappApi.class);
109                 when(mockApi.getApiClient()).thenReturn(mockClient);
110                 doAnswer(inv -> {
111                         if (delayMs > 0) {
112                                 logger.debug("getAllXappConfig sleeping {}", delayMs);
113                                 Thread.sleep(delayMs);
114                         }
115                         return allXappConfigs;
116                 }).when(mockApi).getAllXappConfig();
117                 doAnswer(inv -> {
118                         if (delayMs > 0) {
119                                 logger.debug("createXappConfig sleeping {}", delayMs);
120                                 Thread.sleep(delayMs);
121                         }
122                         return allXappConfigs.get(0);
123                 }).when(mockApi).createXappConfig(any(XAppConfig.class));
124                 doAnswer(inv -> {
125                         if (delayMs > 0) {
126                                 logger.debug("modifyXappConfig sleeping {}", delayMs);
127                                 Thread.sleep(delayMs);
128                         }
129                         return allXappConfigs.get(0);
130                 }).when(mockApi).modifyXappConfig(any(XAppConfig.class));
131                 doAnswer(inv -> {
132                         if (delayMs > 0) {
133                                 logger.debug("deleteXappConfig sleeping {}", delayMs);
134                                 Thread.sleep(delayMs);
135                         }
136                         return null;
137                 }).when(mockApi).deleteXappConfig(any(ConfigMetadata.class));
138                 doAnswer(inv -> {
139                         if (delayMs > 0) {
140                                 logger.debug("deployXapp of {} sleeping {}", inv.getArgument(0), delayMs);
141                                 Thread.sleep(delayMs);
142                         }
143                         return deployedXapps.get(0);
144                 }).when(mockApi).deployXapp(any(XAppInfo.class));
145                 doAnswer(inv -> {
146                         if (delayMs > 0) {
147                                 logger.debug("listAllDeployableXapps sleeping {}", delayMs);
148                                 Thread.sleep(delayMs);
149                         }
150                         return deployableApps;
151                 }).when(mockApi).listAllDeployableXapps();
152                 doAnswer(inv -> {
153                         if (delayMs > 0) {
154                                 logger.debug("getAllXapps sleeping {}", delayMs);
155                                 Thread.sleep(delayMs);
156                         }
157                         return deployedXapps;
158                 }).when(mockApi).getAllXapps();
159                 doAnswer(inv -> {
160                         if (delayMs > 0) {
161                                 logger.debug("getXappByName of {} sleeping {}", inv.getArgument(0), delayMs);
162                                 Thread.sleep(delayMs);
163                         }
164                         return deployedXapps.get(0);
165                 }).when(mockApi).getXappByName(any(String.class));
166                 doAnswer(inv -> {
167                         if (delayMs > 0) {
168                                 logger.debug("undeployXapp of {} sleeping {}", inv.getArgument(0), delayMs);
169                                 Thread.sleep(delayMs);
170                         }
171                         return null;
172                 }).when(mockApi).undeployXapp(any(String.class));
173                 doAnswer(inv -> {
174                         if (delayMs > 0) {
175                                 logger.debug("addSubscription sleeping {}", delayMs);
176                                 Thread.sleep(delayMs);
177                         }
178                         return subRes;
179                 }).when(mockApi).addSubscription(any(SubscriptionRequest.class));
180                 doAnswer(inv -> {
181                         if (delayMs > 0) {
182                                 logger.debug("deleteSubscription sleeping {}", delayMs);
183                                 Thread.sleep(delayMs);
184                         }
185                         return null;
186                 }).when(mockApi).deleteSubscription(any(String.class));
187                 return mockApi;
188         }
189
190 }