added schema validation tools
[aai/aai-common.git] / aai-schema-ingest / src / test / java / org / onap / aai / validation / edges / SingleContainmentValidationModuleTest.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.SingleContainmentValidationModule;
37
38 import com.jayway.jsonpath.DocumentContext;
39
40 public class SingleContainmentValidationModuleTest {
41         private static List<DocumentContext> ctxs;
42         private static SingleContainmentValidationModule validator;
43
44         @BeforeClass
45         public static void setUpBeforeClass() {
46                 Map<Version, List<String>> testRules = new HashMap<>();
47                 List<String> testFiles = new ArrayList<>();
48                 testFiles.add("src/test/resources/edgeRules/containsValidationTest.json");
49                 testRules.put(Version.getLatest(), testFiles);
50                 
51                 JsonIngestor ji = new JsonIngestor();
52                 ctxs = ji.ingest(testRules).get(Version.getLatest());
53                 validator = new SingleContainmentValidationModule();
54         }
55
56         @Test
57         public void testValid() {
58                 assertTrue("".equals(validator.validate("human|monster", ctxs)));
59         }
60
61         @Test
62         public void testValidWithNone() {
63                 assertTrue("".equals(validator.validate("bread|cheese", ctxs)));
64         }
65         
66         @Test
67         public void testInvalid() {
68                 assertTrue(validator.validate("box|cat", ctxs).contains("has multiple containment rules"));
69         }
70 }