Initial code import
[msb/apigateway.git] / apiroute / apiroute-service / src / test / java / org / openo / msb / wrapper / util / JacksonJsonUtilTest.java
1 /**\r
2 * Copyright (C) 2016 ZTE, Inc. and others. All rights reserved. (ZTE)\r
3 *\r
4 * Licensed under the Apache License, Version 2.0 (the "License");\r
5 * you may not use this file except in compliance with the License.\r
6 * You may obtain a copy of the License at\r
7 *\r
8 * http://www.apache.org/licenses/LICENSE-2.0\r
9 *\r
10 * Unless required by applicable law or agreed to in writing, software\r
11 * distributed under the License is distributed on an "AS IS" BASIS,\r
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
13 * See the License for the specific language governing permissions and\r
14 * limitations under the License.\r
15 */\r
16 package org.openo.msb.wrapper.util;\r
17 \r
18 import org.junit.Assert;\r
19 import org.junit.Test;\r
20 import org.openo.msb.api.RouteServer;\r
21 \r
22 \r
23 public class JacksonJsonUtilTest {\r
24     @Test\r
25     public void testBeanToJson(){\r
26         try{\r
27             RouteServer server=new RouteServer("127.0.0.1","80");\r
28             String json=JacksonJsonUtil.beanToJson(server);\r
29             Assert.assertEquals("{\"ip\":\"127.0.0.1\",\"port\":\"80\",\"weight\":0}",json);\r
30         }\r
31         catch(Exception e){\r
32             Assert.fail("Exception" + e.getMessage());\r
33         }\r
34     }\r
35     \r
36     @Test\r
37     public void testJsonToBean(){\r
38         try{\r
39             String json="{\"ip\":\"127.0.0.1\",\"port\":\"80\",\"weight\":0}";\r
40             RouteServer server=(RouteServer) JacksonJsonUtil.jsonToBean(json, RouteServer.class);\r
41             Assert.assertEquals("127.0.0.1",server.getIp());\r
42             Assert.assertEquals("80",server.getPort());\r
43         }\r
44         catch(Exception e){\r
45             Assert.fail("Exception" + e.getMessage());\r
46         }\r
47     }\r
48 }\r