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());
}
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);
}
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);
}
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);
}
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);
}
Aggregations