gson-comments/gson/src/test/java/com/google/gson/JsonStreamParserTest.java

58 lines
1.7 KiB
Java
Raw Normal View History

/*
* Copyright (C) 2009 Google Inc.
*
* 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.google.gson;
import junit.framework.TestCase;
import java.util.Iterator;
import java.util.NoSuchElementException;
/**
* Unit tests for {@link JsonStreamParser}
*
* @author Inderjeet Singh
*/
public class JsonStreamParserTest extends TestCase {
public void testParseTwoStrings() {
JsonStreamParser parser = new JsonStreamParser("'one' 'two'");
2009-08-12 23:01:42 +02:00
String actualOne = parser.next().getAsString();
assertEquals("one", actualOne);
2009-08-12 23:01:42 +02:00
String actualTwo = parser.next().getAsString();
assertEquals("two", actualTwo);
}
2009-08-12 23:01:42 +02:00
public void testIterator() {
Iterator<JsonElement> parser = new JsonStreamParser("'one' 'two'");
2009-08-12 23:01:42 +02:00
assertTrue(parser.hasNext());
assertEquals("one", parser.next().getAsString());
assertTrue(parser.hasNext());
assertEquals("two", parser.next().getAsString());
assertFalse(parser.hasNext());
}
public void testCallingNextBeyondAvailableInput() {
Iterator<JsonElement> parser = new JsonStreamParser("'one' 'two'");
parser.next();
parser.next();
try {
parser.next();
fail("Parser should not go beyond available input");
} catch (NoSuchElementException expected) {
}
}
}