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