OSDN Git Service

imported from subversion repository
[xerial/xerial-core.git] / src / test / java / org / xerial / lens / relation / lang / RelationExprTest.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 // RelationExprTest.java\r
20 // Since: Aug 6, 2009 11:36:09 AM\r
21 //\r
22 // $URL$\r
23 // $Author$\r
24 //--------------------------------------\r
25 package org.xerial.lens.relation.lang;\r
26 \r
27 import org.junit.After;\r
28 import org.junit.Before;\r
29 import org.junit.Test;\r
30 import org.xerial.lens.Lens;\r
31 import org.xerial.lens.relation.lang.RelationExpr;\r
32 import org.xerial.util.log.Logger;\r
33 \r
34 public class RelationExprTest {\r
35     private static Logger _logger = Logger.getLogger(RelationExprTest.class);\r
36 \r
37     @Before\r
38     public void setUp() throws Exception {}\r
39 \r
40     @After\r
41     public void tearDown() throws Exception {}\r
42 \r
43     public RelationExpr parse(String query) throws Exception {\r
44         RelationExpr e = RelationExpr.parse(query);\r
45         _logger.info(Lens.toSilk(e));\r
46         return e;\r
47     }\r
48 \r
49     @Test\r
50     public void q1() throws Exception {\r
51         parse("A(B, C)");\r
52     }\r
53 \r
54     @Test\r
55     public void q2() throws Exception {\r
56         parse("book(author, isbn10 as isbn)");\r
57     }\r
58 \r
59     @Test\r
60     public void q3() throws Exception {\r
61         RelationExpr e = parse("entry(dc.subject:sigmod09, link(rel:related, href), summary)");\r
62         _logger.debug(e.toSchema());\r
63         _logger.debug(e.buildQuerySet());\r
64     }\r
65 }\r