Springboot 2.0 upgrade
[so.git] / bpmn / so-bpmn-tasks / src / test / java / org / onap / so / client / orchestration / AAIInstanceGroupResourcesTest.java
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.client.orchestration;
22
23 import static org.mockito.Matchers.eq;
24 import static org.mockito.ArgumentMatchers.isA;
25 import static org.mockito.Mockito.doReturn;
26 import static org.mockito.Mockito.times;
27 import static org.mockito.Mockito.verify;
28
29 import java.util.Optional;
30
31 import org.junit.Before;
32 import org.junit.Test;
33 import org.junit.runner.RunWith;
34 import org.mockito.InjectMocks;
35 import org.mockito.Mock;
36 import org.mockito.junit.MockitoJUnitRunner;
37 import org.onap.so.bpmn.common.data.TestDataSetup;
38 import org.onap.so.bpmn.common.InjectionHelper;
39 import org.onap.so.bpmn.servicedecomposition.bbobjects.GenericVnf;
40 import org.onap.so.bpmn.servicedecomposition.bbobjects.InstanceGroup;
41 import org.onap.so.client.aai.AAIObjectType;
42 import org.onap.so.client.aai.AAIResourcesClient;
43 import org.onap.so.client.aai.entities.AAIEdgeLabel;
44 import org.onap.so.client.aai.entities.uri.AAIUriFactory;
45 import org.onap.so.client.aai.mapper.AAIObjectMapper;
46 @RunWith(MockitoJUnitRunner.Silent.class)
47 public class AAIInstanceGroupResourcesTest extends TestDataSetup{
48         
49         @InjectMocks
50         private AAIInstanceGroupResources aaiInstanceGroupResources = new AAIInstanceGroupResources();
51         
52         private InstanceGroup instanceGroup;
53         private GenericVnf vnf;
54         
55         @Mock
56         protected AAIResourcesClient MOCK_aaiResourcesClient;
57     
58     @Mock
59     protected AAIObjectMapper MOCK_aaiObjectMapper;
60     
61     @Mock
62     protected InjectionHelper MOCK_injectionHelper;
63         
64         @Before
65         public void before() {
66                 instanceGroup = buildInstanceGroup();
67                 vnf = buildGenericVnf();
68                  doReturn(MOCK_aaiResourcesClient).when(MOCK_injectionHelper).getAaiClient();
69         }
70         
71         @Test
72         public void createInstanceGroupTest() throws Exception {
73                 doReturn(new org.onap.aai.domain.yang.InstanceGroup()).when(MOCK_aaiObjectMapper).mapInstanceGroup(instanceGroup);
74                 aaiInstanceGroupResources.createInstanceGroup(instanceGroup);
75                 verify(MOCK_aaiResourcesClient, times(1)).createIfNotExists(eq(AAIUriFactory.createResourceUri(AAIObjectType.INSTANCE_GROUP, instanceGroup.getId())), isA(Optional.class));
76         }
77         
78         @Test
79         public void deleteInstanceGroupTest() throws Exception {
80                 aaiInstanceGroupResources.deleteInstanceGroup(instanceGroup);
81                 verify(MOCK_aaiResourcesClient, times(1)).delete(eq(AAIUriFactory.createResourceUri(AAIObjectType.INSTANCE_GROUP, instanceGroup.getId())));
82         }
83         
84         @Test
85         public void connectInstanceGroupTest() throws Exception {
86                 aaiInstanceGroupResources.connectInstanceGroupToVnf(instanceGroup, vnf);
87                 verify(MOCK_aaiResourcesClient, times(1)).connect(eq(AAIUriFactory.createResourceUri(AAIObjectType.INSTANCE_GROUP, instanceGroup.getId())), eq(AAIUriFactory.createResourceUri(AAIObjectType.GENERIC_VNF, vnf.getVnfId())));
88         }
89         
90         @Test
91         public void connectInstanceGroupWithEdgeTest() throws Exception {
92                 aaiInstanceGroupResources.connectInstanceGroupToVnf(instanceGroup, vnf, AAIEdgeLabel.BELONGS_TO);
93                 verify(MOCK_aaiResourcesClient, times(1)).connect(eq(AAIUriFactory.createResourceUri(AAIObjectType.INSTANCE_GROUP, instanceGroup.getId())), eq(AAIUriFactory.createResourceUri(AAIObjectType.GENERIC_VNF, vnf.getVnfId())), eq(AAIEdgeLabel.BELONGS_TO));
94         }
95         
96         @Test
97         public void existsTest() throws Exception {
98                 aaiInstanceGroupResources.exists(instanceGroup);
99                 verify(MOCK_aaiResourcesClient, times(1)).exists(eq(AAIUriFactory.createResourceUri(AAIObjectType.INSTANCE_GROUP, instanceGroup.getId())));
100         }
101         
102 }