OSDN Git Service

imported from subversion repository
[xerial/xerial-core.git] / src / test / java / org / xerial / silk / impl / SilkNodeParserTest.java
1 /*--------------------------------------------------------------------------\r
2  *  Copyright 2009 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\r
18 //\r
19 // SilkNodeParserTest.java\r
20 // Since: May 29, 2009 1:13:58 PM\r
21 //\r
22 // $URL: http://www.xerial.org/svn/project/XerialJ/trunk/xerial-core/src/test/java/org/xerial/silk/impl/SilkNodeParserTest.java $\r
23 // $Author: leo $\r
24 //--------------------------------------\r
25 package org.xerial.silk.impl;\r
26 \r
27 import static org.junit.Assert.*;\r
28 \r
29 import java.util.List;\r
30 \r
31 import org.antlr.runtime.ANTLRReaderStream;\r
32 import org.antlr.runtime.CommonTokenStream;\r
33 import org.junit.After;\r
34 import org.junit.Before;\r
35 import org.junit.Test;\r
36 import org.xerial.util.FileResource;\r
37 \r
38 public class SilkNodeParserTest\r
39 {\r
40 \r
41     @Before\r
42     public void setUp() throws Exception\r
43     {}\r
44 \r
45     @After\r
46     public void tearDown() throws Exception\r
47     {}\r
48 \r
49     @Test\r
50     public void testParser() throws Exception\r
51     {\r
52         SilkLineLexer lexer = new SilkLineLexer(new ANTLRReaderStream(FileResource.open(SilkNodeParserTest.class, "node.silk")));\r
53 \r
54         CommonTokenStream tokenStream = new CommonTokenStream(lexer);\r
55         SilkNodeParser parser = new SilkNodeParser(tokenStream);\r
56         SilkNode node = parser.parseSilkNode();\r
57 \r
58         assertEquals("coordinate", node.getName());\r
59         assertEquals(0, node.getIndentLevel());\r
60         List<SilkNode> children = node.getChildNodes();\r
61         assertEquals(3, children.size());\r
62 \r
63     }\r
64 \r
65 }\r