Improve coverage FlowControlNode #8
[appc.git] / appc-config / appc-flow-controller / provider / src / test / java / org / onap / appc / flow / controller / node / FlowControlNodeTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2017 Amdocs
8  * =============================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  *
21  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  * ============LICENSE_END=========================================================
23  */
24
25 package org.onap.appc.flow.controller.node;
26
27 import static org.mockito.Mockito.mock;
28 import static org.mockito.Mockito.when;
29
30 import com.fasterxml.jackson.databind.ObjectMapper;
31 import java.util.ArrayList;
32 import java.util.HashMap;
33 import java.util.List;
34 import java.util.Map;
35 import org.junit.Assert;
36 import org.junit.Before;
37 import org.junit.Test;
38 import org.onap.appc.flow.controller.dbervices.FlowControlDBService;
39 import org.onap.appc.flow.controller.interfaceData.Capabilities;
40 import org.onap.appc.flow.controller.interfaceData.DependencyInfo;
41 import org.onap.appc.flow.controller.interfaceData.Vnfcs;
42 import org.onap.ccsdk.sli.core.sli.SvcLogicContext;
43
44 public class FlowControlNodeTest {
45
46   private SvcLogicContext ctx;
47   private FlowControlDBService dbService;
48
49   @Before
50   public void setUp() {
51     ctx = mock(SvcLogicContext.class);
52     dbService = mock(FlowControlDBService.class);
53   }
54
55   @Test
56   public void should_handle_capabilities_full_config() throws Exception {
57
58     String jsonPayload = "{'vnf':['vnf-1', 'vnf-2'],'vf-module':['vf-module-1', 'vf-module-2'],'vnfc':['vnfc-1', 'vnfc-2'],'vm':['vm-1', 'vm-2']}";
59     when(dbService.getCapabilitiesData(ctx)).thenReturn(jsonPayload.replaceAll("'","\""));
60
61     FlowControlNode flowControlNode = new FlowControlNode(null, dbService);
62     Capabilities capabilitiesData = flowControlNode.getCapabilitiesData(ctx);
63
64     Assert.assertEquals("Capabilities [vnf=[vnf-1, vnf-2], vfModule=[vf-module-1, vf-module-2], vm=[vm-1, vm-2], vnfc=[vnfc-1, vnfc-2]]", capabilitiesData.toString());
65   }
66
67   @Test
68   public void should_handle_capabilities_config_with_missing_params() throws Exception {
69
70     // vm is empty, vnfc is absent
71     String jsonPayload = "{'vnf':['vnf-1', 'vnf-2'],'vf-module':['vf-module-1'],'vm':[]}";
72     when(dbService.getCapabilitiesData(ctx)).thenReturn(jsonPayload.replaceAll("'","\""));
73
74     FlowControlNode flowControlNode = new FlowControlNode(null, dbService);
75     Capabilities capabilitiesData = flowControlNode.getCapabilitiesData(ctx);
76
77     Assert.assertEquals("Capabilities [vnf=[vnf-1, vnf-2], vfModule=[vf-module-1], vm=[], vnfc=[]]", capabilitiesData.toString());
78   }
79
80   @Test
81   public void should_handle_dependency_config() throws Exception {
82
83     Vnfcs vnfcs = new Vnfcs();
84     vnfcs.setVnfcType("some-type");
85     vnfcs.setResilience("some-resilence");
86     vnfcs.setMandatory("some-mandatory");
87     Map<String, List<Vnfcs>> input = new HashMap<>();
88     List<Vnfcs> list = new ArrayList<>();
89     list.add(vnfcs);
90     list.add(vnfcs);
91     input.put("vnfcs", list);
92
93     String jsonPayload = new ObjectMapper().writeValueAsString(input);
94
95     when(dbService.getDependencyInfo(ctx)).thenReturn(jsonPayload);
96
97     FlowControlNode flowControlNode = new FlowControlNode(null, dbService);
98     DependencyInfo dependencyInfo = flowControlNode.getDependencyInfo(ctx);
99
100     Assert.assertEquals("DependencyInfo [vnfcs=[Vnfcs [vnfcType=some-type, mandatory=some-mandatory, resilience=some-resilence, parents=[]], Vnfcs [vnfcType=some-type, mandatory=some-mandatory, resilience=some-resilence, parents=[]]]]", dependencyInfo.toString());
101   }
102 }