aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-dao/src/test/java/org/openecomp/sdc/be/dao/utils/MapUtilTest.java
blob: 1f85a290e9944f93046ff10ba1d9aab78291006e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
package org.openecomp.sdc.be.dao.utils;

import com.google.common.collect.ImmutableMap;
import org.junit.Test;

import java.util.*;
import java.util.function.Function;

import static org.assertj.core.api.Assertions.assertThat;
import static org.assertj.core.api.Assertions.assertThatThrownBy;
import static org.openecomp.sdc.be.dao.utils.MapUtil.mergeMaps;

public class MapUtilTest {

    @Test
    public void mergeMaps_whenBothMapsAreNull_returnEmptyMap() {
        assertThat(mergeMaps(null, null)).isEmpty();
    }

    @Test
    public void mergeMaps_whenFirstMapIsNull_returnSecondMap() {
        ImmutableMap<String, String> second = ImmutableMap.of("a", "b", "c", "d");
        assertThat(mergeMaps(null, second))
                .isNotSameAs(second)
                .containsAllEntriesOf(second);
    }

    @Test
    public void mergeMaps_whenSecondMapsIsNull_returnFirstMap() {
        ImmutableMap<String, String> first = ImmutableMap.of("a", "b", "c", "d");
        assertThat(mergeMaps(first, null))
                .isNotSameAs(first)
                .containsAllEntriesOf(first);
    }

    @Test
    public void mergeMaps_avoidDuplications_takeValFromFirstMap() {
        ImmutableMap<String, String> first = ImmutableMap.of("key1", "val1", "key2", "val2");
        ImmutableMap<String, String> second = ImmutableMap.of("key1", "val11", "key3", "val3");
        assertThat(mergeMaps(first, second))
                .containsEntry("key1", "val1")
                .containsEntry("key2", "val2")
                .containsEntry("key3", "val3");
     }
     	@Test
	public void testGet() throws Exception {
		Map<String, ? extends Object> map = null;
		String path = "";
		Object result;

		// default test
		result = MapUtil.get(map, path);
		path = "\\mock\\mock";
		result = MapUtil.get(map, path);
	}

	@Test
	public void testGroupListBy() throws Exception {
		Collection valuesToMap = new LinkedList<String>();
		Function<String, String> groupingFunction = new Function<String, String>() {
			
			@Override
			public String apply(String t) {
				return t;
			}
		};
		Map<String, List<String>> result;

		// default test
		result = MapUtil.groupListBy(valuesToMap, groupingFunction);
	}

	@Test
	public void testToMap() throws Exception {
		Collection<String> valuesToMap = null;
		Function<String, String> mappingFunction = null;
		Map<String, String> result;

		// default test
		result = MapUtil.toMap(valuesToMap, mappingFunction);
	}

	@Test
	public void testConvertMapKeys() throws Exception {
		Map<String, List<String>> map = new HashMap<>();
		Function<String, String> keyMappingFunction = new Function<String, String>() {
			
			@Override
			public String apply(String t) {
				return t;
			}
		};
		Map<String, List<String>> result;

		// default test
		result = MapUtil.convertMapKeys(map, keyMappingFunction);
	}

	@Test
	public void testNewHashMap() throws Exception {
        final String[] keys1 = new String[] { "mock" };
        final String[] values1 = new String[] { "mock" };
		Map<String, String> result;

		// test 1
		result = MapUtil.newHashMap(keys1, values1);

		// test 2
        final String[] keys2 = new String[] { "mock" };
        final String[] values2 = null;
        assertThatThrownBy(() -> MapUtil.newHashMap(keys2, values2))
                    .isInstanceOf(IllegalArgumentException.class);

		// test 3
        final String[] keys3 = null;
        final String[] values3 = null;
        assertThatThrownBy(() -> MapUtil.newHashMap(keys3, values3))
                .isInstanceOf(IllegalArgumentException.class);

		// test 4
		final String[] values4 = new String[] { "mock" };
		final String[] keys4 = null;
		assertThatThrownBy(() -> MapUtil.newHashMap(keys4, values4))
					.isInstanceOf(IllegalArgumentException.class);

	}
}