bc51685baf5fe7471cec1890a65b72af293d0252
[so.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
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.mso.camunda.tests;
22
23
24 import static org.junit.Assert.assertEquals;
25
26 import java.io.IOException;
27
28 import org.codehaus.jackson.JsonGenerationException;
29 import org.codehaus.jackson.map.DeserializationConfig;
30 import org.codehaus.jackson.map.JsonMappingException;
31 import org.codehaus.jackson.map.ObjectMapper;
32 import org.junit.Test;
33
34 import org.openecomp.mso.apihandler.camundabeans.CamundaResponse;
35
36 /**
37  * This class implements test methods of Camunda Beans.
38  */
39 public class CamundaResponseTest {
40
41     @Test
42     public final void testDeserialization() throws JsonGenerationException,
43             JsonMappingException, IOException {
44         ObjectMapper mapper = new ObjectMapper(); // can reuse, share globally
45         mapper.enable(DeserializationConfig.Feature.ACCEPT_SINGLE_VALUE_AS_ARRAY);
46
47         String responseBody = "{ \"response\": \"<xml>xml</xml>\"," +
48                 "\"messageCode\": 200," +
49                 "\"message\": \"Successfully started the process\"," +
50                 "\"processInstanceID\":null,\"variables\":null}";
51
52         CamundaResponse response = mapper.readValue(responseBody, CamundaResponse.class);
53         assertEquals(response.toString(), "CamundaResponse [response=<xml>xml</xml>, messageCode=200, message=Successfully started the process]");
54
55     }
56
57 }