Change the header to SO
[so.git] / mso-api-handlers / mso-api-handler-common / src / test / java / org / openecomp / mso / camunda / tests / CamundaResponseTest.java
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  *
40  */
41 public class CamundaResponseTest {
42
43         @Test
44         public final void testDeserialization() throws JsonGenerationException,
45                         JsonMappingException, IOException {
46                 ObjectMapper mapper = new ObjectMapper(); // can reuse, share globally
47                 mapper.enable(DeserializationConfig.Feature.ACCEPT_SINGLE_VALUE_AS_ARRAY);
48                 
49                 String responseBody = "{ \"response\": \"<xml>xml</xml>\","+
50                                   "\"messageCode\": 200,"+
51                                   "\"message\": \"Successfully started the process\"," +
52                                   "\"processInstanceID\":null,\"variables\":null}";
53         
54                 CamundaResponse response = mapper.readValue(responseBody, CamundaResponse.class);
55                 assertEquals(response.toString(), "CamundaResponse [response=<xml>xml</xml>, messageCode=200, message=Successfully started the process]");
56
57         }
58
59 }