48104017a59b5ecea54238af09ae40c0abeaa7ff
[so.git] /
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
23 import static org.camunda.bpm.engine.test.assertions.ProcessEngineTests.assertThat;
24 import static org.junit.Assert.assertNotNull;
25 import static org.mockito.Matchers.any;
26 import static org.mockito.Mockito.doThrow;
27 import org.camunda.bpm.engine.ManagementService;
28 import org.camunda.bpm.engine.TaskService;
29 import org.camunda.bpm.engine.delegate.BpmnError;
30 import org.camunda.bpm.engine.runtime.Job;
31 import org.camunda.bpm.engine.runtime.ProcessInstance;
32 import org.camunda.bpm.engine.task.Task;
33 import org.camunda.bpm.engine.test.assertions.bpmn.BpmnAwareAssertions;
34 import org.junit.Test;
35 import org.springframework.beans.factory.annotation.Autowired;
36 import org.onap.so.bpmn.BaseBPMNTest;
37 import org.onap.so.bpmn.common.BuildingBlockExecution;
38
39
40 public class PauseForManualTaskActivityTest extends BaseBPMNTest {
41     private static final String TIMEOUT_10_S = "PT10S";
42
43     @Autowired
44     protected ManagementService managementService;
45
46     @Autowired
47     protected TaskService taskService;
48
49     @Test
50     public void sunnyDayPauseForManualTaskTimeout_Test() throws InterruptedException {
51         variables.put("taskTimeout", TIMEOUT_10_S);
52         ProcessInstance pi = runtimeService.startProcessInstanceByKey("PauseForManualTaskActivity", variables);
53         assertThat(pi).isNotNull();
54         BpmnAwareAssertions.assertThat(pi).isWaitingAt("ManualUserTask");
55         Task task = taskService.createTaskQuery().active().list().get(0);
56         assertThat(pi).task().isNotNull();
57         assertNotNull(task);
58
59         Job job = managementService.createJobQuery().activityId("ManualTaskTimer").singleResult();
60         assertNotNull(job);
61         managementService.executeJob(job.getId());
62
63         assertThat(pi).isStarted().hasPassedInOrder("PauseForManualTaskActivity_Start",
64                 "UpdateDbStatusToPendingManualTask", "CreateExternalTicket", "ManualTaskTimer",
65                 "UpdateDBStatusToTimeout", "ThrowTimeoutError");
66     }
67
68     @Test
69     public void sunnyDayPauseForManualTaskCompleted_Test() throws InterruptedException {
70         variables.put("taskTimeout", TIMEOUT_10_S);
71         ProcessInstance pi = runtimeService.startProcessInstanceByKey("PauseForManualTaskActivity", variables);
72         assertThat(pi).isNotNull();
73         BpmnAwareAssertions.assertThat(pi).isWaitingAt("ManualUserTask");
74         assertThat(pi).task().isNotNull();
75         Task task = taskService.createTaskQuery().active().list().get(0);
76         assertNotNull(task);
77         taskService.complete(task.getId());
78
79         assertThat(pi).isStarted().hasPassedInOrder("PauseForManualTaskActivity_Start",
80                 "UpdateDbStatusToPendingManualTask", "CreateExternalTicket", "ManualUserTask",
81                 "UpdateDbStatusToInProgress", "PauseForManualTaskActivity_End");
82         assertThat(pi).isEnded();
83     }
84
85     @Test
86     public void rainyDayPauseForManualTask_Test() throws Exception {
87         doThrow(new BpmnError("7000", "TESTING ERRORS")).when(manualHandlingTasks)
88                 .createExternalTicket((any(BuildingBlockExecution.class)));
89         ProcessInstance pi = runtimeService.startProcessInstanceByKey("PauseForManualTaskActivity", variables);
90         assertThat(pi).isNotNull().isStarted()
91                 .hasPassedInOrder("PauseForManualTaskActivity_Start", "UpdateDbStatusToPendingManualTask",
92                         "CreateExternalTicket")
93                 .hasNotPassed("ManualUserTask", "UpdateDbStatusToInProgress", "PauseForManualTaskActivity_End");
94     }
95
96 }