0eeb966b681209a1f59bb9337061acc935c2c5a0
[aai/aai-common.git] / aai-core / src / test / java / org / openecomp / aai / introspection / PojoLoaderTest.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 org.junit.BeforeClass;
26 import org.junit.Test;
27
28 import org.openecomp.aai.domain.yang.v9.VnfImage;
29 import org.openecomp.aai.introspection.exceptions.AAIUnmarshallingException;
30 import org.openecomp.aai.restcore.MediaType;
31
32 public class PojoLoaderTest {
33
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 test() {
43                 Loader pojoLoader = LoaderFactory.createLoaderForVersion(ModelType.POJO, Version.v9);
44                 String payload = "{\"vnf-image-uuid\":\"myuuid\",\"application\":\"testApp\",\"application-vendor\":\"testVendor\",\"application-version\":\"versionTest\"}";
45                 try {
46                         Introspector intro = pojoLoader.unmarshal("vnf-image", payload, MediaType.APPLICATION_JSON_TYPE);
47                         VnfImage myVnfImage = (VnfImage) intro.getUnderlyingObject();
48                         assertTrue("myuuid".equals(myVnfImage.getVnfImageUuid()));
49                         assertTrue("testApp".equals(myVnfImage.getApplication()));
50                         assertTrue("testVendor".equals(myVnfImage.getApplicationVendor()));
51                         assertTrue("versionTest".equals(myVnfImage.getApplicationVersion()));
52                 } catch (AAIUnmarshallingException e) {
53                         e.printStackTrace();
54                         fail("AAIUnmarshallingException thrown");
55                 }
56         }
57
58 }