Update get Dcae Status flow
[clamp.git] / src / test / java / org / onap / clamp / loop / DcaeComponentTest.java
index c7035ef..fa9cc06 100644 (file)
@@ -35,42 +35,42 @@ import java.util.List;
 import org.apache.camel.Exchange;
 import org.apache.camel.Message;
 import org.json.simple.parser.ParseException;
-import org.junit.Ignore;
 import org.junit.Test;
 import org.mockito.Mockito;
 import org.onap.clamp.clds.model.dcae.DcaeInventoryResponse;
 import org.onap.clamp.clds.model.dcae.DcaeOperationStatusResponse;
 import org.onap.clamp.loop.components.external.DcaeComponent;
 import org.onap.clamp.loop.components.external.ExternalComponentState;
+import org.onap.clamp.loop.template.LoopTemplate;
 import org.onap.clamp.policy.microservice.MicroServicePolicy;
 
 public class DcaeComponentTest {
 
     private Loop createTestLoop() {
-        String yaml = "imports:\n" + "  - \"http://www.getcloudify.org/spec/cloudify/3.4/types.yaml\"\n"
-            + "node_templates:\n" + "  docker_service_host:\n" + "    type: dcae.nodes.SelectedDockerHost";
-
         Loop loopTest = new Loop("ControlLoopTest", "<xml></xml>");
         loopTest.setGlobalPropertiesJson(
-            new Gson().fromJson("{\"dcaeDeployParameters\":" + "{\"policy_id\": \"name\"}}", JsonObject.class));
+                new Gson().fromJson("{\"dcaeDeployParameters\":" + "{\"policy_id\": \"name\"}}", JsonObject.class));
         loopTest.setLastComputedState(LoopState.DESIGN);
         loopTest.setDcaeDeploymentId("123456789");
         loopTest.setDcaeDeploymentStatusUrl("http4://localhost:8085");
-        loopTest.setDcaeBlueprintId("UUID-blueprint");
 
         MicroServicePolicy microServicePolicy = new MicroServicePolicy("configPolicyTest", "",
-            "tosca_definitions_version: tosca_simple_yaml_1_0_0", true,
-            new Gson().fromJson("{\"configtype\":\"json\"}", JsonObject.class), new HashSet<>());
+                "tosca_definitions_version: tosca_simple_yaml_1_0_0", true,
+                new Gson().fromJson("{\"configtype\":\"json\"}", JsonObject.class), new HashSet<>());
         microServicePolicy.setConfigurationsJson(new Gson().fromJson("{\"param1\":\"value1\"}", JsonObject.class));
 
         loopTest.addMicroServicePolicy(microServicePolicy);
