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