Package com.alibaba.dubbo.common.json

Source Code of com.alibaba.dubbo.common.json.JSONReaderTest

/*
* Copyright 1999-2011 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.dubbo.common.json;

import com.alibaba.dubbo.common.io.UnsafeStringReader;

import junit.framework.TestCase;

public class JSONReaderTest extends TestCase
{
  public void testMain() throws Exception
  {
    String json = "{ name: 'name', friends: [ 1, null, 3.2, ] }";
    JSONReader reader = new JSONReader(new UnsafeStringReader(json));
    assertEquals(reader.nextToken().type, JSONToken.LBRACE);
    assertEquals(reader.nextToken().type, JSONToken.IDENT);
    assertEquals(reader.nextToken().type, JSONToken.COLON);
    assertEquals(reader.nextToken().type, JSONToken.STRING);
    assertEquals(reader.nextToken().type, JSONToken.COMMA);
    assertEquals(reader.nextToken().type, JSONToken.IDENT);
    assertEquals(reader.nextToken().type, JSONToken.COLON);
    assertEquals(reader.nextToken().type, JSONToken.LSQUARE);
    assertEquals(reader.nextToken().type, JSONToken.INT);
    assertEquals(reader.nextToken().type, JSONToken.COMMA);
    assertEquals(reader.nextToken().type, JSONToken.NULL);
    assertEquals(reader.nextToken().type, JSONToken.COMMA);
    assertEquals(reader.nextToken().type, JSONToken.FLOAT);
    assertEquals(reader.nextToken().type, JSONToken.COMMA);
    assertEquals(reader.nextToken().type, JSONToken.RSQUARE);
    assertEquals(reader.nextToken().type, JSONToken.RBRACE);
  }
}
TOP

Related Classes of com.alibaba.dubbo.common.json.JSONReaderTest

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.