always convert values toString for xml marshalling
[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 java.util.Arrays;
28 import javax.xml.bind.JAXBContext;
29 import javax.xml.bind.JAXBException;
30 import org.junit.Test;
31 import org.onap.so.adapters.vnfrest.CreateVfModuleRequest;
32 import com.fasterxml.jackson.databind.ObjectMapper;
33
34
35 public class JAXBMarshallingTest {
36
37
38     @Test
39     public void xmlUnMarshalTest() throws IOException, JAXBException {
40         JAXBContext context = JAXBContext.newInstance(CreateVfModuleRequest.class);
41
42         CreateVfModuleRequest request = (CreateVfModuleRequest) context.createUnmarshaller().unmarshal(
43                 Files.newBufferedReader(Paths.get("src/test/resources/createVfModuleRequest-with-params.xml")));
44
45         assertEquals("ubuntu-16-04-cloud-amd64", request.getVfModuleParams().get("vcpe_image_name"));
46         assertEquals("10.2.0.0/24", request.getVfModuleParams().get("cpe_public_net_cidr"));
47         assertEquals("", request.getVfModuleParams().get("workload_context"));
48         assertEquals("[\"a\",\"b\",\"c\"]", request.getVfModuleParams().get("raw-json-param"));
49     }
50
51     @Test
52     public void xmlMarshalTest() throws IOException, JAXBException {
53
54         CreateVfModuleRequest request = new CreateVfModuleRequest();
55         request.getVfModuleParams().put("test-null", null);
56         request.getVfModuleParams().put("test array", Arrays.asList("a", "b", "c"));
57
58         assertEquals("documents are equal",
59                 new String(Files
60                         .readAllBytes(Paths.get("src/test/resources/VfRequest-marshalled-with-complex-object.xml"))),
61                 request.toXmlString());
62
63     }
64
65 }