7e6dacee0e2d386dd3bd2f9fd422e14f841717c0
[aai/aai-common.git] / aai-core / src / test / java / org / openecomp / aai / introspection / MoxyEngineTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * org.openecomp.aai
4  * ================================================================================
5  * Copyright (C) 2017 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.openecomp.aai.introspection;
22
23 import org.eclipse.persistence.dynamic.DynamicEntity;
24 import org.eclipse.persistence.jaxb.UnmarshallerProperties;
25 import org.eclipse.persistence.jaxb.dynamic.DynamicJAXBContext;
26 import org.junit.BeforeClass;
27 import org.junit.Test;
28 import org.openecomp.aai.introspection.exceptions.AAIUnknownObjectException;
29 import org.openecomp.aai.serialization.queryformats.QueryFormatTestHelper;
30 import org.openecomp.aai.util.AAIConstants;
31
32 import javax.xml.bind.JAXBException;
33 import javax.xml.bind.Unmarshaller;
34 import java.io.StringReader;
35
36 public class MoxyEngineTest extends IntrospectorTestSpec {
37
38         /**
39          * Configure.
40          * @throws Exception 
41          * @throws SecurityException 
42          * @throws NoSuchFieldException 
43          */
44         @BeforeClass
45         public static void configure() throws NoSuchFieldException, SecurityException, Exception {
46                 System.setProperty("AJSC_HOME", ".");
47                 System.setProperty("BUNDLECONFIG_DIR", "bundleconfig-local");
48                 QueryFormatTestHelper.setFinalStatic(AAIConstants.class.getField("AAI_HOME_ETC_OXM"), "src/test/resources/org/openecomp/aai/introspection/");
49         }
50         
51         /**
52          * Container object.
53          * @throws AAIUnknownObjectException
54          */
55         @Test
56         public void containerObject() throws AAIUnknownObjectException {
57                 
58         Loader loader = LoaderFactory.createLoaderForVersion(ModelType.MOXY, Version.v9);
59         
60         Introspector obj = loader.introspectorFromName("port-groups");
61
62         this.containerTestSet(obj);
63         
64         }
65         
66         
67         
68 }