ae7c23d7419d9010ced7ed881aa3b472b0ec010e
[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-18 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
21 package org.onap.aai.validation.edges;
22
23 import static org.junit.Assert.*;
24
25 import java.util.*;
26
27 import org.junit.BeforeClass;
28 import org.junit.Test;
29 import org.onap.aai.edges.JsonIngestor;
30 import org.onap.aai.setup.SchemaVersion;
31
32 import com.jayway.jsonpath.DocumentContext;
33
34 public class SingleContainmentValidationModuleTest {
35         private static List<DocumentContext> ctxs;
36         private static SingleContainmentValidationModule validator;
37         public static final SchemaVersion LATEST = new SchemaVersion("v14");
38
39         @BeforeClass
40         public static void setUpBeforeClass() {
41                 Map<SchemaVersion, List<String>> testRules = new TreeMap<>();
42                 List<String> testFiles = new ArrayList<>();
43                 testFiles.add("src/test/resources/edgeRules/containsValidationTest.json");
44                 testRules.put(LATEST, testFiles);
45                 
46                 JsonIngestor ji = new JsonIngestor();
47                 ctxs = ji.ingest(testRules).get(LATEST);
48                 validator = new SingleContainmentValidationModule();
49         }
50
51         @Test
52         public void testValid() {
53                 assertTrue("".equals(validator.validate("human|monster", ctxs)));
54         }
55
56         @Test
57         public void testValidWithNone() {
58                 assertTrue("".equals(validator.validate("bread|cheese", ctxs)));
59         }
60         
61         @Test
62         public void testInvalid() {
63                 assertTrue(validator.validate("box|cat", ctxs).contains("has multiple containment rules"));
64         }
65 }