Springboot 2.0 upgrade
[so.git] / bpmn / so-bpmn-tasks / src / test / java / org / onap / so / bpmn / infrastructure / flowspecific / tasks / UnassignVnfTest.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.flowspecific.tasks;
22
23 import static org.mockito.ArgumentMatchers.any;
24 import static org.mockito.ArgumentMatchers.eq;
25 import static org.mockito.Matchers.eq;
26 import static org.mockito.Mockito.doReturn;
27 import static org.mockito.Mockito.doThrow;
28 import static org.mockito.Mockito.times;
29 import static org.mockito.Mockito.verify;
30 import static org.mockito.Mockito.when;
31
32 import org.camunda.bpm.engine.delegate.BpmnError;
33 import org.junit.Before;
34 import org.junit.Test;
35 import org.mockito.ArgumentMatchers;
36 import org.mockito.InjectMocks;
37 import org.onap.so.bpmn.BaseTaskTest;
38 import org.onap.so.bpmn.common.BuildingBlockExecution;
39 import org.onap.so.bpmn.servicedecomposition.bbobjects.GenericVnf;
40 import org.onap.so.bpmn.servicedecomposition.bbobjects.InstanceGroup;
41 import org.onap.so.bpmn.servicedecomposition.entities.ResourceKey;
42 import org.onap.so.bpmn.servicedecomposition.modelinfo.ModelInfoInstanceGroup;
43
44 public class UnassignVnfTest extends BaseTaskTest{
45         @InjectMocks
46         private UnassignVnf unassignVnf = new UnassignVnf();
47         
48         @Before
49         public void setup(){
50                 doThrow(new BpmnError("BPMN Error")).when(exceptionUtil).buildAndThrowWorkflowException(any(BuildingBlockExecution.class), eq(7000), any(Exception.class));
51                 doThrow(new BpmnError("BPMN Error")).when(exceptionUtil).buildAndThrowWorkflowException(any(BuildingBlockExecution.class), eq(7000), any(String.class));
52         
53         }
54
55         @Test
56         public void deleteInstanceGroupsSunnyDayTest() throws Exception {
57                 GenericVnf genericVnf = setGenericVnf();
58                 
59                 ModelInfoInstanceGroup modelVnfc = new ModelInfoInstanceGroup();
60                 modelVnfc.setType("VNFC");
61                 
62                 InstanceGroup instanceGroup1 = new InstanceGroup();
63                 instanceGroup1.setId("test-001");
64                 instanceGroup1.setModelInfoInstanceGroup(modelVnfc);
65                 genericVnf.getInstanceGroups().add(instanceGroup1);
66                 
67                 InstanceGroup instanceGroup2 = new InstanceGroup();
68                 instanceGroup2.setId("test-002");
69                 instanceGroup2.setModelInfoInstanceGroup(modelVnfc);
70                 genericVnf.getInstanceGroups().add(instanceGroup2);
71                 when(extractPojosForBB.extractByKey(any(),ArgumentMatchers.eq(ResourceKey.GENERIC_VNF_ID), any())).thenReturn(genericVnf);              
72                 unassignVnf.deleteInstanceGroups(execution);
73                 verify(aaiInstanceGroupResources, times(1)).deleteInstanceGroup(eq(instanceGroup1));
74                 verify(aaiInstanceGroupResources, times(1)).deleteInstanceGroup(eq(instanceGroup2));    
75         }
76         
77         @Test
78         public void deletecreateVnfcInstanceGroupExceptionTest() throws Exception {
79                 expectedException.expect(BpmnError.class);
80                 
81                 unassignVnf.deleteInstanceGroups(execution);
82         }
83 }