Merge "Reorder modifiers"
[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 org.junit.Test;
27 import org.openecomp.mso.apihandler.camundabeans.CamundaResponse;
28 import org.openecomp.mso.utils.RootIgnoringObjectMapper;
29
30 import com.fasterxml.jackson.databind.ObjectMapper;
31
32 /**
33  * This class implements test methods of Camunda Beans.
34  * 
35  *
36  */
37 public class CamundaResponseTest {
38
39         @Test
40         public final void testDeserializationWithoutRootElement() throws Exception {
41
42                 ObjectMapper mapper = new RootIgnoringObjectMapper<CamundaResponse>(CamundaResponse.class);
43
44                 String content = "{"
45                         + "\"messageCode\":202"
46                         + ",\"message\":\"Successfully started the process\""
47                         + ",\"content\":\"<xml>xml</xml>\""
48                         + ",\"processInstanceId\":\"4d3b3201a7ce\""
49                         + ",\"variables\":null"
50                         + "}";
51
52                 CamundaResponse response = mapper.readValue(content, CamundaResponse.class);
53
54                 assertEquals(
55                         "CamundaResponse[processInstanceId=4d3b3201a7ce,messageCode=202,message=Successfully started the process,variables=null,content=<xml>xml</xml>]",
56                         response.toString());
57         }
58
59         @Test
60         public final void testDeserializationWithRootElement() throws Exception {
61
62                 ObjectMapper mapper = new RootIgnoringObjectMapper<CamundaResponse>(CamundaResponse.class);
63
64                 String content = "{\"WorkflowResponse\":{"
65                         + "\"messageCode\":202"
66                         + ",\"message\":\"Successfully started the process\""
67                         + ",\"content\":\"<xml>xml</xml>\""
68                         + ",\"processInstanceId\":\"4d3b3201a7ce\""
69                         + ",\"variables\":null"
70                         + "}}";
71
72                 CamundaResponse response = mapper.readValue(content, CamundaResponse.class);
73
74                 assertEquals(
75                         "CamundaResponse[processInstanceId=4d3b3201a7ce,messageCode=202,message=Successfully started the process,variables=null,content=<xml>xml</xml>]",
76                         response.toString());
77         }
78 }