/* * Copyright (C) 2008 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.gson.functional; import java.lang.reflect.Type; import java.util.LinkedHashMap; import java.util.Map; import junit.framework.TestCase; import com.google.gson.Gson; import com.google.gson.GsonBuilder; import com.google.gson.InstanceCreator; import com.google.gson.reflect.TypeToken; /** * Functional test for Json serialization and deserialization for Maps * * @author Inderjeet Singh * @author Joel Leitch */ public class MapTest extends TestCase { private Gson gson; @Override protected void setUp() throws Exception { super.setUp(); gson = new Gson(); } public void testMapSerialization() { Map map = new LinkedHashMap(); map.put("a", 1); map.put("b", 2); Type typeOfMap = new TypeToken>() {}.getType(); String json = gson.toJson(map, typeOfMap); assertTrue(json.contains("\"a\":1")); assertTrue(json.contains("\"b\":2")); } public void testMapDeserialization() { String json = "{\"a\":1,\"b\":2}"; Type typeOfMap = new TypeToken>(){}.getType(); Map target = gson.fromJson(json, typeOfMap); assertEquals(1, target.get("a").intValue()); assertEquals(2, target.get("b").intValue()); } @SuppressWarnings("unchecked") public void testRawMapSerialization() { Map map = new LinkedHashMap(); map.put("a", 1); map.put("b", "string"); String json = gson.toJson(map); assertTrue(json.contains("\"a\":1")); assertTrue(json.contains("\"b\":\"string\"")); } public void testMapSerializationEmpty() { Map map = new LinkedHashMap(); Type typeOfMap = new TypeToken>() {}.getType(); String json = gson.toJson(map, typeOfMap); assertEquals("{}", json); } public void testParameterizedMapSubclassSerialization() { MyParameterizedMap map = new MyParameterizedMap(); map.put("a", "b"); Type type = new TypeToken>() {}.getType(); String json = gson.toJson(map, type); assertTrue(json.contains("\"a\":\"b\"")); } @SuppressWarnings("unchecked") public void testParameterizedMapSubclassDeserialization() { Type type = new TypeToken>() {}.getType(); Gson gson = new GsonBuilder().registerTypeAdapter(type, new InstanceCreator() { public MyParameterizedMap createInstance(Type type) { return new MyParameterizedMap(); } }).create(); String json = "{\"a\":1,\"b\":2}"; MyParameterizedMap map = gson.fromJson(json, type); assertEquals(1, map.get("a").intValue()); assertEquals(2, map.get("b").intValue()); } private static class MyParameterizedMap extends LinkedHashMap { private static final long serialVersionUID = 1L; int foo = 10; } public void testMapSubclassSerialization() { MyMap map = new MyMap(); map.put("a", "b"); String json = gson.toJson(map, MyMap.class); assertTrue(json.contains("\"a\":\"b\"")); } public void disable_testMapSubclassDeserialization() { Gson gson = new GsonBuilder().registerTypeAdapter(MyMap.class, new InstanceCreator(){ public MyMap createInstance(Type type) { return new MyMap(); } }).create(); String json = "{\"a\":1,\"b\":2}"; MyMap map = gson.fromJson(json, MyMap.class); assertEquals("1", map.get("a")); assertEquals("2", map.get("b")); } private static class MyMap extends LinkedHashMap { private static final long serialVersionUID = 1L; int foo = 10; } }