summaryrefslogtreecommitdiffstats
path: root/catalog-be/src/test/java/org/openecomp/sdc/be/components/utils/MapUtilsTest.java
blob: 5f8c5ec27c56daae1a7aabd6814b08951081738b (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
/*-
 * ============LICENSE_START=======================================================
 * SDC
 * ================================================================================
 * Copyright (C) 2019 Nokia. All rights reserved.
 * ================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END=========================================================
 */
package org.openecomp.sdc.be.components.utils;

import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;

import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.junit.Test;

public class MapUtilsTest {

    private static final String KEY_1 = "key1";
    private static final String KEY_2 = "key2";
    private static final String VALUE_1 = "value1";
    private static final String VALUE_2 = "value2";

    @Test
    public void shouldCompareMapsOfNulls() {
        assertTrue(MapUtils.compareMaps(null, null));
    }

    @Test
    public void shouldCompareMapIsTrue() {
        Map<String, Object> map1 = new HashMap<>();
        Map<String, Object> map2 = new HashMap<>();
        map1.put(KEY_1, VALUE_1);
        map2.put(KEY_1, VALUE_1);
        assertTrue(MapUtils.compareMaps(map1, map2));
    }

    @Test
    public void shouldCompareMapWithNull() {
        assertFalse(MapUtils.compareMaps(null, Collections.emptyMap()));
    }

    @Test
    public void shouldCompareMapsIsFalse() {
        Map<String, Object> map1 = new HashMap<>();
        Map<String, Object> map2 = new HashMap<>();
        map1.put(KEY_1, VALUE_1);
        map2.put(KEY_2, VALUE_1);
        assertFalse(MapUtils.compareMaps(map1, map2));
    }

    @Test
    public void shouldHandleSourceAndTargetObjectsOfDifferentValues() {
        assertFalse(MapUtils.handleSourceAndTargetObjects(VALUE_1, VALUE_2));
    }

    @Test
    public void shouldHandleSourceAndTargetObjectsOfSameValues() {
        assertTrue(MapUtils.handleSourceAndTargetObjects(VALUE_1, VALUE_1));
    }

    @Test
    public void shouldHandleSourceAndTargetObjectsOfNullValues() {
        assertTrue(MapUtils.handleSourceAndTargetObjects(null, null));
    }

    @Test
    public void shouldHandleSourceAndTargetObjectsOfNullValueAndNotNullValue() {
        assertFalse(MapUtils.handleSourceAndTargetObjects(null, ""));
    }

    @Test
    public void shouldCompareListsOfNulls() {
        assertTrue(MapUtils.compareLists(null, null));
    }

    @Test
    public void shouldCompareListsIsTrue() {
        List<Object> list1 = new ArrayList<>();
        List<Object> list2 = new ArrayList<>();
        list1.add(VALUE_1);
        list2.add(VALUE_1);
        assertTrue(MapUtils.compareLists(list1, list2));
    }

    @Test
    public void shouldCompareListWithNull() {
        assertFalse(MapUtils.compareLists(null, Collections.emptyList()));
    }

    @Test
    public void shouldCompareListsIsFalse() {
        List<Object> list1 = new ArrayList<>();
        List<Object> list2 = new ArrayList<>();
        list1.add(VALUE_1);
        list2.add(VALUE_2);
        assertFalse(MapUtils.compareLists(list1, list2));
    }
}