Merge "[AAI] Fix doc config files"
[aai/aai-common.git] / aai-schema-abstraction / src / test / java / org / onap / aai / schemaif / oxm / OxmSchemaServiceSetup.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2019 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2019 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
22 package org.onap.aai.schemaif.oxm;
23
24 import java.util.ArrayList;
25 import java.util.Arrays;
26 import java.util.HashSet;
27 import java.util.List;
28 import java.util.Set;
29
30 import org.junit.Before;
31 import org.junit.runner.RunWith;
32 import org.mockito.Mock;
33 import org.mockito.Mockito;
34 import org.mockito.runners.MockitoJUnitRunner;
35 import org.onap.aai.edges.EdgeIngestor;
36 import org.onap.aai.nodes.NodeIngestor;
37 import org.onap.aai.setup.AAIConfigTranslator;
38 import org.onap.aai.setup.SchemaConfigVersions;
39 import org.onap.aai.setup.SchemaLocationsBean;
40 import org.onap.aai.setup.SchemaVersion;
41 import org.onap.aai.setup.Translator;
42
43 @RunWith(MockitoJUnitRunner.class)
44 public class OxmSchemaServiceSetup {
45
46     @Mock
47     private SchemaLocationsBean schemaLocationsBean;
48
49     @Mock
50     private SchemaConfigVersions schemaConfigVersions;
51
52     private EdgePropsConfiguration edgePropsConfiguration = new EdgePropsConfiguration();
53
54     private List<SchemaVersion> schemaVersionList = new ArrayList<>();
55
56     private OxmEdgeRulesLoader edgeLoader;
57     private OxmSchemaLoader vertexLoader;
58
59     @Before
60     public void schemaBeanMockSetup() throws Exception {
61         schemaVersionList.add(new SchemaVersion("v13"));
62
63         Mockito.when(schemaConfigVersions.getVersions()).thenReturn(schemaVersionList);
64         Mockito.when(schemaLocationsBean.getNodesInclusionPattern()).thenReturn(Arrays.asList(".*oxm(.*).xml"));
65         Mockito.when(schemaLocationsBean.getEdgesInclusionPattern()).thenReturn(Arrays.asList("DbEdgeRules_.*.json"));
66         Mockito.when(schemaLocationsBean.getNodeDirectory()).thenReturn("src/test/resources/oxm/oxm");
67         Mockito.when(schemaLocationsBean.getEdgeDirectory()).thenReturn("src/test/resources/oxm/edge-rules");
68
69         AAIConfigTranslator aaiConfigTranslator = new AAIConfigTranslator(schemaLocationsBean, schemaConfigVersions);
70         Set<Translator> translators = new HashSet<>();
71         translators.add(aaiConfigTranslator);
72         NodeIngestor nodeIngestor = new NodeIngestor(translators);
73         nodeIngestor.initialize();
74         EdgeIngestor edgeIngestor = new EdgeIngestor(translators);
75         edgeIngestor.initialize();
76
77         edgePropsConfiguration.setEdgePropsDir("src/test/resources/oxm/edge-props");
78         edgeLoader = new OxmEdgeRulesLoader(aaiConfigTranslator, edgeIngestor, edgePropsConfiguration);
79         vertexLoader = new OxmSchemaLoader(aaiConfigTranslator, nodeIngestor);
80     }
81
82 }