8d27e54892d54000833dfd34b79ff6feb954f2c0
[so.git] / adapters / mso-adapters-rest-interface / src / test / java / org / onap / so / openstack / mappers / JAXBMarshallingTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 - 2019 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.onap.so.openstack.mappers;
22
23 import static org.junit.Assert.assertEquals;
24 import java.io.IOException;
25 import java.nio.file.Files;
26 import java.nio.file.Paths;
27 import javax.xml.bind.JAXBContext;
28 import javax.xml.bind.JAXBException;
29 import org.junit.Test;
30 import org.onap.so.adapters.vnfrest.CreateVfModuleRequest;
31
32
33 public class JAXBMarshallingTest {
34
35
36     @Test
37     public void xmlMarshalTest() throws IOException, JAXBException {
38         JAXBContext context = JAXBContext.newInstance(CreateVfModuleRequest.class);
39
40         CreateVfModuleRequest request = (CreateVfModuleRequest) context.createUnmarshaller().unmarshal(
41                 Files.newBufferedReader(Paths.get("src/test/resources/createVfModuleRequest-with-params.xml")));
42
43         assertEquals("ubuntu-16-04-cloud-amd64", request.getVfModuleParams().get("vcpe_image_name"));
44         assertEquals("10.2.0.0/24", request.getVfModuleParams().get("cpe_public_net_cidr"));
45         assertEquals("", request.getVfModuleParams().get("workload_context"));
46
47     }
48
49 }