Merge "Reorder modifiers"
[so.git] / bpmn / MSOInfrastructureBPMN / src / test / java / org / openecomp / mso / bpmn / infrastructure / SetupServiceDecompTest.java
1 /*-\r
2  * ============LICENSE_START=======================================================\r
3  * ONAP - SO\r
4  * ================================================================================\r
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.\r
6  * ================================================================================\r
7  * Licensed under the Apache License, Version 2.0 (the "License");\r
8  * you may not use this file except in compliance with the License.\r
9  * You may obtain a copy of the License at\r
10  *\r
11  *      http://www.apache.org/licenses/LICENSE-2.0\r
12  *\r
13  * Unless required by applicable law or agreed to in writing, software\r
14  * distributed under the License is distributed on an "AS IS" BASIS,\r
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
16  * See the License for the specific language governing permissions and\r
17  * limitations under the License.\r
18  * ============LICENSE_END=========================================================\r
19  */\r
20 \r
21 package org.openecomp.mso.bpmn.infrastructure;\r
22 \r
23 import java.io.IOException;\r
24 import java.util.HashMap;\r
25 import java.util.Map;\r
26 import java.util.UUID;\r
27 \r
28 import org.camunda.bpm.engine.test.Deployment;\r
29 import org.junit.Test;\r
30 import org.openecomp.mso.bpmn.common.WorkflowTest;\r
31 import org.openecomp.mso.bpmn.mock.FileUtil;\r
32 \r
33 public class SetupServiceDecompTest extends WorkflowTest {\r
34 \r
35         private String input = FileUtil.readResourceFile("__files/CreateServiceInstance/SetupServiceDecompJson.json");\r
36 \r
37         public SetupServiceDecompTest() throws IOException {\r
38         }\r
39 \r
40         @Test\r
41         @Deployment(resources = {\r
42                         "subprocess/CreateServiceInstanceV3.bpmn",\r
43                         "subprocess/CreateServiceInstanceV3Rollback.bpmn",\r
44                         "subprocess/SetRefactorServiceDecomp.bpmn"\r
45                         })\r
46         public void sunnyDay() throws Exception {\r
47 \r
48                 logStart();\r
49 \r
50                 String businessKey = UUID.randomUUID().toString();\r
51 \r
52                 Map<String, Object> variables = new HashMap<String, Object>();\r
53                 setupVariables(variables);\r
54                 invokeSubProcess("SetRefactorServiceDecomp", businessKey, variables);\r
55                 waitForProcessEnd(businessKey, 10000);\r
56                 logEnd();\r
57         }\r
58 \r
59         // Success Scenario\r
60         private void setupVariables(Map<String, Object> variables) {\r
61                 variables.put("bpmnRequest", input);\r
62                 variables.put("msoRequestId", "RaaDSITestRequestId-1");\r
63                 variables.put("isDebugLogEnabled", "true");\r
64         }\r
65 }