added schema validation tools
[aai/aai-common.git] / aai-schema-ingest / src / test / java / org / onap / aai / validation / edges / UniqueLabelValidationModuleTest.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
23 package org.onap.aai.validation.edges;
24
25 import static org.junit.Assert.*;
26
27 import java.util.ArrayList;
28 import java.util.HashMap;
29 import java.util.List;
30 import java.util.Map;
31
32 import org.junit.BeforeClass;
33 import org.junit.Test;
34 import org.onap.aai.edges.JsonIngestor;
35 import org.onap.aai.setup.Version;
36 import org.onap.aai.validation.edges.UniqueLabelValidationModule;
37
38 import com.jayway.jsonpath.DocumentContext;
39
40 public class UniqueLabelValidationModuleTest {
41         private static List<DocumentContext> ctxs;
42         private static UniqueLabelValidationModule validator;
43         
44         @BeforeClass
45         public static void setup() {
46                 Map<Version, List<String>> testRules = new HashMap<>();
47                 List<String> testFiles = new ArrayList<>();
48                 testFiles.add("src/test/resources/edgeRules/labelValidationTest1.json");
49                 testFiles.add("src/test/resources/edgeRules/labelValidationTest2.json");
50                 testRules.put(Version.getLatest(), testFiles);
51                 
52                 JsonIngestor ji = new JsonIngestor();
53                 ctxs = ji.ingest(testRules).get(Version.getLatest());
54                 validator = new UniqueLabelValidationModule();
55         }
56
57         @Test
58         public void testValidSetOneFile() {
59                 assertTrue("".equals(validator.validate("human|monster", ctxs)));
60                 assertTrue("".equals(validator.validate("monster|human", ctxs)));
61         }
62         
63         @Test
64         public void testValidDupLabelButDiffPairs() {
65                 assertTrue("".equals(validator.validate("human|strange-and-interesting-plant", ctxs)));
66                 assertTrue("".equals(validator.validate("strange-and-interesting-plant|human", ctxs)));
67         }
68         
69         @Test
70         public void testValidAcrossFiles() {
71                 assertTrue("".equals(validator.validate("human|toaster", ctxs)));
72                 assertTrue("".equals(validator.validate("toaster|human", ctxs)));
73         }
74
75         @Test
76         public void testInvalidSetOneFileBothTypes() {
77                 assertTrue(validator.validate("sphinx|monster", ctxs).contains("has multiple rules using the same label"));
78                 assertTrue(validator.validate("monster|sphinx", ctxs).contains("has multiple rules using the same label"));
79         }
80         
81         @Test
82         public void testInvalidSetOneFileJustCousins() {
83                 assertTrue(validator.validate("griffin|hippogriff", ctxs).contains("has multiple rules using the same label"));
84                 assertTrue(validator.validate("hippogriff|griffin", ctxs).contains("has multiple rules using the same label"));
85         }
86         
87         @Test
88         public void testInvalidSetMultipleFiles() {
89                 assertTrue(validator.validate("lava|floor", ctxs).contains("has multiple rules using the same label"));
90                 assertTrue(validator.validate("floor|lava", ctxs).contains("has multiple rules using the same label"));
91         }
92         
93         @Test
94         public void testInvalidCopyInOtherFile() {
95                 assertTrue(validator.validate("badger|mushroom", ctxs).contains("has multiple rules using the same label"));
96         }
97 }