c05ffefc4c5b782a5fa068c9deb5f7d0b164bf31
[aai/aai-common.git] / aai-core / src / test / java / org / onap / aai / util / KeyValueListTest.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 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  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
21  */
22 package org.onap.aai.util;
23
24 import org.junit.Before;
25 import org.junit.Test;
26 import static org.junit.Assert.*;
27
28 public class KeyValueListTest {
29     KeyValueList kv;
30     KeyValueList kv1;
31
32     @Before
33     public void setup() {
34         String key = "key";
35         String value = "value";
36         kv = new KeyValueList();
37         kv.setKey(key);
38         kv.setValue(value);
39         kv.setAdditionalProperty("name1", "val1");
40         kv1 = new KeyValueList();
41         kv1.setKey("key1");
42         kv1.setValue("value1");
43     }
44
45     @Test
46     public void getSetTest() {
47         assertEquals("key", kv.getKey());
48         assertEquals("value", kv.getValue());
49     }
50
51     @Test
52     public void additionalPropertyTest() {
53         assertEquals("Additional properties added", "val1", kv.getAdditionalProperties().get("name1"));
54     }
55
56     @Test
57     public void hashCodeTest() {
58         assertEquals("Hashing function returns the same code", kv.hashCode(), kv.hashCode());
59         assertNotEquals("Hashing function returns different code for different objects", kv.hashCode(), kv1.hashCode());
60     }
61
62     @Test
63     public void equalsTest() {
64         KeyValueList kv2 = new KeyValueList();
65         kv2.setKey("key");
66         kv2.setValue("value");
67         kv2.setAdditionalProperty("name1", "val1");
68         assertTrue("Equal KeyValueList objects", kv.equals(kv2));
69         assertFalse("Non-equal KeyValueList objects", kv.equals(kv1));
70     }
71
72     @Test
73     public void toStringTest() {
74         assertNotEquals("Different objects should return different strings", kv.toString(), kv1.toString());
75     }
76 }