7d96a18305923c5e42e893b04294dd202303e8ab
[so.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2019 TechMahindra.
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.flowspecific.tasks;
22
23 import static org.junit.Assert.assertTrue;
24 import static org.mockito.ArgumentMatchers.any;
25 import static org.mockito.ArgumentMatchers.eq;
26 import static org.mockito.Mockito.doThrow;
27 import static org.mockito.Mockito.when;
28 import java.util.UUID;
29 import org.camunda.bpm.engine.delegate.BpmnError;
30 import org.junit.Before;
31 import org.junit.Test;
32 import org.mockito.ArgumentMatchers;
33 import org.mockito.InjectMocks;
34 import org.onap.so.bpmn.BaseTaskTest;
35 import org.onap.so.bpmn.common.BuildingBlockExecution;
36 import org.onap.so.bpmn.servicedecomposition.bbobjects.GenericVnf;
37 import org.onap.so.bpmn.servicedecomposition.bbobjects.ServiceInstance;
38 import org.onap.so.bpmn.servicedecomposition.entities.ResourceKey;
39 import org.onap.so.bpmn.servicedecomposition.generalobjects.RequestContext;
40 import org.onap.so.client.exception.BBObjectNotFoundException;
41
42 public class ConfigAssignVnfTest extends BaseTaskTest {
43     @InjectMocks
44     private ConfigAssignVnf configAssignVnf = new ConfigAssignVnf();
45
46     private GenericVnf genericVnf;
47     private ServiceInstance serviceInstance;
48     private RequestContext requestContext;
49     private String msoRequestId;
50
51     @Before
52     public void before() throws BBObjectNotFoundException {
53         genericVnf = setGenericVnf();
54         serviceInstance = setServiceInstance();
55         msoRequestId = UUID.randomUUID().toString();
56         requestContext = setRequestContext();
57         requestContext.setMsoRequestId(msoRequestId);
58         gBBInput.setRequestContext(requestContext);
59
60         doThrow(new BpmnError("BPMN Error")).when(exceptionUtil)
61                 .buildAndThrowWorkflowException(any(BuildingBlockExecution.class), eq(7000), any(Exception.class));
62         when(extractPojosForBB.extractByKey(any(), ArgumentMatchers.eq(ResourceKey.GENERIC_VNF_ID)))
63                 .thenReturn(genericVnf);
64         when(extractPojosForBB.extractByKey(any(), ArgumentMatchers.eq(ResourceKey.SERVICE_INSTANCE_ID)))
65                 .thenReturn(serviceInstance);
66     }
67
68     @Test
69     public void preProcessAbstractCDSProcessingTest() throws Exception {
70
71         configAssignVnf.preProcessAbstractCDSProcessing(execution);
72
73         assertTrue(true);
74     }
75
76 }