c8f4a222f355c62f23497f02161cabef470c1ec9
[so.git] / bpmn / so-bpmn-tasks / src / test / java / org / onap / so / client / adapter / vnf / mapper / VnfAdapterVfModuleObjectMapperTest.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.client.adapter.vnf.mapper;
22
23 import static org.hamcrest.CoreMatchers.equalTo;
24 import static org.junit.Assert.assertEquals;
25 import static org.junit.Assert.assertThat;
26
27 import java.util.Arrays;
28 import java.util.HashMap;
29 import java.util.Map;
30
31 import org.junit.Test;
32
33 public class VnfAdapterVfModuleObjectMapperTest{
34
35         private VnfAdapterVfModuleObjectMapper mapper = new VnfAdapterVfModuleObjectMapper();
36         
37         @Test
38         public void createVnfcSubInterfaceKeyTest() {
39                 
40                 assertEquals("type_0_subint_role_port_0", mapper.createVnfcSubInterfaceKey("type", 0, "role", 0));
41         }
42         
43         @Test
44         public void createGlobalVnfcSubInterfaceKeyTest() {
45                 
46                 assertEquals("type_subint_role_port_0", mapper.createGlobalVnfcSubInterfaceKey("type", "role", 0));
47         }
48         
49         @Test
50         public void addPairToMapTest() {
51                 Map<String, String> map = new HashMap<>();
52                 
53                 mapper.addPairToMap(map, "test", "_key", Arrays.asList("a", "b"));
54                 
55                 assertEquals("a,b", map.get("test_key"));
56                 
57                 mapper.addPairToMap(map, "test", "_key2", Arrays.asList());
58                 
59                 assertThat(map.containsKey("test_key2"), equalTo(false));
60                 
61                 mapper.addPairToMap(map, "test", "_key3", "myVal");
62                 
63                 assertEquals("myVal", map.get("test_key3"));
64                 
65         }
66         
67 }