8a0936693cb2599135587508cfa9448f050d1f4c
[aai/aai-common.git] / aai-core / src / test / java / org / onap / aai / DataLinkSetup.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 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;
22
23 import java.util.Map;
24
25 import org.junit.BeforeClass;
26 import org.junit.ClassRule;
27 import org.junit.Rule;
28 import org.onap.aai.config.*;
29 import org.onap.aai.edges.EdgeIngestor;
30 import org.onap.aai.introspection.LoaderFactory;
31 import org.onap.aai.introspection.MoxyLoader;
32 import org.onap.aai.nodes.NodeIngestor;
33 import org.onap.aai.rest.db.HttpEntry;
34 import org.onap.aai.serialization.db.EdgeSerializer;
35 import org.onap.aai.serialization.queryformats.QueryFormatTestHelper;
36 import org.onap.aai.setup.AAIConfigTranslator;
37 import org.onap.aai.setup.SchemaLocationsBean;
38 import org.onap.aai.setup.SchemaVersion;
39 import org.onap.aai.setup.SchemaVersions;
40 import org.onap.aai.testutils.TestUtilConfigTranslatorforDataLink;
41 import org.onap.aai.util.AAIConstants;
42 import org.springframework.beans.factory.annotation.Autowired;
43 import org.springframework.beans.factory.annotation.Value;
44 import org.springframework.test.annotation.DirtiesContext;
45 import org.springframework.test.context.ContextConfiguration;
46 import org.springframework.test.context.TestPropertySource;
47 import org.springframework.test.context.junit4.rules.SpringClassRule;
48 import org.springframework.test.context.junit4.rules.SpringMethodRule;
49
50 @ContextConfiguration(
51         classes = {ConfigConfiguration.class, TestUtilConfigTranslatorforDataLink.class, EdgeIngestor.class,
52                 EdgeSerializer.class, NodeIngestor.class, SpringContextAware.class, IntrospectionConfig.class,
53                 RestBeanConfig.class, XmlFormatTransformerConfiguration.class})
54 @TestPropertySource(
55         properties = {"schema.uri.base.path = /aai", "schema.xsd.maxoccurs = 5000", "schema.version.api.default = v4",
56                 "schema.version.edge.label.start = v4", "schema.version.depth.start = v3",
57                 "schema.version.app.root.start = v4", "schema.version.related.link.start = v4",
58                 "schema.version.namespace.change.start = v4", "schema.version.list = v1,v2,v3,v4",
59                 "schema.translator.list = config"})
60 @DirtiesContext(classMode = DirtiesContext.ClassMode.BEFORE_CLASS)
61 public abstract class DataLinkSetup {
62
63     @ClassRule
64     public static final SpringClassRule springClassRule = new SpringClassRule();
65
66     @Rule
67     public final SpringMethodRule springMethodRule = new SpringMethodRule();
68
69     @Autowired
70     protected Map<SchemaVersion, MoxyLoader> moxyLoaderInstance;
71
72     @Autowired
73     protected HttpEntry traversalHttpEntry;
74
75     @Autowired
76     protected HttpEntry traversalUriHttpEntry;
77
78     @Autowired
79     protected NodeIngestor nodeIngestor;
80
81     @Autowired
82     protected LoaderFactory loaderFactory;
83
84     @Autowired
85     protected SchemaVersions schemaVersions;
86
87     @Value("${schema.uri.base.path}")
88     protected String basePath;
89
90     @Value("${schema.xsd.maxoccurs}")
91     protected String maxOccurs;
92
93     protected static final String SERVICE_NAME = "JUNIT";
94
95     @BeforeClass
96     public static void setupBundleconfig() throws Exception {
97         System.setProperty("AJSC_HOME", ".");
98         System.setProperty("BUNDLECONFIG_DIR", "src/test/resources/bundleconfig-local");
99         System.setProperty("aai.service.name", SERVICE_NAME);
100         QueryFormatTestHelper.setFinalStatic(AAIConstants.class.getField("AAI_HOME_ETC_OXM"),
101                 "src/test/resources/bundleconfig-local/etc/oxm/");
102     }
103
104 }