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