+        LoopTemplate loopTemplate = new LoopTemplate("test", "yaml", "svg", 1, null);
+        loopTemplate.setDcaeBlueprintId("UUID-blueprint");
+        loopTest.setLoopTemplate(loopTemplate);
+
         return loopTest;
     }
 
     @Test
     public void convertDcaeResponseTest() throws IOException {
-        String dcaeFakeResponse = "{'requestId':'testId','operationType':'install','status':'state','error':'errorMessage', "
-            + "'links':{'self':'selfUrl','uninstall':'uninstallUrl'}}";
+        String dcaeFakeResponse = "{'requestId':'testId','operationType':'install','status':'state',"
+                + "'error':'errorMessage', 'links':{'self':'selfUrl','uninstall':'uninstallUrl'}}";
         DcaeOperationStatusResponse responseObject = DcaeComponent.convertDcaeResponse(dcaeFakeResponse);
         assertThat(responseObject.getRequestId()).isEqualTo("testId");
         assertThat(responseObject.getOperationType()).isEqualTo("install");
@@ -115,7 +115,7 @@ public class DcaeComponentTest {
         assertThat(state.getStateName()).isEqualTo("BLUEPRINT_DEPLOYED");
 
         // OperationalType = install
-        DcaeOperationStatusResponse dcaeResponse = Mockito.mock(DcaeOperationStatusResponse.class); 
+        DcaeOperationStatusResponse dcaeResponse = Mockito.mock(DcaeOperationStatusResponse.class);
         Mockito.when(dcaeResponse.getOperationType()).thenReturn("install");
 
         Mockito.when(dcaeResponse.getStatus()).thenReturn("succeeded");
@@ -159,81 +159,35 @@ public class DcaeComponentTest {
 
     @Test
     public void convertToDcaeInventoryResponseTest() throws IOException, ParseException {
-        String dcaeFakeResponse = "{\n"
-                + "  \"links\": {\n"
-                + "    \"previousLink\": {\n"
-                + "      \"title\": \"string\",\n"
-                + "      \"rel\": \"string\",\n"
-                + "      \"uri\": \"string\",\n"
-                + "      \"uriBuilder\": {},\n"
-                + "      \"rels\": [\n"
-                + "        \"string\"\n"
-                + "      ],\n"
-                + "      \"params\": {\n"
-                +  "        \"additionalProp1\": \"string\",\n"
-                + "        \"additionalProp2\": \"string\",\n"
-                + "        \"additionalProp3\": \"string\"\n"
-                + "      },\n"
-                + "      \"type\": \"string\"\n"
-                + "    },\n"
-                + "    \"nextLink\": {\n"
-                + "      \"title\": \"string\",\n"
-                + "      \"rel\": \"string\",\n"
-                + "      \"uri\": \"string\",\n"
-                + "      \"uriBuilder\": {},\n"
-                + "      \"rels\": [\n"
-                + "        \"string\"\n"
-                + "      ],\n"
-                + "      \"params\": {\n"
-                + "        \"additionalProp1\": \"string\",\n"
-                + "        \"additionalProp2\": \"string\",\n"
-                + "        \"additionalProp3\": \"string\"\n"
-                + "      },\n"
-                + "      \"type\": \"string\"\n"
-                + "    }\n"
-                + "  },\n"
-                + "  \"totalCount\": 0,\n"
-                + "  \"items\": [\n"
-                + "    {\n"
-                + "      \"owner\": \"testOwner\",\n"
-                + "      \"application\": \"testApplication\",\n"
-                + "      \"component\": \"testComponent\",\n"
-                + "      \"typeName\": \"testTypeName\",\n"
-                + "      \"typeVersion\": 0,\n"
-                + "      \"blueprintTemplate\": \"testBlueprintTemplate\",\n"
-                + "      \"serviceIds\": [\n"
-                + "        \"serviceId1\", \"serviceId2\"\n"
-                + "      ],\n"
-                + "      \"vnfTypes\": [\n"
-                + "        \"vnfType1\", \"vnfType2\"\n"
-                + "      ],\n"
-                + "      \"serviceLocations\": [\n"
-                + "        \"serviceLocation1\", \"serviceLocation2\"\n"
-                + "      ],\n"
+        String dcaeFakeResponse = "{\n" + "  \"links\": {\n" + "    \"previousLink\": {\n"
+                + "      \"title\": \"string\",\n" + "      \"rel\": \"string\",\n" + "      \"uri\": \"string\",\n"
+                + "      \"uriBuilder\": {},\n" + "      \"rels\": [\n" + "        \"string\"\n" + "      ],\n"
+                + "      \"params\": {\n" + "        \"additionalProp1\": \"string\",\n"
+                + "        \"additionalProp2\": \"string\",\n" + "        \"additionalProp3\": \"string\"\n"
+                + "      },\n" + "      \"type\": \"string\"\n" + "    },\n" + "    \"nextLink\": {\n"
+                + "      \"title\": \"string\",\n" + "      \"rel\": \"string\",\n" + "      \"uri\": \"string\",\n"
+                + "      \"uriBuilder\": {},\n" + "      \"rels\": [\n" + "        \"string\"\n" + "      ],\n"
+                + "      \"params\": {\n" + "        \"additionalProp1\": \"string\",\n"
+                + "        \"additionalProp2\": \"string\",\n" + "        \"additionalProp3\": \"string\"\n"
+                + "      },\n" + "      \"type\": \"string\"\n" + "    }\n" + "  },\n" + "  \"totalCount\": 0,\n"
+                + "  \"items\": [\n" + "    {\n" + "      \"owner\": \"testOwner\",\n"
+                + "      \"application\": \"testApplication\",\n" + "      \"component\": \"testComponent\",\n"
+                + "      \"typeName\": \"testTypeName\",\n" + "      \"typeVersion\": 0,\n"
+                + "      \"blueprintTemplate\": \"testBlueprintTemplate\",\n" + "      \"serviceIds\": [\n"
+                + "        \"serviceId1\", \"serviceId2\"\n" + "      ],\n" + "      \"vnfTypes\": [\n"
+                + "        \"vnfType1\", \"vnfType2\"\n" + "      ],\n" + "      \"serviceLocations\": [\n"
+                + "        \"serviceLocation1\", \"serviceLocation2\"\n" + "      ],\n"
                 + "      \"asdcServiceId\": \"testAsdcServiceId\",\n"
                 + "      \"asdcResourceId\": \"testAsdcResourceId\",\n"
-                + "      \"asdcServiceURL\": \"testAsdcServiceURL\",\n"
-                + "      \"typeId\": \"testTypeId\",\n"
-                + "      \"selfLink\": {\n"
-                + "        \"title\": \"selfLinkTitle\",\n"
-                + "        \"rel\": \"selfLinkRel\",\n"
-                + "        \"uri\": \"selfLinkUri\",\n"
-                + "        \"uriBuilder\": {},\n"
-                + "        \"rels\": [\n"
-                + "          \"string\"\n"
-                + "        ],\n"
-                + "        \"params\": {\n"
-                + "          \"additionalProp1\": \"string\",\n"
-                + "          \"additionalProp2\": \"string\",\n"
-                + "          \"additionalProp3\": \"string\"\n"
-                + "        },\n"
-                + "        \"type\": \"string\"\n"
-                + "      },\n"
+                + "      \"asdcServiceURL\": \"testAsdcServiceURL\",\n" + "      \"typeId\": \"testTypeId\",\n"
+                + "      \"selfLink\": {\n" + "        \"title\": \"selfLinkTitle\",\n"
+                + "        \"rel\": \"selfLinkRel\",\n" + "        \"uri\": \"selfLinkUri\",\n"
+                + "        \"uriBuilder\": {},\n" + "        \"rels\": [\n" + "          \"string\"\n" + "        ],\n"
+                + "        \"params\": {\n" + "          \"additionalProp1\": \"string\",\n"
+                + "          \"additionalProp2\": \"string\",\n" + "          \"additionalProp3\": \"string\"\n"
+                + "        },\n" + "        \"type\": \"string\"\n" + "      },\n"
                 + "      \"created\": \"2020-01-22T09:38:15.436Z\",\n"
-                + "      \"deactivated\": \"2020-01-22T09:38:15.437Z\"\n"
-                + "    }\n"
-                + "  ]\n"
-                + "}";
+                + "      \"deactivated\": \"2020-01-22T09:38:15.437Z\"\n" + "    }\n" + "  ]\n" + "}";
         List<DcaeInventoryResponse> responseObject = DcaeComponent.convertToDcaeInventoryResponse(dcaeFakeResponse);
         assertThat(responseObject.get(0).getAsdcResourceId()).isEqualTo("testAsdcResourceId");
         assertThat(responseObject.get(0).getAsdcServiceId()).isEqualTo("testAsdcServiceId");