8781d59c37250f0bdf8d31d4d6f56be77f4baf5b
[aai/aai-common.git] / aai-core / src / test / java / org / openecomp / aai / introspection / ReflectionEngineTest.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 java.io.ByteArrayInputStream;
24 import java.io.IOException;
25 import java.io.InputStream;
26 import java.nio.charset.StandardCharsets;
27
28 import javax.xml.bind.JAXBException;
29
30 import org.junit.BeforeClass;
31 import org.junit.Test;
32
33 import org.openecomp.aai.introspection.exceptions.AAIUnknownObjectException;
34 import org.openecomp.aai.restcore.CustomJacksonJaxBJsonProvider;
35
36 public class ReflectionEngineTest extends IntrospectorTestSpec {
37
38         /**
39          * Configure.
40          */
41         @BeforeClass
42         public static void configure() {
43                 System.setProperty("AJSC_HOME", "./src/test/resources");
44                 System.setProperty("BUNDLECONFIG_DIR", "bundleconfig-local");
45         }
46         
47         /**
48          * Container object.
49          *
50          * @throws InstantiationException the instantiation exception
51          * @throws IllegalAccessException the illegal access exception
52          * @throws ClassNotFoundException the class not found exception
53          * @throws AAIUnknownObjectException 
54          */
55         @Test
56         public void containerObject() throws InstantiationException, IllegalAccessException, ClassNotFoundException, AAIUnknownObjectException {
57                 Object javaObj = null;
58                 String className = "org.openecomp.aai.domain.yang.PortGroups";
59                 javaObj = Class.forName(className).newInstance();
60         
61         Introspector obj = IntrospectorFactory.newInstance(ModelType.POJO, javaObj);
62
63 //        this.containerTestSet(obj);
64         }
65 }