Merge "Convert cloud region to esr edge"
[aai/aai-common.git] / aai-schema-ingest / src / test / java / org / onap / aai / validation / edges / CousinDefaultingValidationModuleTest.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.CousinDefaultingValidationModule;
37
38 import com.jayway.jsonpath.DocumentContext;
39
40 public class CousinDefaultingValidationModuleTest {
41         private static List<DocumentContext> ctxs;
42         private static CousinDefaultingValidationModule 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/cousinDefaultValidationTest.json");
49                 testRules.put(Version.getLatest(), testFiles);
50                 
51                 JsonIngestor ji = new JsonIngestor();
52                 ctxs = ji.ingest(testRules).get(Version.getLatest());
53                 validator = new CousinDefaultingValidationModule();
54         }
55         
56         @Test
57         public void testValidCousins() {
58                 assertTrue("".equals(validator.validate("boop|beep", ctxs)));
59         }
60
61         @Test
62         public void testValidBoth() {
63                 assertTrue("".equals(validator.validate("monster|human", ctxs)));
64         }
65
66         @Test
67         public void testValidSingleContains() {
68                 assertTrue("".equals(validator.validate("family|baby", ctxs)));
69         }
70         
71         @Test
72         public void testInvalidTooManyDefaults() {
73                 assertTrue(validator.validate("sheep|wool", ctxs).contains("Multiple set"));
74         }
75         
76         @Test
77         public void testInvalidNoDefaults() {
78                 assertTrue(validator.validate("cloth|thread", ctxs).contains("None set"));
79         }
80 }