4f78f7bde8c363fa0045a49b082ed04019ae8cf4
[aai/aai-common.git] / aai-core / src / test / java / org / onap / aai / introspection / PojoInjestorTest.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 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  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
21  */
22 package org.onap.aai.introspection;
23
24 import org.junit.Test;
25 import org.onap.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         @Test
36         public void getVersionTest() {
37                 String latestVersion = "org.onap.aai.yang.VnfImage";
38                 PojoInjestor testPI = new PojoInjestor();
39                 assertEquals("", AAIProperties.LATEST, testPI.getVersion(latestVersion));
40                 
41                 String oldVersion = "org.onap.aai.yang.v8.VnfImage";
42                 assertEquals("", Version.v8, testPI.getVersion(oldVersion));
43         }
44
45         @Test
46         public void getContextForVersionTest() {
47                 PojoInjestor testPI = new PojoInjestor();
48                 JAXBContext context = testPI.getContextForVersion(Version.v9);
49                 try {
50                         Marshaller marshaller = context.createMarshaller();
51                         //this will fail if the context wasn't initialized successfully (I think)
52                         marshaller.setProperty(org.eclipse.persistence.jaxb.MarshallerProperties.MEDIA_TYPE, "application/json");
53                 } catch (JAXBException e) {
54                         e.printStackTrace();
55                         fail("failed on setting marshaller property");
56                 }
57                 //if we get to here that means everything went ok
58                 assertTrue(true);
59         }
60 }