Show K8S pod statuses queried from CaaS-Ingress
[portal/ric-dashboard.git] / webapp-backend / src / test / java / org / oransc / ric / portal / dashboard / config / E2ManagerMockConfiguration.java
index d338526..75ab01a 100644 (file)
@@ -26,7 +26,9 @@ import static org.mockito.Mockito.when;
 
 import java.lang.invoke.MethodHandles;
 import java.util.ArrayList;
+import java.util.HashMap;
 import java.util.List;
+import java.util.Map;
 
 import org.oransc.ric.e2mgr.client.api.HealthCheckApi;
 import org.oransc.ric.e2mgr.client.api.NodebApi;
@@ -34,6 +36,7 @@ import org.oransc.ric.e2mgr.client.invoker.ApiClient;
 import org.oransc.ric.e2mgr.client.model.GetNodebResponse;
 import org.oransc.ric.e2mgr.client.model.NodebIdentity;
 import org.oransc.ric.e2mgr.client.model.NodebIdentityGlobalNbId;
+import org.oransc.ric.e2mgr.client.model.ResetRequest;
 import org.oransc.ric.e2mgr.client.model.SetupRequest;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
@@ -56,17 +59,30 @@ public class E2ManagerMockConfiguration {
        @Value("${mock.config.delay:0}")
        private int delayMs;
 
+       public static final String RAN_NAME_1 = "Connected RAN";
+       public static final String RAN_NAME_2 = "Unknown RAN";
+
        private final List<NodebIdentity> nodebIdList;
-       private final GetNodebResponse nodebResponse;
+       private final Map<String, GetNodebResponse> nodebResponseMap;
+       private final NodebIdentityGlobalNbId globalNbId;
 
        public E2ManagerMockConfiguration() {
                logger.info("Configuring mock E2 Manager");
-               NodebIdentityGlobalNbId globalNbId = new NodebIdentityGlobalNbId().nbId("mockNbId").plmnId("mockPlmId");
-               NodebIdentity nbid = new NodebIdentity().inventoryName("mockInvName").globalNbId(globalNbId);
+               globalNbId = new NodebIdentityGlobalNbId().nbId("mockNbId").plmnId("mockPlmId");
                nodebIdList = new ArrayList<>();
-               nodebIdList.add(nbid);
-               nodebResponse = new GetNodebResponse().connectionStatus("mockConnectionStatus").failureType("mockFailureType")
-                               .ip("127.0.0.1").nodeType("mockNodeType").port(123).ranName("mockRanName");
+               nodebResponseMap = new HashMap<>();
+               // Complete entry
+               nodebIdList.add(new NodebIdentity().inventoryName(RAN_NAME_1).globalNbId(globalNbId));
+               nodebResponseMap.put(RAN_NAME_1, new GetNodebResponse().connectionStatus("CONNECTED").failureType("")
+                               .ip("127.0.0.1").nodeType("mockNodeType").port(123).ranName(RAN_NAME_1));
+               // Partial entry
+               // [{"nodebIdentity":{"globalNbId":null,"inventoryName":"AAAA123456"},
+               // "nodebStatus":{"connectionStatus":"CONNECTING","enb":null,"failureType":null,
+               // "globalNbId":null,"gnb":null,"ip":"10.2.0.6","nodeType":null,"port":36444,
+               // "ranName":"AAAA123456","setupFailure":null}}]
+               nodebIdList.add(new NodebIdentity().inventoryName(RAN_NAME_2));
+               nodebResponseMap.put(RAN_NAME_2,
+                               new GetNodebResponse().connectionStatus("CONNECTING").ip("127.0.0.2").port(456).ranName(RAN_NAME_2));
        }
 
        private ApiClient apiClient() {
@@ -93,17 +109,26 @@ public class E2ManagerMockConfiguration {
                when(mockApi.getApiClient()).thenReturn(apiClient);
                doAnswer(inv -> {
                        if (delayMs > 0) {
-                               logger.debug("nodebDelete sleeping {}", delayMs);
+                               logger.debug("nodebShutdownPut sleeping {}", delayMs);
+                               Thread.sleep(delayMs);
+                       }
+                       nodebIdList.clear();
+                       return null;
+               }).when(mockApi).nodebShutdownPut();
+               doAnswer(inv -> {
+                       if (delayMs > 0) {
+                               logger.debug("reset sleeping {}", delayMs);
                                Thread.sleep(delayMs);
                        }
                        return null;
-               }).when(mockApi).nodebDelete();
+               }).when(mockApi).reset(any(String.class), any(ResetRequest.class));
                doAnswer(inv -> {
                        if (delayMs > 0) {
                                logger.debug("getNb sleeping {}", delayMs);
                                Thread.sleep(delayMs);
                        }
-                       return nodebResponse;
+                       String invName = inv.<String>getArgument(0);
+                       return nodebResponseMap.get(invName);
                }).when(mockApi).getNb(any(String.class));
                doAnswer(inv -> {
                        if (delayMs > 0) {
@@ -117,6 +142,11 @@ public class E2ManagerMockConfiguration {
                                logger.debug("endcSetup sleeping {}", delayMs);
                                Thread.sleep(delayMs);
                        }
+                       SetupRequest sr = inv.<SetupRequest>getArgument(0);
+                       nodebIdList.add(new NodebIdentity().inventoryName(sr.getRanName()).globalNbId(globalNbId));
+                       nodebResponseMap.put(sr.getRanName(),
+                                       new GetNodebResponse().connectionStatus("mockConnectionStatus").failureType("mockFailureType")
+                                                       .ip(sr.getRanIp()).nodeType("ENDC").port(sr.getRanPort()).ranName(sr.getRanName()));
                        return null;
                }).when(mockApi).endcSetup(any(SetupRequest.class));
                doAnswer(inv -> {
@@ -124,6 +154,11 @@ public class E2ManagerMockConfiguration {
                                logger.debug("x2Setup sleeping {}", delayMs);
                                Thread.sleep(delayMs);
                        }
+                       SetupRequest sr = inv.<SetupRequest>getArgument(0);
+                       nodebIdList.add(new NodebIdentity().inventoryName(sr.getRanName()).globalNbId(globalNbId));
+                       nodebResponseMap.put(sr.getRanName(),
+                                       new GetNodebResponse().connectionStatus("mockConnectionStatus").failureType("mockFailureType")
+                                                       .ip(sr.getRanIp()).nodeType("X2").port(sr.getRanPort()).ranName(sr.getRanName()));
                        return null;
                }).when(mockApi).x2Setup(any(SetupRequest.class));
                return mockApi;