blob: b3330d6d8ae0ec2cd9ea2b02e45f33064c82ff65 [file] [log] [blame]
/*
* 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);
}
}