a55634625276b8b59c071fa5140d583f561be37b
[so.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 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.sdnc.tasks;
22
23 import static org.mockito.ArgumentMatchers.any;
24 import static org.mockito.ArgumentMatchers.eq;
25 import static org.mockito.ArgumentMatchers.isA;
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.CloudRegion;
40 import org.onap.so.bpmn.servicedecomposition.bbobjects.Customer;
41 import org.onap.so.bpmn.servicedecomposition.bbobjects.GenericVnf;
42 import org.onap.so.bpmn.servicedecomposition.bbobjects.L3Network;
43 import org.onap.so.bpmn.servicedecomposition.bbobjects.ServiceInstance;
44 import org.onap.so.bpmn.servicedecomposition.bbobjects.VfModule;
45 import org.onap.so.bpmn.servicedecomposition.entities.ResourceKey;
46 import org.onap.so.bpmn.servicedecomposition.generalobjects.RequestContext;
47 import org.onap.so.client.exception.BBObjectNotFoundException;
48 import org.springframework.beans.factory.annotation.Autowired;
49
50
51 public class SDNCActivateTaskTest extends BaseTaskTest{
52         
53         @InjectMocks
54         private SDNCActivateTasks sdncActivateTasks = new SDNCActivateTasks();
55         
56         private L3Network network;
57         private ServiceInstance serviceInstance;
58         private RequestContext requestContext;
59         private CloudRegion cloudRegion;
60         private GenericVnf genericVnf;
61         private VfModule vfModule;
62         private Customer customer;
63         
64         @Before
65         public void before() throws BBObjectNotFoundException {
66                 serviceInstance = setServiceInstance();
67                 network = setL3Network();
68                 genericVnf = setGenericVnf();
69                 vfModule = setVfModule();
70                 cloudRegion = setCloudRegion();
71                 requestContext = setRequestContext();
72                 customer = setCustomer();
73
74                 customer.getServiceSubscription().getServiceInstances().add(serviceInstance);
75                 doThrow(new BpmnError("BPMN Error")).when(exceptionUtil).buildAndThrowWorkflowException(any(BuildingBlockExecution.class), eq(7000), any(Exception.class));
76                 doThrow(new BpmnError("BPMN Error")).when(exceptionUtil).buildAndThrowWorkflowException(any(BuildingBlockExecution.class), eq(7000), any(String.class));
77                 when(extractPojosForBB.extractByKey(any(),ArgumentMatchers.eq(ResourceKey.GENERIC_VNF_ID), any())).thenReturn(genericVnf);
78                 when(extractPojosForBB.extractByKey(any(),ArgumentMatchers.eq(ResourceKey.VF_MODULE_ID), any())).thenReturn(vfModule);
79                 when(extractPojosForBB.extractByKey(any(),ArgumentMatchers.eq(ResourceKey.NETWORK_ID), any())).thenReturn(network);
80                 when(extractPojosForBB.extractByKey(any(),ArgumentMatchers.eq(ResourceKey.SERVICE_INSTANCE_ID), any())).thenReturn(serviceInstance);
81
82         }
83
84         @Test
85         public void activateVnfTest() throws Exception {
86                 doReturn("success").when(sdncVnfResources).activateVnf(genericVnf,serviceInstance, customer, cloudRegion,requestContext);
87                 sdncActivateTasks.activateVnf(execution);
88                 verify(sdncVnfResources, times(1)).activateVnf(genericVnf,serviceInstance, customer,cloudRegion,requestContext);
89         }
90         
91         @Test
92         public void activateVnfTestException() throws Exception {
93                 expectedException.expect(BpmnError.class);
94                 
95                 doThrow(RuntimeException.class).when(sdncVnfResources).activateVnf(genericVnf,serviceInstance, customer,cloudRegion,requestContext);
96                 sdncActivateTasks.activateVnf(execution);
97         }
98         
99         @Test
100         public void activateNetworkTest() throws Exception {
101                 doReturn("response").when(sdncNetworkResources).activateNetwork(isA(L3Network.class), isA(ServiceInstance.class), isA(Customer.class), isA(RequestContext.class), isA(CloudRegion.class));
102                 sdncActivateTasks.activateNetwork(execution);
103                 verify(sdncNetworkResources, times(1)).activateNetwork(network, serviceInstance, customer, requestContext, cloudRegion);
104         }
105         
106         @Test
107         public void activateNetworkExceptionTest() throws Exception {
108                 expectedException.expect(BpmnError.class);
109                 
110                 doThrow(RuntimeException.class).when(sdncNetworkResources).activateNetwork(isA(L3Network.class), isA(ServiceInstance.class), isA(Customer.class), isA(RequestContext.class), isA(CloudRegion.class));
111                 sdncActivateTasks.activateNetwork(execution);
112         }
113         
114         @Test
115         public void activateVfModuleTest() throws Exception {
116                 doReturn("success").when(sdncVfModuleResources).activateVfModule(vfModule, genericVnf, serviceInstance, customer, cloudRegion, requestContext);
117
118                 sdncActivateTasks.activateVfModule(execution);
119
120                 verify(sdncVfModuleResources, times(1)).activateVfModule(vfModule, genericVnf, serviceInstance, customer, cloudRegion, requestContext);
121         }
122         
123         @Test
124         public void activateVfModuleTestException() throws Exception {
125                 expectedException.expect(BpmnError.class);
126                 
127                 doThrow(RuntimeException.class).when(sdncVfModuleResources).activateVfModule(vfModule, genericVnf, serviceInstance, customer, cloudRegion, requestContext);
128                 sdncActivateTasks.activateVfModule(execution);
129         }
130 }