34a6279b2b739372dacaf07eb80d4b006155de3c
[aai/aai-common.git] / aai-core / src / test / java / org / openecomp / aai / introspection / PojoInjestorTest.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 static org.junit.Assert.*;
24
25 import javax.xml.bind.JAXBContext;
26 import javax.xml.bind.JAXBException;
27 import javax.xml.bind.Marshaller;
28
29 import org.junit.BeforeClass;
30 import org.junit.Test;
31
32 import org.openecomp.aai.db.props.AAIProperties;
33
34 public class PojoInjestorTest {
35
36         @BeforeClass
37         public static void configure() {
38                 System.setProperty("AJSC_HOME", ".");
39                 System.setProperty("BUNDLECONFIG_DIR", "bundleconfig-local");
40         }
41         
42         @Test
43         public void getVersionTest() {
44                 String latestVersion = "org.openecomp.aai.yang.VnfImage";
45                 PojoInjestor testPI = new PojoInjestor();
46                 assertEquals("", AAIProperties.LATEST, testPI.getVersion(latestVersion));
47                 
48                 String oldVersion = "org.openecomp.aai.yang.v8.VnfImage";
49                 assertEquals("", Version.v8, testPI.getVersion(oldVersion));
50         }
51
52         @Test
53         public void getContextForVersionTest() {
54                 PojoInjestor testPI = new PojoInjestor();
55                 JAXBContext context = testPI.getContextForVersion(Version.v9);
56                 try {
57                         Marshaller marshaller = context.createMarshaller();
58                         //this will fail if the context wasn't initialized successfully (I think)
59                         marshaller.setProperty(org.eclipse.persistence.jaxb.MarshallerProperties.MEDIA_TYPE, "application/json");
60                 } catch (JAXBException e) {
61                         e.printStackTrace();
62                         fail("failed on setting marshaller property");
63                 }
64                 //if we get to here that means everything went ok
65                 assertTrue(true);
66         }
67 }