OSDN Git Service

imported from subversion repository
[xerial/xerial-core.git] / src / test / java / org / xerial / util / xml / pullparser / PullParserUtilTest.java
1 /*--------------------------------------------------------------------------\r
2  *  Copyright 2004 Taro L. Saito\r
3  *\r
4  *  Licensed under the Apache License, Version 2.0 (the "License");\r
5  *  you may not use this file except in compliance with the License.\r
6  *  You may obtain a copy of the License at\r
7  *\r
8  *     http://www.apache.org/licenses/LICENSE-2.0\r
9  *\r
10  *  Unless required by applicable law or agreed to in writing, software\r
11  *  distributed under the License is distributed on an "AS IS" BASIS,\r
12  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
13  *  See the License for the specific language governing permissions and\r
14  *  limitations under the License.\r
15  *--------------------------------------------------------------------------*/\r
16 //--------------------------------------\r
17 // XerialJ Project\r
18 //\r
19 // PullParserUtilTest.java\r
20 // Since: 2005/01/11\r
21 //\r
22 // $URL: http://www.xerial.org/svn/project/XerialJ/trunk/xerial-core/src/test/java/org/xerial/util/xml/pullparser/PullParserUtilTest.java $ \r
23 // $Author: leo $\r
24 //--------------------------------------\r
25 package org.xerial.util.xml.pullparser;\r
26 \r
27 import java.io.IOException;\r
28 \r
29 import junit.framework.TestCase;\r
30 \r
31 import org.xerial.util.FileResource;\r
32 import org.xerial.util.xml.XMLException;\r
33 import org.xmlpull.v1.XmlPullParser;\r
34 import org.xmlpull.v1.XmlPullParserFactory;\r
35 \r
36 /**\r
37  * @author leo\r
38  * \r
39  */\r
40 public class PullParserUtilTest extends TestCase\r
41 {\r
42     XmlPullParser parser;\r
43 \r
44     protected void setUp() throws Exception\r
45     {\r
46         parser = XmlPullParserFactory.newInstance().newPullParser();\r
47         parser.setInput(FileResource.open(PullParserUtilTest.class, "booklist.xml"));\r
48     }\r
49 \r
50     protected void tearDown() throws Exception\r
51     {\r
52 \r
53     }\r
54 \r
55     public void testParseUntil() throws XMLException, IOException\r
56     {\r
57         int bookCount = 0;\r
58         while (PullParserUtil.parseUntil("book", parser))\r
59         {\r
60             bookCount++;\r
61             assertEquals("book", parser.getName());\r
62         }\r
63         assertEquals(2, bookCount);\r
64     }\r
65 }\r