Search in sources :

Example 26 with DefaultJSONParser

use of com.alibaba.fastjson.parser.DefaultJSONParser in project fastjson by alibaba.

the class DefaultExtJSONParserTest_1 method f_test_2.

public void f_test_2() throws Exception {
    TestEntity a = new TestEntity();
    a.setF1(true);
    a.setF2(Boolean.TRUE);
    a.setF3((byte) 123);
    a.setF4((byte) 123);
    a.setF5((short) 123);
    a.setF6((short) 123);
    a.setF7((int) 123);
    a.setF8((int) 123);
    a.setF9((long) 123);
    a.setF10((long) 123);
    a.setF11(new BigInteger("123"));
    a.setF12(new BigDecimal("123"));
    a.setF13("abc");
    a.setF14(null);
    a.setF15(12.34F);
    a.setF16(12.35F);
    a.setF17(12.345D);
    a.setF18(12.345D);
    String text = JSON.toJSONString(a);
    System.out.println(text);
    TestEntity b = new TestEntity();
    {
        DefaultJSONParser parser = new DefaultJSONParser(text);
        parser.parseObject(b);
    }
    Assert.assertEquals("f1", a.isF1(), b.isF1());
    Assert.assertEquals("f2", a.getF2(), b.getF2());
    Assert.assertEquals("f3", a.getF3(), b.getF3());
    Assert.assertEquals("f4", a.getF4(), b.getF4());
    Assert.assertEquals("f5", a.getF5(), b.getF5());
    Assert.assertEquals("f6", a.getF6(), b.getF6());
    Assert.assertEquals("f7", a.getF7(), b.getF7());
    Assert.assertEquals("f8", a.getF8(), b.getF8());
    Assert.assertEquals("f9", a.getF9(), b.getF9());
    Assert.assertEquals(a.getF10(), b.getF10());
    Assert.assertEquals(a.getF11(), b.getF11());
    Assert.assertEquals(a.getF12(), b.getF12());
    Assert.assertEquals(a.getF13(), b.getF13());
    Assert.assertEquals(a.getF14(), b.getF14());
    Assert.assertEquals(a.getF15(), b.getF15());
    Assert.assertEquals(a.getF16(), b.getF16());
    Assert.assertEquals(a.getF17(), b.getF17());
    Assert.assertEquals(a.getF18(), b.getF18());
}
Also used : TestEntity(com.alibaba.json.test.entity.TestEntity) BigInteger(java.math.BigInteger) DefaultJSONParser(com.alibaba.fastjson.parser.DefaultJSONParser) BigDecimal(java.math.BigDecimal)

Example 27 with DefaultJSONParser

use of com.alibaba.fastjson.parser.DefaultJSONParser in project fastjson by alibaba.

the class DefaultExtJSONParserTest_2 method test_error_3.

public void test_error_3() throws Exception {
    JSONException error = null;
    try {
        DefaultJSONParser parser = new DefaultJSONParser("{");
        parser.config(Feature.AllowUnQuotedFieldNames, true);
        parser.parseObject(A.class);
    } catch (JSONException e) {
        error = e;
    }
    Assert.assertNotNull(error);
}
Also used : JSONException(com.alibaba.fastjson.JSONException) DefaultJSONParser(com.alibaba.fastjson.parser.DefaultJSONParser)

Example 28 with DefaultJSONParser

use of com.alibaba.fastjson.parser.DefaultJSONParser in project fastjson by alibaba.

the class DefaultExtJSONParserTest_2 method test_error_5.

public void test_error_5() throws Exception {
    JSONException error = null;
    try {
        DefaultJSONParser parser = new DefaultJSONParser("{a:3}");
        parser.config(Feature.AllowUnQuotedFieldNames, false);
        parser.parseObject(A.class);
    } catch (JSONException e) {
        error = e;
    }
    Assert.assertNotNull(error);
}
Also used : JSONException(com.alibaba.fastjson.JSONException) DefaultJSONParser(com.alibaba.fastjson.parser.DefaultJSONParser)

Example 29 with DefaultJSONParser

use of com.alibaba.fastjson.parser.DefaultJSONParser in project fastjson by alibaba.

the class DefaultExtJSONParserTest_2 method test_error_6.

public void test_error_6() throws Exception {
    JSONException error = null;
    try {
        DefaultJSONParser parser = new DefaultJSONParser("{'a':3}");
        parser.config(Feature.AllowSingleQuotes, false);
        parser.parseObject(A.class);
    } catch (JSONException e) {
        error = e;
    }
    Assert.assertNotNull(error);
}
Also used : JSONException(com.alibaba.fastjson.JSONException) DefaultJSONParser(com.alibaba.fastjson.parser.DefaultJSONParser)

Example 30 with DefaultJSONParser

use of com.alibaba.fastjson.parser.DefaultJSONParser in project fastjson by alibaba.

the class DefaultExtJSONParserTest_2 method test_error_0.

public void test_error_0() throws Exception {
    Exception error = null;
    try {
        String text = "[{\"old\":false,\"name\":\"校长\",\"age\":3,\"salary\":123456789.0123]";
        DefaultJSONParser parser = new DefaultJSONParser(text);
        parser.parseArray(User.class);
    } catch (Exception ex) {
        error = ex;
    }
    Assert.assertNotNull(error);
}
Also used : DefaultJSONParser(com.alibaba.fastjson.parser.DefaultJSONParser) JSONException(com.alibaba.fastjson.JSONException)

Aggregations

DefaultJSONParser (com.alibaba.fastjson.parser.DefaultJSONParser)242 JSONObject (com.alibaba.fastjson.JSONObject)35 JSONReaderScanner (com.alibaba.fastjson.parser.JSONReaderScanner)34 JSONException (com.alibaba.fastjson.JSONException)28 ArrayList (java.util.ArrayList)21 Reader (java.io.Reader)14 StringReader (java.io.StringReader)14 ParserConfig (com.alibaba.fastjson.parser.ParserConfig)10 BigDecimal (java.math.BigDecimal)10 Date (java.util.Date)10 List (java.util.List)9 Feature (com.alibaba.fastjson.parser.Feature)6 JSONArray (com.alibaba.fastjson.JSONArray)5 SerializerFeature (com.alibaba.fastjson.serializer.SerializerFeature)5 TypeUtils.castToString (com.alibaba.fastjson.util.TypeUtils.castToString)5 MiscCodec (com.alibaba.fastjson.serializer.MiscCodec)4 LinkedHashMap (java.util.LinkedHashMap)4 TypeReference (com.alibaba.fastjson.TypeReference)3 JSONLexer (com.alibaba.fastjson.parser.JSONLexer)3 NumberDeserializer (com.alibaba.fastjson.parser.deserializer.NumberDeserializer)3