Replaced all tabs with spaces in java and pom.xml
[so.git] / bpmn / mso-infrastructure-bpmn / src / test / java / org / onap / so / bpmn / common / DecomposeServiceIT.java
1 /*- 
2  * ============LICENSE_START======================================================= 
3  * ONAP - SO 
4  * ================================================================================ 
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. 
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
21 package org.onap.so.bpmn.common;
22
23 import static org.onap.so.bpmn.mock.StubResponseDatabase.MockGetServiceResourcesCatalogData;
24 import java.io.IOException;
25 import java.util.HashMap;
26 import java.util.Map;
27 import java.util.UUID;
28 import org.camunda.bpm.engine.test.Deployment;
29 import org.junit.Assert;
30 import org.junit.Ignore;
31 import org.junit.Test;
32 import org.onap.so.BaseIntegrationTest;
33
34 /**
35  * Unit Test for the DecomposeService Flow
36  *
37  */
38
39 public class DecomposeServiceIT extends BaseIntegrationTest {
40
41
42     public DecomposeServiceIT() throws IOException {
43
44     }
45
46     @Test
47     public void testDecomposeService_success() throws Exception {
48         MockGetServiceResourcesCatalogData(wireMockServer, "cmw-123-456-789", "1.0",
49                 "/getCatalogServiceResourcesDataWithConfig.json");
50
51         String businessKey = UUID.randomUUID().toString();
52         Map<String, Object> variables = new HashMap<>();
53         setVariablesSuccess(variables, "testRequestId123", "ff5256d2-5a33-55df-13ab-12abad84e7ff");
54         invokeSubProcess("DecomposeService", businessKey, variables);
55
56         waitForProcessEnd(businessKey, 10000);
57
58         Assert.assertTrue(isProcessEnded(businessKey));
59
60     }
61
62     // @Test
63     @Test
64     public void testDecomposeService_success_partial() throws Exception {
65         MockGetServiceResourcesCatalogData(wireMockServer, "cmw-123-456-789", "1.0",
66                 "/getCatalogServiceResourcesDataNoNetwork.json");
67
68
69         String businessKey = UUID.randomUUID().toString();
70         Map<String, Object> variables = new HashMap<>();
71         setVariablesSuccess(variables, "testRequestId123", "ff5256d2-5a33-55df-13ab-12abad84e7ff");
72         invokeSubProcess("DecomposeService", businessKey, variables);
73
74         waitForProcessEnd(businessKey, 10000);
75
76         Assert.assertTrue(isProcessEnded(businessKey));
77
78     }
79
80     private void setVariablesSuccess(Map<String, Object> variables, String requestId, String siId) {
81         variables.put("isDebugLogEnabled", "true");
82         variables.put("mso-request-id", requestId);
83         variables.put("msoRequestId", requestId);
84         variables.put("serviceInstanceId", siId);
85
86         String serviceModelInfo = "{ " + "\"modelType\": \"service\"," + "\"modelInvariantUuid\": \"cmw-123-456-789\","
87                 + "\"modelVersionId\": \"ab6478e5-ea33-3346-ac12-ab121484a3fe\"," + "\"modelName\": \"ServicevSAMP12\","
88                 + "\"modelVersion\": \"1.0\"," + "}";
89         variables.put("serviceModelInfo", serviceModelInfo);
90
91     }
92
93 }