Ensure HttpEntry bean is request scoped in aai-common
[aai/aai-common.git] / aai-core / src / test / java / org / onap / aai / AAISetup.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.SchemaVersion;
38 import org.onap.aai.setup.SchemaVersions;
39 import org.onap.aai.util.AAIConstants;
40 import org.springframework.beans.factory.annotation.Autowired;
41 import org.springframework.beans.factory.annotation.Value;
42 import org.springframework.test.context.ContextConfiguration;
43 import org.springframework.test.context.TestPropertySource;
44 import org.springframework.test.context.junit4.rules.SpringClassRule;
45 import org.springframework.test.context.junit4.rules.SpringMethodRule;
46 import org.springframework.test.context.web.WebAppConfiguration;
47
48 @WebAppConfiguration
49 @ContextConfiguration(
50         classes = {ConfigConfiguration.class, AAIConfigTranslator.class, EdgeIngestor.class, EdgeSerializer.class,
51                 NodeIngestor.class, SpringContextAware.class, IntrospectionConfig.class, RestBeanConfig.class,
52                 XmlFormatTransformerConfiguration.class})
53 @TestPropertySource(
54         properties = {"schema.uri.base.path = /aai", "schema.xsd.maxoccurs = 5000", "schema.translator.list=config",
55                 "schema.nodes.location=src/test/resources/onap/oxm",
56                 "schema.edges.location=src/test/resources/onap/dbedgerules"})
57 public abstract class AAISetup {
58
59     @ClassRule
60     public static final SpringClassRule springClassRule = new SpringClassRule();
61
62     @Rule
63     public final SpringMethodRule springMethodRule = new SpringMethodRule();
64
65     @Autowired
66     protected Map<SchemaVersion, MoxyLoader> moxyLoaderInstance;
67
68     @Autowired
69     protected HttpEntry traversalHttpEntry;
70
71     @Autowired
72     protected HttpEntry traversalUriHttpEntry;
73
74     @Autowired
75     protected NodeIngestor nodeIngestor;
76
77     @Autowired
78     protected LoaderFactory loaderFactory;
79
80     @Autowired
81     protected SchemaVersions schemaVersions;
82
83     @Value("${schema.uri.base.path}")
84     protected String basePath;
85
86     @Value("${schema.xsd.maxoccurs}")
87     protected String maxOccurs;
88
89     protected static final String SERVICE_NAME = "JUNIT";
90
91     @BeforeClass
92     public static void setupBundleconfig() throws Exception {
93         System.setProperty("AJSC_HOME", ".");
94         System.setProperty("BUNDLECONFIG_DIR", "src/test/resources/bundleconfig-local");
95         System.setProperty("aai.service.name", SERVICE_NAME);
96         QueryFormatTestHelper.setFinalStatic(AAIConstants.class.getField("AAI_HOME_ETC_OXM"),
97                 "src/test/resources/bundleconfig-local/etc/oxm/");
98     }
99
100 }