Package com.alibaba.json.bvt

Source Code of com.alibaba.json.bvt.DefaultJSONParserTest

/*
* Copyright 1999-2101 Alibaba Group.
*
* 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.alibaba.json.bvt;

import java.util.HashMap;

import junit.framework.Assert;
import junit.framework.TestCase;

import com.alibaba.fastjson.parser.DefaultJSONParser;
import com.alibaba.fastjson.parser.Feature;

public class DefaultJSONParserTest extends TestCase {

  public void test_double() {
    DefaultJSONParser parser = new DefaultJSONParser("3.4");
    parser.config(Feature.UseBigDecimal, false);
    Assert.assertEquals("3.4", parser.getInput());
    Assert.assertEquals(false, parser.isEnabled(Feature.UseBigDecimal));
    Object result = parser.parse();
    Assert.assertEquals(3.4D, result);
  }

  public void test_error() {
    Exception error = null;
    try {
      DefaultJSONParser parser = new DefaultJSONParser("{\"name\":3]");
      parser.parse();
    } catch (Exception ex) {
      error = ex;
    }
    Assert.assertNotNull(error);
  }

  public void test_error2() {
    Exception error = null;
    try {
      DefaultJSONParser parser = new DefaultJSONParser("ttr");
      parser.parse();
    } catch (Exception ex) {
      error = ex;
    }
    Assert.assertNotNull(error);
  }

  public void test_error3() {
    Exception error = null;
    try {
      DefaultJSONParser parser = new DefaultJSONParser("33");
      parser.parseObject(new HashMap());
    } catch (Exception ex) {
      error = ex;
    }
    Assert.assertNotNull(error);
  }

  public void test_error4() {
    Exception error = null;
    try {
      DefaultJSONParser parser = new DefaultJSONParser("]");
      parser.parse();
    } catch (Exception ex) {
      error = ex;
    }
    Assert.assertNotNull(error);
  }

  public void test_error6() {
    Exception error = null;
    try {
      DefaultJSONParser parser = new DefaultJSONParser("{\"a\"33");
      parser.parse();
    } catch (Exception ex) {
      error = ex;
    }
    Assert.assertNotNull(error);
  }

  public void test_error7() {
    Exception error = null;
    try {
      DefaultJSONParser parser = new DefaultJSONParser("{\"a\":{}3");
      parser.parse();
    } catch (Exception ex) {
      error = ex;
    }
    Assert.assertNotNull(error);
  }

  public void test_error11() {
    Exception error = null;
    try {
      DefaultJSONParser parser = new DefaultJSONParser("{]");
      parser.parse();
    } catch (Exception ex) {
      error = ex;
    }
    Assert.assertNotNull(error);
  }
}
TOP

Related Classes of com.alibaba.json.bvt.DefaultJSONParserTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.