132b8774b31d57791bef4e5d295cd252526c4a73
[so.git] /
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
36 public class FlowCompletionTasksTest extends BaseTaskTest {
37
38     @InjectMocks
39     protected FlowCompletionTasks flowCompletionTasks = new FlowCompletionTasks();
40
41     @Before
42     public void before() {
43         setRequestContext();
44     }
45
46     @Test
47     public void updateRequestDbStatusComplete_Test() throws Exception {
48         InfraActiveRequests mockedRequest = new InfraActiveRequests();
49         when(requestsDbClient.getInfraActiveRequestbyRequestId(any(String.class))).thenReturn(mockedRequest);
50         doNothing().when(requestsDbClient).updateInfraActiveRequests(any(InfraActiveRequests.class));
51         flowCompletionTasks.updateRequestDbStatus(execution);
52         verify(requestsDbClient, times(1)).updateInfraActiveRequests(any(InfraActiveRequests.class));
53         assertEquals(mockedRequest.getRequestStatus(), "COMPLETE");
54     }
55
56     @Test
57     public void updateRequestDbStatusFailed_Test() throws Exception {
58         WorkflowException workflowException = new WorkflowException("testProcessKey", 7000, "Error");
59         execution.setVariable("WorkflowException", workflowException);
60         InfraActiveRequests mockedRequest = new InfraActiveRequests();
61         when(requestsDbClient.getInfraActiveRequestbyRequestId(any(String.class))).thenReturn(mockedRequest);
62         doNothing().when(requestsDbClient).updateInfraActiveRequests(any(InfraActiveRequests.class));
63         flowCompletionTasks.updateRequestDbStatus(execution);
64         verify(requestsDbClient, times(1)).updateInfraActiveRequests(any(InfraActiveRequests.class));
65         assertEquals(mockedRequest.getRequestStatus(), "FAILED");
66     }
67 }