Update schema service to fail to start
[aai/aai-common.git] / aai-schema-ingest / src / test / java / org / onap / aai / testutils / ConfigTranslatorForWiringTest.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.testutils;
22
23 import org.onap.aai.setup.ConfigTranslator;
24 import org.onap.aai.setup.SchemaLocationsBean;
25 import org.onap.aai.setup.SchemaVersion;
26 import org.onap.aai.setup.SchemaConfigVersions;
27 import java.util.ArrayList;
28 import java.util.List;
29 import java.util.Map;
30 import java.util.TreeMap;
31
32 public class ConfigTranslatorForWiringTest extends ConfigTranslator {
33
34     public ConfigTranslatorForWiringTest(SchemaLocationsBean bean, SchemaConfigVersions schemaVersions) {
35         super(bean, schemaVersions);
36     }
37
38     @Override
39     public Map<SchemaVersion, List<String>> getNodeFiles() {
40
41         String f = bean.getNodeDirectory() + "test_business_v10.xml";
42         List<String> files = new ArrayList<>();
43         files.add(f);
44         Map<SchemaVersion, List<String>> mp = new TreeMap<>();
45         mp.put(new SchemaVersion("v10"), files);
46         return mp;
47     }
48
49     @Override
50     public Map<SchemaVersion, List<String>> getEdgeFiles() {
51         String f = bean.getEdgeDirectory() + "test.json";
52         List<String> files = new ArrayList<>();
53         files.add(f);
54         Map<SchemaVersion, List<String>> mp = new TreeMap<>();
55         mp.put(new SchemaVersion("v10"), files);
56         return mp;
57     }
58
59 }