/* * 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 com.google.gson.Gson; import com.google.gson.GsonBuilder; import com.google.gson.InstanceCreator; import com.google.gson.reflect.TypeToken; import junit.framework.TestCase; import java.lang.reflect.Type; import java.util.Collection; import java.util.LinkedHashMap; import java.util.Map; import java.util.TreeMap; /** * 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 testMapDeserializationEmpty() { Type typeOfMap = new TypeToken>() {}.getType(); Map map = gson.fromJson("{}", typeOfMap); assertTrue(map.isEmpty()); } public void testMapSerializationWithNullValue() { Map map = new LinkedHashMap(); map.put("abc", null); Type typeOfMap = new TypeToken>() {}.getType(); String json = gson.toJson(map, typeOfMap); // Maps are represented as JSON objects, so ignoring null field assertEquals("{}", json); } public void testMapDeserializationWithNullValue() { Type typeOfMap = new TypeToken>() {}.getType(); Map map = gson.fromJson("{\"abc\":null}", typeOfMap); assertEquals(1, map.size()); assertNull(map.get("abc")); } public void testMapSerializationWithNullValueButSerializeNulls() { gson = new GsonBuilder().serializeNulls().create(); Map map = new LinkedHashMap(); map.put("abc", null); Type typeOfMap = new TypeToken>() {}.getType(); String json = gson.toJson(map, typeOfMap); assertEquals("{\"abc\":null}", json); } public void testMapSerializationWithNullKey() { Map map = new LinkedHashMap(); map.put(null, 123); Type typeOfMap = new TypeToken>() {}.getType(); String json = gson.toJson(map, typeOfMap); assertEquals("{\"null\":123}", json); } public void testMapDeserializationWithNullKey() { Type typeOfMap = new TypeToken>() {}.getType(); Map map = gson.fromJson("{\"null\":123}", typeOfMap); assertEquals(1, map.size()); assertNull(map.get(null)); } public void testMapSerializationWithIntegerKeys() { Map map = new LinkedHashMap(); map.put(123, "456"); Type typeOfMap = new TypeToken>() {}.getType(); String json = gson.toJson(map, typeOfMap); assertEquals("{\"123\":\"456\"}", json); } public void testMapDeserializationWithIntegerKeys() { Type typeOfMap = new TypeToken>() {}.getType(); Map map = gson.fromJson("{\"123\":\"456\"}", typeOfMap); assertEquals(1, map.size()); assertTrue(map.containsKey(123)); assertEquals("456", map.get(123)); } 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")); } /** * Created in response to http://code.google.com/p/google-gson/issues/detail?id=99 */ private static class ClassWithAMap { Map map = new TreeMap(); } /** * Created in response to http://code.google.com/p/google-gson/issues/detail?id=99 */ public void testMapSerializationWithNullValues() { ClassWithAMap target = new ClassWithAMap(); target.map.put("name1", null); target.map.put("name2", "value2"); String json = gson.toJson(target); assertFalse(json.contains("name1")); assertTrue(json.contains("name2")); } /** * Created in response to http://code.google.com/p/google-gson/issues/detail?id=99 */ public void testMapSerializationWithNullValuesSerialized() { Gson gson = new GsonBuilder().serializeNulls().create(); ClassWithAMap target = new ClassWithAMap(); target.map.put("name1", null); target.map.put("name2", "value2"); String json = gson.toJson(target); assertTrue(json.contains("name1")); assertTrue(json.contains("name2")); } public void testMapSerializationWithWildcardValues() { Map> map = new LinkedHashMap>(); map.put("test", null); Type typeOfMap = new TypeToken>>() {}.getType(); String json = gson.toJson(map, typeOfMap); assertEquals("{}", json); } public void testMapDeserializationWithWildcardValues() { Type typeOfMap = new TypeToken>() {}.getType(); Map map = gson.fromJson("{\"test\":123}", typeOfMap); assertEquals(1, map.size()); assertEquals(new Long(123L), map.get("test")); } private static class MyMap extends LinkedHashMap { private static final long serialVersionUID = 1L; int foo = 10; } }