2 * ============LICENSE_START=======================================================
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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=========================================================
21 package org.onap.so.bpmn.infrastructure.workflow.tasks;
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;
36 public class FlowCompletionTasksTest extends BaseTaskTest {
39 protected FlowCompletionTasks flowCompletionTasks = new FlowCompletionTasks();
42 public void before() {
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");
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");