aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteven Blimkie <Steven.Blimkie@amdocs.com>2018-07-26 12:45:34 +0000
committerGerrit Code Review <gerrit@onap.org>2018-07-26 12:45:34 +0000
commit549b8c5b7e90621fc4d77fa35e6a7be8d58e3182 (patch)
treea0f777908d25782c05ce2a095acb75ea980fb93a
parent0e4ea56427fc5a2c47e7e72925d92dd15d3dcf8b (diff)
parent2473233809d30f940bd9ea73f36bf551cd25930e (diff)
Merge "Fix equals and hashCode methods"
-rw-r--r--champ-lib/champ-core/src/main/java/org/onap/aai/champcore/model/ChampObjectConstraint.java10
-rw-r--r--champ-lib/champ-core/src/main/java/org/onap/aai/champcore/model/ChampObjectIndex.java6
-rw-r--r--champ-lib/champ-core/src/main/java/org/onap/aai/champcore/model/ChampRelationship.java6
-rw-r--r--champ-lib/champ-core/src/main/java/org/onap/aai/champcore/model/ChampRelationshipConstraint.java6
-rw-r--r--champ-lib/champ-core/src/main/java/org/onap/aai/champcore/model/ChampRelationshipIndex.java6
-rw-r--r--champ-lib/champ-core/src/test/java/org/onap/aai/champcore/core/ChampObjectIndexTest.java34
-rw-r--r--champ-lib/champ-core/src/test/java/org/onap/aai/champcore/core/ChampRelationshipIndexTest.java48
-rw-r--r--champ-lib/champ-core/src/test/java/org/onap/aai/champcore/core/ChampRelationshipTest.java27
-rw-r--r--champ-lib/champ-core/src/test/java/org/onap/aai/champcore/model/ChampObjectConstraintTest.java53
-rw-r--r--champ-lib/champ-core/src/test/java/org/onap/aai/champcore/model/ChampRelationshipConstraintTest.java57
10 files changed, 244 insertions, 9 deletions
diff --git a/champ-lib/champ-core/src/main/java/org/onap/aai/champcore/model/ChampObjectConstraint.java b/champ-lib/champ-core/src/main/java/org/onap/aai/champcore/model/ChampObjectConstraint.java
index c999e7c..3bd00fa 100644
--- a/champ-lib/champ-core/src/main/java/org/onap/aai/champcore/model/ChampObjectConstraint.java
+++ b/champ-lib/champ-core/src/main/java/org/onap/aai/champcore/model/ChampObjectConstraint.java
@@ -23,6 +23,7 @@ package org.onap.aai.champcore.model;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
+import java.util.Objects;
import java.util.Optional;
import java.util.Set;
@@ -88,6 +89,10 @@ public final class ChampObjectConstraint {
@Override
public boolean equals(Object o) {
+ if (o == this) {
+ return true;
+ }
+
if (o instanceof ChampObjectConstraint) {
final ChampObjectConstraint objectConstraint = (ChampObjectConstraint) o;
@@ -98,6 +103,11 @@ public final class ChampObjectConstraint {
}
@Override
+ public int hashCode() {
+ return Objects.hashCode(getType());
+ }
+
+ @Override
public String toString() {
return "{type: " + getType() +
", propertyConstraints: " + getPropertyConstraints() +
diff --git a/champ-lib/champ-core/src/main/java/org/onap/aai/champcore/model/ChampObjectIndex.java b/champ-lib/champ-core/src/main/java/org/onap/aai/champcore/model/ChampObjectIndex.java
index 489e26d..68ecbcc 100644
--- a/champ-lib/champ-core/src/main/java/org/onap/aai/champcore/model/ChampObjectIndex.java
+++ b/champ-lib/champ-core/src/main/java/org/onap/aai/champcore/model/ChampObjectIndex.java
@@ -20,6 +20,7 @@
*/
package org.onap.aai.champcore.model;
+import java.util.Objects;
import org.onap.aai.champcore.model.fluent.index.CreateObjectIndexable;
import org.onap.aai.champcore.model.fluent.index.impl.CreateObjectIndexableImpl;
@@ -83,4 +84,9 @@ public final class ChampObjectIndex {
return false;
}
+
+ @Override
+ public int hashCode() {
+ return Objects.hash(getName(), getField().getName());
+ }
}
diff --git a/champ-lib/champ-core/src/main/java/org/onap/aai/champcore/model/ChampRelationship.java b/champ-lib/champ-core/src/main/java/org/onap/aai/champcore/model/ChampRelationship.java
index 6083d52..4878ed9 100644
--- a/champ-lib/champ-core/src/main/java/org/onap/aai/champcore/model/ChampRelationship.java
+++ b/champ-lib/champ-core/src/main/java/org/onap/aai/champcore/model/ChampRelationship.java
@@ -23,6 +23,7 @@ package org.onap.aai.champcore.model;
import java.util.HashMap;
import java.util.Map;
import java.util.Map.Entry;
+import java.util.Objects;
import java.util.Optional;
import org.onap.aai.champcore.model.fluent.relationship.CreateChampRelationshipable;
@@ -152,6 +153,11 @@ public final class ChampRelationship implements ChampElement {
}
@Override
+ public int hashCode() {
+ return Objects.hashCode(getKey());
+ }
+
+ @Override
public String toString() {
return "{key: " + (getKey().isPresent() ? getKey().get() : "")
+ ", type: " + getType()
diff --git a/champ-lib/champ-core/src/main/java/org/onap/aai/champcore/model/ChampRelationshipConstraint.java b/champ-lib/champ-core/src/main/java/org/onap/aai/champcore/model/ChampRelationshipConstraint.java
index b8e8eef..5191ff8 100644
--- a/champ-lib/champ-core/src/main/java/org/onap/aai/champcore/model/ChampRelationshipConstraint.java
+++ b/champ-lib/champ-core/src/main/java/org/onap/aai/champcore/model/ChampRelationshipConstraint.java
@@ -23,6 +23,7 @@ package org.onap.aai.champcore.model;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
+import java.util.Objects;
import java.util.Optional;
import java.util.Set;
@@ -135,4 +136,9 @@ public final class ChampRelationshipConstraint {
return false;
}
+
+ @Override
+ public int hashCode() {
+ return Objects.hash(getType(), getConnectionConstraints(), getPropertyConstraints());
+ }
}
diff --git a/champ-lib/champ-core/src/main/java/org/onap/aai/champcore/model/ChampRelationshipIndex.java b/champ-lib/champ-core/src/main/java/org/onap/aai/champcore/model/ChampRelationshipIndex.java
index 763f649..e33af39 100644
--- a/champ-lib/champ-core/src/main/java/org/onap/aai/champcore/model/ChampRelationshipIndex.java
+++ b/champ-lib/champ-core/src/main/java/org/onap/aai/champcore/model/ChampRelationshipIndex.java
@@ -20,6 +20,7 @@
*/
package org.onap.aai.champcore.model;
+import java.util.Objects;
import org.onap.aai.champcore.model.fluent.index.CreateRelationshipIndexable;
import org.onap.aai.champcore.model.fluent.index.impl.CreateRelationshipIndexableImpl;
@@ -83,4 +84,9 @@ public final class ChampRelationshipIndex {
return false;
}
+
+ @Override
+ public int hashCode() {
+ return Objects.hash(getName(), getField().getName());
+ }
}
diff --git a/champ-lib/champ-core/src/test/java/org/onap/aai/champcore/core/ChampObjectIndexTest.java b/champ-lib/champ-core/src/test/java/org/onap/aai/champcore/core/ChampObjectIndexTest.java
index d007ee4..a58cbc6 100644
--- a/champ-lib/champ-core/src/test/java/org/onap/aai/champcore/core/ChampObjectIndexTest.java
+++ b/champ-lib/champ-core/src/test/java/org/onap/aai/champcore/core/ChampObjectIndexTest.java
@@ -20,18 +20,22 @@
*/
package org.onap.aai.champcore.core;
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertNotEquals;
import static org.junit.Assert.assertTrue;
import java.util.Collection;
import java.util.Optional;
import java.util.stream.Collectors;
import java.util.stream.Stream;
-
import org.junit.Test;
import org.onap.aai.champcore.ChampAPI;
import org.onap.aai.champcore.ChampGraph;
import org.onap.aai.champcore.exceptions.ChampIndexNotExistsException;
+import org.onap.aai.champcore.model.ChampField;
+import org.onap.aai.champcore.model.ChampField.Type;
import org.onap.aai.champcore.model.ChampObjectIndex;
+import org.onap.aai.champcore.model.ChampObjectIndex.Builder;
public class ChampObjectIndexTest extends BaseChampAPITest {
@Test
@@ -130,4 +134,32 @@ public class ChampObjectIndexTest extends BaseChampAPITest {
assertTrue(objectIndex.getType().equals("foo"));
assertTrue(objectIndex.getField().getName().equals("name"));
}
+
+ @Test
+ public void verifyEqualsAndHashCodeMethods() {
+ ChampField champField1 = new ChampField.Builder("name").type(Type.STRING).build();
+ ChampField champField2 = new ChampField.Builder("differentName").type(Type.STRING).build();
+
+ ChampObjectIndex obj1 = new Builder("name", "type", champField1).build();
+ ChampObjectIndex obj2 = new Builder("name", "type", champField1).build();
+ ChampObjectIndex obj3 = new Builder("name", "type", champField1).build();
+ ChampObjectIndex obj4 = new Builder("name", "type", champField2).build();
+ ChampObjectIndex obj5 = new Builder("differentName", "type", champField1).build();
+
+ // if
+ assertEquals(obj1, obj2);
+ assertEquals(obj1.hashCode(), obj2.hashCode());
+ //and
+ assertEquals(obj1, obj3);
+ assertEquals(obj1.hashCode(), obj3.hashCode());
+ //then
+ assertEquals(obj2, obj3);
+ assertEquals(obj2.hashCode(), obj3.hashCode());
+
+ assertNotEquals(obj1, obj4);
+ assertNotEquals(obj1.hashCode(), obj4.hashCode());
+
+ assertNotEquals(obj1, obj5);
+ assertNotEquals(obj1.hashCode(), obj5.hashCode());
+ }
}
diff --git a/champ-lib/champ-core/src/test/java/org/onap/aai/champcore/core/ChampRelationshipIndexTest.java b/champ-lib/champ-core/src/test/java/org/onap/aai/champcore/core/ChampRelationshipIndexTest.java
index f174f3e..e53896d 100644
--- a/champ-lib/champ-core/src/test/java/org/onap/aai/champcore/core/ChampRelationshipIndexTest.java
+++ b/champ-lib/champ-core/src/test/java/org/onap/aai/champcore/core/ChampRelationshipIndexTest.java
@@ -20,21 +20,28 @@
*/
package org.onap.aai.champcore.core;
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertNotEquals;
+import static org.junit.Assert.assertTrue;
+
+import java.util.Collection;
+import java.util.Optional;
+import java.util.stream.Collectors;
+import java.util.stream.Stream;
import org.junit.Test;
import org.onap.aai.champcore.ChampAPI;
import org.onap.aai.champcore.ChampGraph;
-import org.onap.aai.champcore.exceptions.*;
+import org.onap.aai.champcore.exceptions.ChampIndexNotExistsException;
+import org.onap.aai.champcore.exceptions.ChampMarshallingException;
+import org.onap.aai.champcore.exceptions.ChampObjectNotExistsException;
+import org.onap.aai.champcore.exceptions.ChampRelationshipNotExistsException;
+import org.onap.aai.champcore.exceptions.ChampSchemaViolationException;
+import org.onap.aai.champcore.exceptions.ChampTransactionException;
+import org.onap.aai.champcore.exceptions.ChampUnmarshallingException;
import org.onap.aai.champcore.model.ChampField;
import org.onap.aai.champcore.model.ChampRelationship;
import org.onap.aai.champcore.model.ChampRelationshipIndex;
-import java.util.Collection;
-import java.util.Optional;
-import java.util.stream.Collectors;
-import java.util.stream.Stream;
-
-import static org.junit.Assert.assertTrue;
-
public class ChampRelationshipIndexTest extends BaseChampAPITest {
@Test
@@ -175,4 +182,29 @@ public class ChampRelationshipIndexTest extends BaseChampAPITest {
assertTrue(relationshipIndex.getType().equals("foo"));
assertTrue(relationshipIndex.getField().getName().equals("name"));
}
+
+
+ @Test
+ public void verifyEqualsAndHashCodeMethods(){
+ ChampField champField1 = new ChampField.Builder("name").build();
+ ChampField champField2 = new ChampField.Builder("differentName").build();
+ ChampRelationshipIndex obj1 = new ChampRelationshipIndex.Builder("name","type",champField1).build();
+ ChampRelationshipIndex obj2 = new ChampRelationshipIndex.Builder("name","type",champField1).build();
+ ChampRelationshipIndex obj3 = new ChampRelationshipIndex.Builder("name","type",champField1).build();
+ ChampRelationshipIndex obj4 = new ChampRelationshipIndex.Builder("name","type",champField2).build();
+
+
+ // if
+ assertEquals(obj1, obj2);
+ assertEquals(obj1.hashCode(), obj2.hashCode());
+ //and
+ assertEquals(obj1, obj3);
+ assertEquals(obj1.hashCode(), obj3.hashCode());
+ //then
+ assertEquals(obj2, obj3);
+ assertEquals(obj2.hashCode(), obj3.hashCode());
+
+ assertNotEquals(obj1, obj4);
+ assertNotEquals(obj1.hashCode(), obj4.hashCode());
+ }
}
diff --git a/champ-lib/champ-core/src/test/java/org/onap/aai/champcore/core/ChampRelationshipTest.java b/champ-lib/champ-core/src/test/java/org/onap/aai/champcore/core/ChampRelationshipTest.java
index 549f7f4..67dcbd1 100644
--- a/champ-lib/champ-core/src/test/java/org/onap/aai/champcore/core/ChampRelationshipTest.java
+++ b/champ-lib/champ-core/src/test/java/org/onap/aai/champcore/core/ChampRelationshipTest.java
@@ -27,6 +27,7 @@ import org.onap.aai.champcore.ChampTransaction;
import org.onap.aai.champcore.exceptions.*;
import org.onap.aai.champcore.model.ChampObject;
import org.onap.aai.champcore.model.ChampRelationship;
+import org.onap.aai.champcore.model.ChampRelationship.Builder;
import org.onap.aai.champcore.model.ChampRelationship.ReservedPropertyKeys;
import org.onap.aai.champcore.model.ChampRelationship.ReservedTypes;
@@ -36,6 +37,8 @@ import java.util.Map;
import java.util.Optional;
import java.util.stream.Collectors;
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertNotEquals;
import static org.junit.Assert.assertTrue;
public class ChampRelationshipTest extends BaseChampAPITest {
@@ -277,6 +280,30 @@ public class ChampRelationshipTest extends BaseChampAPITest {
assertTrue(ChampRelationship.ReservedTypes.valueOf(type.name()) == type);
}
}
+
+ @Test
+ public void verifyEqualsAndHashCodeMethods() {
+ ChampObject source = new ChampObject.Builder("type").build();
+ ChampObject target = new ChampObject.Builder("type").build();
+ ChampRelationship champRelationship = new Builder(source, target, "type").key("someKey").build();
+ ChampRelationship obj1 = new Builder(champRelationship).key("someKey").build();
+ ChampRelationship obj2 = new Builder(champRelationship).key("someKey").build();
+ ChampRelationship obj3 = new Builder(champRelationship).key("someKey").build();
+ ChampRelationship obj4 = new Builder(champRelationship).key("differentKey").build();
+
+ // if
+ assertEquals(obj1, obj2);
+ assertEquals(obj1.hashCode(), obj2.hashCode());
+ //and
+ assertEquals(obj1, obj3);
+ assertEquals(obj1.hashCode(), obj3.hashCode());
+ //then
+ assertEquals(obj2, obj3);
+ assertEquals(obj2.hashCode(), obj3.hashCode());
+
+ assertNotEquals(obj1, obj4);
+ assertNotEquals(obj1.hashCode(), obj4.hashCode());
+ }
public static ChampTransaction getTransaction() {
return new TestTransaction();
diff --git a/champ-lib/champ-core/src/test/java/org/onap/aai/champcore/model/ChampObjectConstraintTest.java b/champ-lib/champ-core/src/test/java/org/onap/aai/champcore/model/ChampObjectConstraintTest.java
new file mode 100644
index 0000000..c77214c
--- /dev/null
+++ b/champ-lib/champ-core/src/test/java/org/onap/aai/champcore/model/ChampObjectConstraintTest.java
@@ -0,0 +1,53 @@
+/**
+ * ============LICENSE_START==========================================
+ * org.onap.aai
+ * ===================================================================
+ * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
+ * Copyright © 2018 Nokia Intellectual Property. 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.onap.aai.champcore.model;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertNotEquals;
+
+import org.junit.Test;
+import org.onap.aai.champcore.model.ChampObjectConstraint.Builder;
+
+
+public class ChampObjectConstraintTest {
+
+ @Test
+ public void verifyEqualsAndHashCodeMethods(){
+ ChampObjectConstraint obj1 = new Builder("type").build();
+ ChampObjectConstraint obj2 = new Builder("type").build();
+ ChampObjectConstraint obj3 = new Builder("type").build();
+ ChampObjectConstraint obj4 = new Builder("differentType").build();
+
+ // if
+ assertEquals(obj1, obj2);
+ assertEquals(obj1.hashCode(), obj2.hashCode());
+ //and
+ assertEquals(obj1, obj3);
+ assertEquals(obj1.hashCode(), obj3.hashCode());
+ //then
+ assertEquals(obj2, obj3);
+ assertEquals(obj2.hashCode(), obj3.hashCode());
+
+ assertNotEquals(obj1, obj4);
+ assertNotEquals(obj1.hashCode(), obj4.hashCode());
+ }
+
+} \ No newline at end of file
diff --git a/champ-lib/champ-core/src/test/java/org/onap/aai/champcore/model/ChampRelationshipConstraintTest.java b/champ-lib/champ-core/src/test/java/org/onap/aai/champcore/model/ChampRelationshipConstraintTest.java
new file mode 100644
index 0000000..f9bfa3c
--- /dev/null
+++ b/champ-lib/champ-core/src/test/java/org/onap/aai/champcore/model/ChampRelationshipConstraintTest.java
@@ -0,0 +1,57 @@
+/**
+ * ============LICENSE_START==========================================
+ * org.onap.aai
+ * ===================================================================
+ * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
+ * Copyright © 2018 Nokia Intellectual Property. 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.onap.aai.champcore.model;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertNotEquals;
+
+import java.util.HashSet;
+import org.junit.Test;
+
+
+
+public class ChampRelationshipConstraintTest {
+
+ @Test
+ public void verifyEqualsAndHashCodeMethods(){
+ ChampRelationshipConstraint obj1 = new ChampRelationshipConstraint.Builder("type")
+ .connectionConstraints(new HashSet<>()).propertyConstraints(new HashSet<>()).build();
+ ChampRelationshipConstraint obj2 = new ChampRelationshipConstraint.Builder("type")
+ .connectionConstraints(new HashSet<>()).propertyConstraints(new HashSet<>()).build();
+ ChampRelationshipConstraint obj3 = new ChampRelationshipConstraint.Builder("type")
+ .connectionConstraints(new HashSet<>()).propertyConstraints(new HashSet<>()).build();
+ ChampRelationshipConstraint obj4 = new ChampRelationshipConstraint.Builder("differentType")
+ .connectionConstraints(new HashSet<>()).propertyConstraints(new HashSet<>()).build();
+
+ // if
+ assertEquals(obj1, obj2);
+ assertEquals(obj1.hashCode(), obj2.hashCode());
+ //and
+ assertEquals(obj1, obj3);
+ assertEquals(obj1.hashCode(), obj3.hashCode());
+ //then
+ assertEquals(obj2, obj3);
+ assertEquals(obj2.hashCode(), obj3.hashCode());
+
+ assertNotEquals(obj1, obj4);
+ assertNotEquals(obj1.hashCode(), obj4.hashCode());
+ }
+} \ No newline at end of file