Springboot 2.0 upgrade
[so.git] / bpmn / so-bpmn-building-blocks / src / test / java / org / onap / so / bpmn / infrastructure / bpmn / subprocess / CreateVfModuleBBTest.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.infrastructure.bpmn.subprocess;
22 import static org.camunda.bpm.engine.test.assertions.ProcessEngineTests.assertThat;
23 import static org.mockito.ArgumentMatchers.any;
24 import static org.mockito.Mockito.doThrow;
25
26 import org.camunda.bpm.engine.delegate.BpmnError;
27 import org.camunda.bpm.engine.runtime.ProcessInstance;
28 import org.junit.Test;
29 import org.onap.so.bpmn.BaseBPMNTest;
30 import org.onap.so.bpmn.common.BuildingBlockExecution;
31
32 public class CreateVfModuleBBTest extends BaseBPMNTest{
33         @Test
34         public void sunnyDayCreateVfModule_Test() throws InterruptedException {
35                 mockSubprocess("VnfAdapter", "Mocked VnfAdapter", "GenericStub");
36                 ProcessInstance pi = runtimeService.startProcessInstanceByKey("CreateVfModuleBB", variables);
37                 assertThat(pi).isNotNull();
38                 assertThat(pi).isStarted().hasPassedInOrder("CreateVfModuleBB_Start",
39                                 "QueryVnf",
40                                 "QueryVfModule",
41                                 "CreateVfModule",
42                                 "VnfAdapter",
43                                 "UpdateVfModuleHeatStackId",
44                                 "UpdateVfModuleStatus",
45                                 "CreateVfModuleBB_End");
46                 assertThat(pi).isEnded();
47         }
48         
49         @Test
50         public void rainyDayCreateVfModuleSDNCQueryVnfError_Test() throws Exception {
51                 doThrow(new BpmnError("7000", "TESTING ERRORS")).when(sdncQueryTasks).queryVnf(any(BuildingBlockExecution.class));
52                 ProcessInstance pi = runtimeService.startProcessInstanceByKey("CreateVfModuleBB", variables);
53                 assertThat(pi).isNotNull();
54                 assertThat(pi).isStarted()
55                                 .hasPassedInOrder("CreateVfModuleBB_Start", "QueryVnf")
56                                 .hasNotPassed("QueryVfModule", "CreateVfModule", "VnfAdapter", "UpdateVfModuleHeatStackId", "UpdateVfModuleStatus", "CreateVfModuleBB_End");
57                 assertThat(pi).isEnded();
58         }
59
60         @Test
61         public void rainyDayCreateVfModuleSDNCQueryVnfModuleError_Test() throws Exception {
62                 doThrow(new BpmnError("7000", "TESTING ERRORS")).when(sdncQueryTasks).queryVfModule(any(BuildingBlockExecution.class));
63                 ProcessInstance pi = runtimeService.startProcessInstanceByKey("CreateVfModuleBB", variables);
64                 assertThat(pi).isNotNull();
65                 assertThat(pi).isStarted()
66                                 .hasPassedInOrder("CreateVfModuleBB_Start", "QueryVnf", "QueryVfModule")
67                                 .hasNotPassed("CreateVfModule", "VnfAdapter", "UpdateVfModuleHeatStackId", "UpdateVfModuleStatus", "CreateVfModuleBB_End");
68                 assertThat(pi).isEnded();
69         }
70         
71         @Test
72         public void rainyDayCreateVfModuleVnfAdapterCreateError_Test() throws Exception {
73                 doThrow(new BpmnError("7000", "TESTING ERRORS")).when(vnfAdapterCreateTasks).createVfModule(any(BuildingBlockExecution.class));
74                 ProcessInstance pi = runtimeService.startProcessInstanceByKey("CreateVfModuleBB", variables);
75                 assertThat(pi).isNotNull();
76                 assertThat(pi).isStarted()
77                                 .hasPassedInOrder("CreateVfModuleBB_Start", "QueryVnf", "QueryVfModule", "CreateVfModule")
78                                 .hasNotPassed("VnfAdapter", "UpdateVfModuleHeatStackId", "UpdateVfModuleStatus", "CreateVfModuleBB_End");
79                 assertThat(pi).isEnded();
80         }
81         
82         @Test
83         public void rainyDayCreateVfModuleUpdateVfModuleHeatStackIdError_Test() throws Exception {
84                 mockSubprocess("VnfAdapter", "Mocked VnfAdapter", "GenericStub");
85
86                 doThrow(new BpmnError("7000", "TESTING ERRORS")).when(aaiUpdateTasks).updateHeatStackIdVfModule(any(BuildingBlockExecution.class));
87                 ProcessInstance pi = runtimeService.startProcessInstanceByKey("CreateVfModuleBB", variables);
88                 assertThat(pi).isNotNull();
89                 assertThat(pi).isStarted()
90                                 .hasPassedInOrder("CreateVfModuleBB_Start", "QueryVnf", "QueryVfModule", "CreateVfModule", "VnfAdapter", "UpdateVfModuleHeatStackId")
91                                 .hasNotPassed("UpdateVfModuleStatus", "CreateVfModuleBB_End");
92                 assertThat(pi).isEnded();
93                 
94         }
95         
96         @Test
97         public void rainyDayCreateVfModuleUpdateVfModuleStatusError_Test() throws Exception {
98                 mockSubprocess("VnfAdapter", "Mocked VnfAdapter", "GenericStub");
99                 doThrow(new BpmnError("7000", "TESTING ERRORS")).when(aaiUpdateTasks).updateOrchestrationStatusCreatedVfModule(any(BuildingBlockExecution.class));
100                 ProcessInstance pi = runtimeService.startProcessInstanceByKey("CreateVfModuleBB", variables);
101                 assertThat(pi).isNotNull();
102                 assertThat(pi).isStarted()
103                                 .hasPassedInOrder("CreateVfModuleBB_Start", "QueryVnf", "QueryVfModule", "CreateVfModule", "VnfAdapter", "UpdateVfModuleHeatStackId", "UpdateVfModuleStatus")
104                                 .hasNotPassed("CreateVfModuleBB_End");
105                 assertThat(pi).isEnded();
106         }
107 }