Replaced all tabs with spaces in java and pom.xml
[so.git] / bpmn / so-bpmn-tasks / src / test / java / org / onap / so / bpmn / infrastructure / workflow / tasks / FlowCompletionTasksTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 - 2018 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.workflow.tasks;
22
23 import static org.junit.Assert.assertEquals;
24 import static org.mockito.ArgumentMatchers.any;
25 import static org.mockito.Mockito.doNothing;
26 import static org.mockito.Mockito.times;
27 import static org.mockito.Mockito.verify;
28 import static org.mockito.Mockito.when;
29 import org.junit.Before;
30 import org.junit.Test;
31 import org.mockito.InjectMocks;
32 import org.onap.so.bpmn.BaseTaskTest;
33 import org.onap.so.bpmn.core.WorkflowException;
34 import org.onap.so.db.request.beans.InfraActiveRequests;
35 import org.springframework.beans.factory.annotation.Autowired;
36
37 public class FlowCompletionTasksTest extends BaseTaskTest {
38
39     @InjectMocks
40     protected FlowCompletionTasks flowCompletionTasks = new FlowCompletionTasks();
41
42     @Before
43     public void before() {
44         setRequestContext();
45     }
46
47     @Test
48     public void updateRequestDbStatusComplete_Test() throws Exception {
49         InfraActiveRequests mockedRequest = new InfraActiveRequests();
50         when(requestsDbClient.getInfraActiveRequestbyRequestId(any(String.class))).thenReturn(mockedRequest);
51         doNothing().when(requestsDbClient).updateInfraActiveRequests(any(InfraActiveRequests.class));
52         flowCompletionTasks.updateRequestDbStatus(execution);
53         verify(requestsDbClient, times(1)).updateInfraActiveRequests(any(InfraActiveRequests.class));
54         assertEquals(mockedRequest.getRequestStatus(), "COMPLETE");
55     }
56
57     @Test
58     public void updateRequestDbStatusFailed_Test() throws Exception {
59         WorkflowException workflowException = new WorkflowException("testProcessKey", 7000, "Error");
60         execution.setVariable("WorkflowException", workflowException);
61         InfraActiveRequests mockedRequest = new InfraActiveRequests();
62         when(requestsDbClient.getInfraActiveRequestbyRequestId(any(String.class))).thenReturn(mockedRequest);
63         doNothing().when(requestsDbClient).updateInfraActiveRequests(any(InfraActiveRequests.class));
64         flowCompletionTasks.updateRequestDbStatus(execution);
65         verify(requestsDbClient, times(1)).updateInfraActiveRequests(any(InfraActiveRequests.class));
66         assertEquals(mockedRequest.getRequestStatus(), "FAILED");
67     }
68 }