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