package com.alibaba.json.bvt.parser.deser; import java.util.Locale; import org.junit.Assert; import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.parser.DefaultJSONParser; import com.alibaba.fastjson.parser.ParserConfig; import com.alibaba.fastjson.serializer.MiscCodec; import junit.framework.TestCase; public class LocaleTest extends TestCase { public void test_0() throws Exception { String input = JSON.toJSONString(Locale.US); Assert.assertEquals(Locale.US, JSON.parseObject(input, Locale.class)); } public void test_1() throws Exception { Locale l1 = new Locale("l1"); String input = JSON.toJSONString(l1); Assert.assertEquals(l1, JSON.parseObject(input, Locale.class)); } public void test_2() throws Exception { Locale l1 = new Locale("l1", "l2", "l3"); String input = JSON.toJSONString(l1); Assert.assertEquals(l1, JSON.parseObject(input, Locale.class)); } public void test_null() throws Exception { String input = "null"; DefaultJSONParser parser = new DefaultJSONParser(input, ParserConfig.getGlobalInstance(), JSON.DEFAULT_PARSER_FEATURE); MiscCodec deser = new MiscCodec(); Assert.assertNull(deser.deserialze(parser, null, null)); } }