added schema validation tools
[aai/aai-common.git] / aai-schema-ingest / src / test / java / org / onap / aai / edges / JsonIngestorTest.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.edges;
24
25 import static org.junit.Assert.*;
26
27 import java.util.ArrayList;
28 import java.util.EnumMap;
29 import java.util.List;
30 import java.util.Map;
31
32 import org.junit.Test;
33 import org.onap.aai.setup.Version;
34
35 import com.jayway.jsonpath.DocumentContext;
36 import com.jayway.jsonpath.Filter;
37 import static com.jayway.jsonpath.Criteria.where;
38 import static com.jayway.jsonpath.Filter.filter;
39
40 public class JsonIngestorTest {
41
42         @Test
43         public void test() {
44                 //setup
45                 List<String> files = new ArrayList<>();
46                 files.add("src/test/resources/edgeRules/test.json");
47                 files.add("src/test/resources/edgeRules/test2.json");
48                 files.add("src/test/resources/edgeRules/otherTestRules.json");
49                 Map<Version, List<String>> input = new EnumMap<>(Version.class);
50                 input.put(Version.getLatest(), files);
51                 
52                 List<String> files2 = new ArrayList<>();
53                 files2.add("src/test/resources/edgeRules/test.json");
54                 input.put(Version.V10, files2);
55                 
56                 List<String> files3 = new ArrayList<>();
57                 files3.add("src/test/resources/edgeRules/test3.json");
58                 files3.add("src/test/resources/edgeRules/defaultEdgesTest.json");
59                 input.put(Version.V11, files3);
60                 
61                 //test
62                 JsonIngestor ji = new JsonIngestor();
63                 Map<Version, List<DocumentContext>> results = ji.ingest(input);
64                 
65                 assertTrue(results.entrySet().size() == 3);
66                 assertTrue(results.get(Version.getLatest()).size() == 3);
67                 assertTrue(results.get(Version.V11).size() == 2);
68                 assertTrue(results.get(Version.V10).size() == 1);
69                 
70                 Filter f = filter(where("from").is("foo").and("contains-other-v").is("NONE"));
71                 List<Map<String, String>> filterRes = results.get(Version.V10).get(0).read("$.rules.[?]",f);
72                 assertTrue(filterRes.size() == 2);
73         }
74
75 }