3 * ============LICENSE_START======================================================= ONAP : SO
4 * ================================================================================ Copyright 2019 TechMahindra
5 * ================================================================================= Licensed under the Apache License,
6 * Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy
9 * http://www.apache.org/licenses/LICENSE-2.0
11 * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
12 * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
13 * specific language governing permissions and limitations under the License.
14 * ============LICENSE_END=========================================================
17 package org.onap.so.bpmn.infrastructure.flowspecific.tasks;
19 import static org.junit.Assert.assertTrue;
20 import static org.mockito.ArgumentMatchers.any;
21 import static org.mockito.ArgumentMatchers.eq;
22 import static org.mockito.Mockito.doThrow;
23 import static org.mockito.Mockito.when;
24 import java.util.UUID;
25 import org.camunda.bpm.engine.delegate.BpmnError;
26 import org.junit.Before;
27 import org.junit.Test;
28 import org.mockito.ArgumentMatchers;
29 import org.mockito.InjectMocks;
30 import org.mockito.Mock;
31 import org.onap.so.bpmn.BaseTaskTest;
32 import org.onap.so.bpmn.common.BuildingBlockExecution;
33 import org.onap.so.bpmn.infrastructure.aai.tasks.AAIUpdateTasks;
34 import org.onap.so.bpmn.servicedecomposition.bbobjects.GenericVnf;
35 import org.onap.so.bpmn.servicedecomposition.bbobjects.ServiceInstance;
36 import org.onap.so.bpmn.servicedecomposition.entities.ResourceKey;
37 import org.onap.so.bpmn.servicedecomposition.generalobjects.RequestContext;
38 import org.onap.so.client.exception.BBObjectNotFoundException;
40 public class ConfigDeployVnfTest extends BaseTaskTest {
43 private ConfigDeployVnf configDeployVnf = new ConfigDeployVnf();
45 AAIUpdateTasks aAIUpdateTasks = new AAIUpdateTasks();
48 private GenericVnf genericVnf;
49 private ServiceInstance serviceInstance;
50 private RequestContext requestContext;
51 private String msoRequestId;
54 public void before() throws BBObjectNotFoundException {
55 genericVnf = setGenericVnf();
56 serviceInstance = setServiceInstance();
57 msoRequestId = UUID.randomUUID().toString();
58 requestContext = setRequestContext();
59 requestContext.setMsoRequestId(msoRequestId);
60 gBBInput.setRequestContext(requestContext);
62 doThrow(new BpmnError("BPMN Error")).when(exceptionUtil)
63 .buildAndThrowWorkflowException(any(BuildingBlockExecution.class), eq(7000), any(Exception.class));
64 when(extractPojosForBB.extractByKey(any(), ArgumentMatchers.eq(ResourceKey.GENERIC_VNF_ID)))
65 .thenReturn(genericVnf);
66 when(extractPojosForBB.extractByKey(any(), ArgumentMatchers.eq(ResourceKey.SERVICE_INSTANCE_ID)))
67 .thenReturn(serviceInstance);
73 public void preProcessAbstractCDSProcessingTest() throws Exception {
75 configDeployVnf.preProcessAbstractCDSProcessing(execution);
81 public void updateAAIConfigureTaskTest() throws Exception {
83 configDeployVnf.updateAAIConfigure(execution);
88 public void updateAAIConfiguredTaskTest() throws Exception {
89 configDeployVnf.updateAAIConfigured(execution);