summaryrefslogtreecommitdiffstats
path: root/src/test/java/org/onap/schema
diff options
context:
space:
mode:
authormichaere <michaere@amdocs.com>2018-06-27 09:51:34 +0100
committermichaere <michaere@amdocs.com>2018-06-27 09:51:34 +0100
commitd10a218c76633374f083f7a2802c198e93a6abae (patch)
tree7c68c359600270f4f6eb1290bd34093c386d5d23 /src/test/java/org/onap/schema
parent68cd3355674d66f8feee3d067960c081581a3911 (diff)
Apply multiplicity Rule upon Edge creation
Uses multiplicity type from dbedge rules json to validate whether to and from vertices meet the multiplicity constraint e.g. ONE2MANY. This validation is applied when creating or updating an edge. Issue-ID: AAI-1197 Change-Id: Id6e78635c5cbea66d8a35e6901b7e1b673125e4e Signed-off-by: michaere <michaere@amdocs.com>
Diffstat (limited to 'src/test/java/org/onap/schema')
-rw-r--r--src/test/java/org/onap/schema/RelationshipSchemaTest.java14
-rw-r--r--src/test/java/org/onap/schema/validation/MultiplicityValidatorTest.java159
2 files changed, 165 insertions, 8 deletions
diff --git a/src/test/java/org/onap/schema/RelationshipSchemaTest.java b/src/test/java/org/onap/schema/RelationshipSchemaTest.java
index 9467f41..a32762f 100644
--- a/src/test/java/org/onap/schema/RelationshipSchemaTest.java
+++ b/src/test/java/org/onap/schema/RelationshipSchemaTest.java
@@ -20,18 +20,16 @@
*/
package org.onap.schema;
-import com.google.common.collect.ArrayListMultimap;
-import com.google.common.collect.Multimap;
+import static org.junit.Assert.*;
+import java.io.IOException;
+import java.util.HashMap;
+import java.util.Map;
import org.junit.Test;
import org.onap.aai.edges.EdgeRule;
import org.onap.aai.edges.exceptions.EdgeRuleNotFoundException;
import org.onap.crud.exception.CrudException;
-
-import java.io.IOException;
-import java.util.HashMap;
-import java.util.Map;
-
-import static org.junit.Assert.*;
+import com.google.common.collect.ArrayListMultimap;
+import com.google.common.collect.Multimap;
public class RelationshipSchemaTest {
diff --git a/src/test/java/org/onap/schema/validation/MultiplicityValidatorTest.java b/src/test/java/org/onap/schema/validation/MultiplicityValidatorTest.java
new file mode 100644
index 0000000..409ce3c
--- /dev/null
+++ b/src/test/java/org/onap/schema/validation/MultiplicityValidatorTest.java
@@ -0,0 +1,159 @@
+/**
+ * ============LICENSE_START=======================================================
+ * org.onap.aai
+ * ================================================================================
+ * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
+ * Copyright © 2017-2018 Amdocs
+ * ================================================================================
+ * 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.schema.validation;
+
+import java.io.File;
+import java.util.ArrayList;
+import java.util.HashMap;
+import java.util.List;
+import java.util.Map;
+import org.junit.Assert;
+import org.junit.Before;
+import org.junit.Rule;
+import org.junit.Test;
+import org.junit.rules.ExpectedException;
+import org.onap.crud.entity.Edge;
+import org.onap.crud.entity.Vertex;
+import org.onap.crud.exception.CrudException;
+import org.onap.crud.parser.EdgePayload;
+import org.onap.schema.EdgeRulesLoader;
+import org.onap.schema.validation.MultiplicityValidator.MultiplicityType;
+
+public class MultiplicityValidatorTest {
+
+ private final String postEdgePayload = "{" + "\"type\": \"tosca.relationships.HostedOn\","
+ + "\"source\": \"services/inventory/v12/vserver/50bdab41-ad1c-4d00-952c-a0aa5d827811\","
+ + "\"target\": \"services/inventory/v12/pserver/1d326bc7-b985-492b-9604-0d5d1f06f908\","
+ + "\"properties\": {" + "\"prevent-delete\": \"NONE\" } }";
+
+ @Rule
+ public ExpectedException thrown = ExpectedException.none();
+
+ @Before
+ public void init() {
+ ClassLoader classLoader = getClass().getClassLoader();
+ File dir = new File(classLoader.getResource("rules").getFile());
+ System.setProperty("CONFIG_HOME", dir.getParent());
+ EdgeRulesLoader.resetSchemaVersionContext();
+ }
+
+ @Test
+ public void testValidPayloadForMultiplicityRule() throws CrudException {
+ Map<String, List<Edge>> vertexMap = getEdgesForVertex(MultiplicityType.MANY2ONE, true);
+ MultiplicityValidator.validatePayloadMultiplicity(EdgePayload.fromJson(postEdgePayload),
+ vertexMap.get("source"), vertexMap.get("target"),
+ "tosca.relationships.HostedOn", "v11");
+ }
+
+ @Test
+ public void testInvalidPayloadForMultiplicityRule() throws CrudException {
+ thrown.expect(CrudException.class);
+ thrown.expectMessage("MANY2ONE multiplicity rule broken for Edge:vserver:pserver:tosca.relationships.HostedOn");
+
+ Map<String, List<Edge>> vertexMap = getEdgesForVertex(MultiplicityType.MANY2ONE, false);
+ MultiplicityValidator.validatePayloadMultiplicity(EdgePayload.fromJson(postEdgePayload),
+ vertexMap.get("source"), vertexMap.get("target"),
+ "tosca.relationships.HostedOn", "v11");
+ }
+
+ @Test
+ public void testIsVertexValidForMultiplicityType() throws CrudException {
+
+ Map<String, List<Edge>> vertexMap = getEdgesForVertex(MultiplicityType.MANY2MANY, true);
+ Assert.assertTrue(MultiplicityValidator.isVertexValidForMultiplicityType(vertexMap.get("source"),
+ vertexMap.get("target"), MultiplicityType.MANY2MANY));
+
+ vertexMap = getEdgesForVertex(MultiplicityType.MANY2ONE, true);
+ Assert.assertTrue(MultiplicityValidator.isVertexValidForMultiplicityType(
+ vertexMap.get("source"), vertexMap.get("target"), MultiplicityType.MANY2ONE));
+
+ vertexMap = getEdgesForVertex(MultiplicityType.ONE2MANY, true);
+ Assert.assertTrue(MultiplicityValidator.isVertexValidForMultiplicityType(
+ vertexMap.get("source"), vertexMap.get("target"), MultiplicityType.ONE2MANY));
+
+ vertexMap = getEdgesForVertex(MultiplicityType.ONE2ONE, true);
+ Assert.assertTrue(MultiplicityValidator.isVertexValidForMultiplicityType(
+ vertexMap.get("source"), vertexMap.get("target"), MultiplicityType.ONE2ONE));
+
+ vertexMap = getEdgesForVertex(MultiplicityType.ONE2MANY, false);
+ Assert.assertFalse(MultiplicityValidator.isVertexValidForMultiplicityType(
+ vertexMap.get("source"), vertexMap.get("target"), MultiplicityType.ONE2MANY));
+
+ vertexMap = getEdgesForVertex(MultiplicityType.ONE2ONE, false);
+ Assert.assertFalse(MultiplicityValidator.isVertexValidForMultiplicityType(
+ vertexMap.get("source"), vertexMap.get("target"), MultiplicityType.ONE2ONE));
+ }
+
+ private Map<String, List<Edge>> getEdgesForVertex(MultiplicityType multiplicityType, boolean pass) {
+
+ Map<String, List<Edge>> vertexMap = new HashMap<String, List<Edge>>();
+ List<Edge> edgesForSourceVertex = new ArrayList<>();
+ List<Edge> edgesForTargetVertex = new ArrayList<>();
+
+ switch (multiplicityType) {
+ case MANY2MANY:
+ if (pass) {
+ Edge edge = new Edge.Builder("type").source(new Vertex.Builder("source").build())
+ .target(new Vertex.Builder("target").build()).build();
+ edgesForSourceVertex.add(edge);
+ edgesForTargetVertex.add(edge);
+ }
+ break;
+ case MANY2ONE:
+ if (pass) {
+ Edge edge = new Edge.Builder("type").source(new Vertex.Builder("source").build())
+ .target(new Vertex.Builder("target").build()).build();
+ edgesForTargetVertex.add(edge);
+ } else {
+ Edge edge = new Edge.Builder("type").source(new Vertex.Builder("source").build())
+ .target(new Vertex.Builder("target").build()).build();
+ edgesForSourceVertex.add(edge);
+ edgesForTargetVertex.add(edge);
+ }
+ break;
+ case ONE2MANY:
+ if (pass) {
+ Edge edge = new Edge.Builder("type").source(new Vertex.Builder("source").build())
+ .target(new Vertex.Builder("target").build()).build();
+ edgesForSourceVertex.add(edge);
+ } else {
+ Edge edge = new Edge.Builder("type").source(new Vertex.Builder("source").build())
+ .target(new Vertex.Builder("target").build()).build();
+ edgesForSourceVertex.add(edge);
+ edgesForTargetVertex.add(edge);
+ }
+ break;
+ case ONE2ONE:
+ if (!pass) {
+ Edge edge = new Edge.Builder("type").source(new Vertex.Builder("source").build())
+ .target(new Vertex.Builder("target").build()).build();
+ edgesForSourceVertex.add(edge);
+ edgesForTargetVertex.add(edge);
+ }
+ break;
+ }
+ vertexMap.put("source", edgesForSourceVertex);
+ vertexMap.put("target", edgesForTargetVertex);
+
+ return vertexMap;
+ }
+
+}