Use Schema Service for model ingestion
[aai/spike.git] / src / test / java / org / onap / aai / spike / OXMModelLoaderSetup.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017-2018 Amdocs
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *       http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21 package org.onap.aai.spike;
22
23 import java.util.ArrayList;
24 import java.util.Arrays;
25 import java.util.HashSet;
26 import java.util.List;
27 import java.util.Set;
28 import org.junit.Before;
29 import org.mockito.Mock;
30 import org.mockito.Mockito;
31 import org.onap.aai.edges.EdgeIngestor;
32 import org.onap.aai.nodes.NodeIngestor;
33 import org.onap.aai.setup.AAIConfigTranslator;
34 import org.onap.aai.setup.SchemaLocationsBean;
35 import org.onap.aai.setup.SchemaVersion;
36 import org.onap.aai.setup.SchemaVersions;
37 import org.onap.aai.setup.Translator;
38 import org.onap.aai.spike.schema.EdgePropsConfiguration;
39 import org.onap.aai.spike.schema.EdgeRulesLoader;
40 import org.onap.aai.spike.schema.OXMModelLoader;
41
42 public class OXMModelLoaderSetup {
43
44     private EdgeRulesLoader edgeRulesLoader;
45
46     private OXMModelLoader oxmModelLoader;
47
48     @Mock
49     private SchemaLocationsBean schemaLocationsBean;
50
51     @Mock
52     private SchemaVersions schemaVersions;
53
54     @Mock
55     private EdgePropsConfiguration edgePropsConfiguration;
56
57     private List<SchemaVersion> schemaVersionList = new ArrayList<>();
58
59     @Before
60     public void schemaBeanMockSetup() throws Exception {
61         schemaVersionList.add(new SchemaVersion("v11"));
62         schemaVersionList.add(new SchemaVersion("v12"));
63         schemaVersionList.add(new SchemaVersion("v13"));
64
65         Mockito.when(schemaVersions.getVersions()).thenReturn(schemaVersionList);
66         Mockito.when(schemaLocationsBean.getNodesInclusionPattern()).thenReturn(Arrays.asList(".*oxm(.*).xml"));
67         Mockito.when(schemaLocationsBean.getEdgesInclusionPattern()).thenReturn(Arrays.asList("DbEdgeRules_.*.json"));
68         Mockito.when(schemaLocationsBean.getNodeDirectory()).thenReturn("src/test/resources/multi-oxm/");
69         Mockito.when(schemaLocationsBean.getEdgeDirectory()).thenReturn("src/test/resources/rules");
70         Mockito.when(edgePropsConfiguration.getEdgePropsDir()).thenReturn("src/test/resources/edgeProps/");
71
72         AAIConfigTranslator aaiConfigTranslator = new AAIConfigTranslator(schemaLocationsBean, schemaVersions);
73         Set<Translator> translators = new HashSet<>();
74         translators.add(aaiConfigTranslator);
75         NodeIngestor nodeIngestor = new NodeIngestor(translators);
76         nodeIngestor.initialize();
77         EdgeIngestor edgeIngestor = new EdgeIngestor(translators);
78         edgeIngestor.initialize();
79         edgeRulesLoader = new EdgeRulesLoader(aaiConfigTranslator, edgeIngestor, edgePropsConfiguration);
80         oxmModelLoader = new OXMModelLoader(aaiConfigTranslator, nodeIngestor);
81     }
82
83 }