Merge "Use lowercase for table names in beans" into dublin
[so.git] / bpmn / so-bpmn-tasks / src / test / java / org / onap / so / bpmn / infrastructure / adapter / vnfm / tasks / MonitorTerminateVnfmNodeTaskTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019 Nordix Foundation.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.so.bpmn.infrastructure.adapter.vnfm.tasks;
22
23 import static org.junit.Assert.assertNull;
24 import static org.junit.Assert.assertTrue;
25 import static org.mockito.ArgumentMatchers.any;
26 import static org.mockito.ArgumentMatchers.eq;
27 import static org.mockito.Mockito.verify;
28 import static org.mockito.Mockito.when;
29 import static org.onap.so.bpmn.infrastructure.adapter.vnfm.tasks.Constants.DELETE_VNF_NODE_STATUS;
30 import static org.onap.so.bpmn.infrastructure.adapter.vnfm.tasks.Constants.VNF_ASSIGNED;
31 import java.util.Optional;
32 import java.util.UUID;
33 import org.junit.Before;
34 import org.junit.Test;
35 import org.mockito.Mock;
36 import org.onap.aai.domain.yang.GenericVnf;
37 import org.onap.so.bpmn.BaseTaskTest;
38 import org.onap.so.bpmn.common.BuildingBlockExecution;
39 import org.onap.so.bpmn.servicedecomposition.entities.ResourceKey;
40 import org.onap.so.client.orchestration.AAIVnfResources;
41
42 /**
43  * 
44  * @author Waqas Ikram (waqas.ikram@est.tech)
45  *
46  */
47 public class MonitorTerminateVnfmNodeTaskTest extends BaseTaskTest {
48
49     private static final String VNF_ID = UUID.randomUUID().toString();
50
51     private static final String VNF_NAME = "VNF_NAME";
52
53     private MonitorVnfmNodeTask objUnderTest;
54
55     @Mock
56     private VnfmAdapterServiceProvider mockedVnfmAdapterServiceProvider;
57
58     @Mock
59     private AAIVnfResources mockedAaiVnfResources;
60
61     private final BuildingBlockExecution stubbedxecution = new StubbedBuildingBlockExecution();
62
63     @Before
64     public void setUp() {
65         objUnderTest = getEtsiVnfMonitorNodeJobTask();
66     }
67
68     @Test
69     public void testGetNodeStatusDelete() throws Exception {
70         final org.onap.so.bpmn.servicedecomposition.bbobjects.GenericVnf vnf = getGenericVnf();
71         final GenericVnf aaiGenericVnf = getAAIGenericVnf();
72         aaiGenericVnf.setOrchestrationStatus(VNF_ASSIGNED);
73
74         when(extractPojosForBB.extractByKey(any(), eq(ResourceKey.GENERIC_VNF_ID))).thenReturn(vnf);
75         when(mockedAaiVnfResources.getGenericVnf(eq(VNF_ID))).thenReturn(Optional.of(aaiGenericVnf));
76
77         objUnderTest.getNodeStatus(stubbedxecution);
78         assertTrue(stubbedxecution.getVariable(DELETE_VNF_NODE_STATUS));
79     }
80
81     @Test
82     public void testGetNodeStatus_noGenericVnfFoundInAAI_throwException() throws Exception {
83         final org.onap.so.bpmn.servicedecomposition.bbobjects.GenericVnf vnf = getGenericVnf();
84
85         when(extractPojosForBB.extractByKey(any(), eq(ResourceKey.GENERIC_VNF_ID))).thenReturn(vnf);
86         when(mockedAaiVnfResources.getGenericVnf(eq(VNF_ID))).thenReturn(Optional.empty());
87         objUnderTest.getNodeStatus(stubbedxecution);
88         verify(exceptionUtil).buildAndThrowWorkflowException(any(BuildingBlockExecution.class), eq(1220),
89                 any(Exception.class));
90         assertNull(stubbedxecution.getVariable(DELETE_VNF_NODE_STATUS));
91
92     }
93
94     private GenericVnf getAAIGenericVnf() {
95         final GenericVnf genericVnf = new GenericVnf();
96         genericVnf.setVnfId(VNF_ID);
97         genericVnf.setVnfName(VNF_NAME);
98         return genericVnf;
99     }
100
101     private org.onap.so.bpmn.servicedecomposition.bbobjects.GenericVnf getGenericVnf() {
102         final org.onap.so.bpmn.servicedecomposition.bbobjects.GenericVnf genericVnf =
103                 new org.onap.so.bpmn.servicedecomposition.bbobjects.GenericVnf();
104         genericVnf.setVnfId(VNF_ID);
105         return genericVnf;
106
107     }
108
109     private MonitorTerminateVnfmNodeTask getEtsiVnfMonitorNodeJobTask() {
110         return new MonitorTerminateVnfmNodeTask(extractPojosForBB, exceptionUtil, mockedAaiVnfResources);
111     }
112
113 }