/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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 org.apache.chemistry.opencmis.inmemory.query; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertNull; import static org.junit.Assert.assertTrue; import static org.junit.Assert.fail; import java.util.LinkedList; import java.util.List; import java.util.Map; import org.antlr.runtime.RecognitionException; import org.antlr.runtime.tree.Tree; import org.apache.chemistry.opencmis.commons.definitions.TypeDefinition; import org.apache.chemistry.opencmis.commons.exceptions.CmisInvalidArgumentException; import org.apache.chemistry.opencmis.inmemory.TypeManagerImpl; import org.apache.chemistry.opencmis.inmemory.UnitTestTypeSystemCreator; import org.apache.chemistry.opencmis.server.support.query.AbstractPredicateWalker; import org.apache.chemistry.opencmis.server.support.query.CmisQueryWalker; import org.apache.chemistry.opencmis.server.support.query.CmisSelector; import org.apache.chemistry.opencmis.server.support.query.ColumnReference; import org.apache.chemistry.opencmis.server.support.query.QueryObject; import org.apache.chemistry.opencmis.server.support.query.QueryObject.SortSpec; import org.junit.After; import org.junit.Before; import org.junit.Test; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class QueryTypesTest extends AbstractQueryTest { private static final Logger LOG = LoggerFactory.getLogger(QueryTypesTest.class); private TypeManagerImpl tm; private TestPredicateWalker pw; public static class TestPredicateWalker extends AbstractPredicateWalker { List<Integer> ids = new LinkedList<Integer>(); @Override public Object walkId(Tree node) { ids.add(node.getTokenStartIndex()); return null; } } @Before public void setUp() { tm = new TypeManagerImpl(); tm.initTypeSystem(null, true); // create CMIS default types // create some types for testing List<TypeDefinition> typeDefs = super.createTypes(); for (TypeDefinition typeDef : typeDefs) { tm.addTypeDefinition(typeDef, true); } // initialize query object with type manager // and test the abstract predicate walker pw = new TestPredicateWalker(); super.setUp(tm, pw); } @After public void tearDown() { } @Test public void resolveTypesTest1() throws Exception { String statement = "SELECT " + TITLE_PROP + ", " + AUTHOR_PROP + " FROM " + BOOK_TYPE + " AS BooksAlias WHERE " + ISBN_PROP + " = '100'"; verifyResolveSelect(statement); } @Test public void resolveTypesTest2() throws Exception { String statement = "SELECT BookType.Title, BookType.Author FROM BookType WHERE ISBN = '100'"; verifyResolveSelect(statement); } @Test public void resolveTypesTest3() throws Exception { String statement = "SELECT BookType.Title, BookType.Author FROM BookType AS BooksAlias WHERE ISBN = '100'"; verifyResolveSelect(statement); } @Test public void resolveTypesTest4() throws Exception { String statement = "SELECT BooksAlias.Title, BooksAlias.Author FROM BookType AS BooksAlias WHERE ISBN = '100'"; verifyResolveSelect(statement); } @Test public void resolveTypesTest5() throws Exception { String statement = "SELECT BooksAlias.Title AS abc, BooksAlias.Author def FROM BookType AS BooksAlias WHERE ISBN = '100'"; verifyResolveSelect(statement); } @Test public void resolveTypesTest6() { String statement = "SELECT BookType.UnknownProperty FROM BookType WHERE ISBN = '100'"; try { verifyResolveSelect(statement); fail("Select of unknown property in type should fail."); } catch (Exception e) { assertTrue(e instanceof CmisInvalidArgumentException); LOG.debug("resolveTypesTest6(), e: " + e.getMessage()); assertTrue(e.toString().contains("is not a valid property query name in")); } } @Test public void resolveTypesTest7StrictSelect() { String statement = "SELECT UnknownProperty FROM BookType WHERE ISBN = '100'"; try { verifyResolveSelect(statement); fail("Select of unknown property in type should fail."); } catch (Exception e) { assertTrue(e instanceof CmisInvalidArgumentException); assertTrue(e.toString().contains("is not a property query name in any")); } } @Test public void resolveTypesTest7RelaxedSelect() throws Exception { String statement = "SELECT UnknownProperty FROM BookType WHERE ISBN = '100'"; CmisQueryWalker walker = getWalker(statement, QueryObject.ParserMode.MODE_ALLOW_RELAXED_SELECT); assertNotNull(queryObj); assertNotNull(walker); Map<String, String> types = queryObj.getTypes(); assertTrue(1 == types.size()); List<CmisSelector> selects = queryObj.getSelectReferences(); assertTrue(1 == selects.size()); for (CmisSelector select : selects) { assertTrue(select instanceof ColumnReference); ColumnReference colRef = ((ColumnReference) select); assertTrue(null == colRef.getTypeDefinition()); assertTrue(colRef.getPropertyQueryName().equals("UnknownProperty")); assertTrue(null == colRef.getPropertyId()); } } @Test public void resolveTypesTest8() throws Exception { String statement = "SELECT BookType.Title, BookType.Author FROM BookType WHERE ISBN = '100'"; verifyResolveSelect(statement); } @Test public void resolveTypesTest9() throws Exception { String statement = "SELECT BookType.Author, Title TitleAlias FROM BookType WHERE TitleAlias <> 'Harry Potter'"; verifyResolveSelect(statement); } @Test public void resolveTypesTest10() throws Exception { String statement = "SELECT BookType.Author, BookType.Title TitleAlias FROM BookType WHERE TitleAlias <> 'Harry Potter'"; verifyResolveSelect(statement); } private void verifyResolveSelect(String statement, QueryObject.ParserMode mode) throws Exception { CmisQueryWalker walker = getWalker(statement); assertNotNull(queryObj); assertNotNull(walker); queryObj.setSelectMode(mode); Map<String, String> types = queryObj.getTypes(); assertTrue(1 == types.size()); List<CmisSelector> selects = queryObj.getSelectReferences(); assertTrue(2 == selects.size()); for (CmisSelector select : selects) { assertTrue(select instanceof ColumnReference); ColumnReference colRef = ((ColumnReference) select); assertEquals(bookType, colRef.getTypeDefinition()); assertTrue(colRef.getPropertyQueryName().equals(TITLE_PROP) || colRef.getPropertyQueryName().equals(AUTHOR_PROP)); } } private void verifyResolveSelect(String statement) throws Exception { verifyResolveSelect(statement, QueryObject.ParserMode.MODE_STRICT); } @Test public void resolveTypesWithTwoFromsQualified() throws Exception { String statement = "SELECT BookType.Title, MyDocType.MyStringProp FROM BookType JOIN MyDocType WHERE BookType.ISBN = '100'"; CmisQueryWalker walker = getWalker(statement); assertNotNull(walker); Map<String, String> types = queryObj.getTypes(); assertTrue(2 == types.size()); List<CmisSelector> selects = queryObj.getSelectReferences(); assertTrue(2 == selects.size()); ColumnReference colRef = ((ColumnReference) selects.get(0)); assertEquals(colRef.getTypeDefinition(), bookType); assertTrue(colRef.getPropertyQueryName().equals(TITLE_PROP)); colRef = ((ColumnReference) selects.get(1)); assertEquals(colRef.getTypeDefinition(), myType); assertTrue(colRef.getPropertyQueryName().equals(STRING_PROP)); } @Test public void resolveTypesWithTwoFromsSameTypeCorrectlyQualified() throws Exception { String statement = "SELECT A.Title FROM BookType A JOIN BookType B"; CmisQueryWalker walker = getWalker(statement); assertNotNull(queryObj); assertNotNull(walker); Map<String, String> types = queryObj.getTypes(); assertEquals(2, types.size()); List<CmisSelector> selects = queryObj.getSelectReferences(); assertEquals(1, selects.size()); ColumnReference colRef = ((ColumnReference) selects.get(0)); assertEquals(bookType, colRef.getTypeDefinition()); assertEquals(TITLE_PROP, colRef.getPropertyQueryName()); assertEquals("A", colRef.getQualifier()); } @Test public void resolveTypesWithTwoFromsSameTypeAmbiguouslyQualified() throws Exception { String statement = "SELECT BookType.Title FROM BookType A JOIN BookType B"; try { traverseStatement(statement); fail("Select with an ambiguously qualified property should fail."); } catch (Exception e) { assertTrue(e instanceof RecognitionException); assertTrue(e.toString().contains("BookType is an ambiguous type query name")); } } @Test public void resolveTypesWithTwoFromsUnqualified() throws Exception { String statement = "SELECT Title, MyStringProp FROM BookType JOIN MyDocType AS MyDocAlias WHERE BookType.ISBN = '100'"; CmisQueryWalker walker = getWalker(statement); assertNotNull(queryObj); assertNotNull(walker); Map<String, String> types = queryObj.getTypes(); assertTrue(2 == types.size()); List<CmisSelector> selects = queryObj.getSelectReferences(); assertTrue(2 == selects.size()); ColumnReference colRef = ((ColumnReference) selects.get(0)); assertEquals(colRef.getTypeDefinition(), bookType); assertTrue(colRef.getPropertyQueryName().equals(TITLE_PROP)); colRef = ((ColumnReference) selects.get(1)); assertEquals(colRef.getTypeDefinition(), myType); assertTrue(colRef.getPropertyQueryName().equals(STRING_PROP)); } @Test public void resolveTypesWithTwoFromsNotUnique() { String statement = "SELECT MyStringProp FROM MyDocTypeCopy JOIN MyDocType"; try { traverseStatement(statement); fail("Select with an unqualified property that is not unique should fail."); } catch (Exception e) { assertTrue(e instanceof RecognitionException); assertTrue(e.toString().contains("is not a unique property query name within the types in from")); } } @Test public void resolveTypesWithTwoFromsUniqueByQualifying() throws Exception { String statement = "SELECT MyDocType.MyStringProp FROM MyDocTypeCopy JOIN MyDocType"; CmisQueryWalker walker = getWalker(statement); assertNotNull(queryObj); assertNotNull(walker); Map<String, String> types = queryObj.getTypes(); assertTrue(2 == types.size()); List<CmisSelector> selects = queryObj.getSelectReferences(); assertTrue(1 == selects.size()); ColumnReference colRef = ((ColumnReference) selects.get(0)); assertEquals(myType, colRef.getTypeDefinition()); assertTrue(colRef.getPropertyQueryName().equals(STRING_PROP)); } @Test public void resolveTypesTest11() throws Exception { String statement = "SELECT BookType.* FROM BookType WHERE ISBN = '100'"; CmisQueryWalker walker = getWalker(statement); assertNotNull(queryObj); assertNotNull(walker); Map<String, String> types = queryObj.getTypes(); assertTrue(1 == types.size()); List<CmisSelector> selects = queryObj.getSelectReferences(); assertTrue(1 == selects.size()); ColumnReference colRef = ((ColumnReference) selects.get(0)); assertTrue(colRef.getPropertyQueryName().equals("*")); assertEquals(bookType, colRef.getTypeDefinition()); } @Test public void resolveTypesTest12() throws Exception { String statement = "SELECT * FROM MyDocTypeCopy JOIN MyDocType"; CmisQueryWalker walker = getWalker(statement); assertNotNull(queryObj); assertNotNull(walker); Map<String, String> types = queryObj.getTypes(); assertTrue(2 == types.size()); List<CmisSelector> selects = queryObj.getSelectReferences(); assertTrue(1 == selects.size()); ColumnReference colRef = ((ColumnReference) selects.get(0)); assertTrue(colRef.getPropertyQueryName().equals("*")); assertEquals(null, colRef.getTypeDefinition()); } @Test public void resolveTypesWhere1() throws Exception { String statement = "SELECT * FROM BookType WHERE ISBN = '100'"; verifyResolveWhere(statement); } @Test public void resolveTypesWhere2() throws Exception { String statement = "SELECT * FROM BookType WHERE BookType.ISBN = '100'"; verifyResolveWhere(statement); } @Test public void resolveTypesWhere3() throws Exception { String statement = "SELECT * FROM BookType As BookAlias WHERE BookAlias.ISBN = '100'"; verifyResolveWhere(statement); } @Test public void resolveTypesWhere4() throws Exception { String statement = "SELECT BookType.ISBN IsbnAlias FROM BookType WHERE IsbnAlias < '100'"; verifyResolveWhere(statement); } @Test public void resolveTypesWhereWithTwoFromsUnqualified() throws Exception { String statement = "SELECT * FROM BookType JOIN MyDocType WHERE ISBN = '100'"; CmisQueryWalker walker = getWalker(statement); assertNotNull(queryObj); assertNotNull(walker); List<CmisSelector> wheres = queryObj.getWhereReferences(); assertTrue(1 == wheres.size()); for (CmisSelector where : wheres) { assertTrue(where instanceof ColumnReference); ColumnReference colRef = ((ColumnReference) where); assertEquals(colRef.getTypeDefinition(), bookType); assertTrue(colRef.getPropertyQueryName().equals(ISBN_PROP)); } } @Test public void resolveTypesWhereWithTwoFromsQualified() throws Exception { String statement = "SELECT * FROM BookType JOIN MyDocType AS MyDocAlias WHERE BookType.ISBN = '100'"; CmisQueryWalker walker = getWalker(statement); assertNotNull(queryObj); assertNotNull(walker); List<CmisSelector> wheres = queryObj.getWhereReferences(); assertTrue(1 == wheres.size()); for (CmisSelector where : wheres) { assertTrue(where instanceof ColumnReference); ColumnReference colRef = ((ColumnReference) where); assertEquals(colRef.getTypeDefinition(), bookType); assertTrue(colRef.getPropertyQueryName().equals(ISBN_PROP)); } } @Test public void resolveTypesWhereWithTwoFromsQualifiedWithAlias() throws Exception { String statement = "SELECT * FROM BookType AS MyBookAlias JOIN MyDocType WHERE MyBookAlias.ISBN = '100'"; CmisQueryWalker walker = getWalker(statement); assertNotNull(queryObj); assertNotNull(walker); List<CmisSelector> wheres = queryObj.getWhereReferences(); assertTrue(1 == wheres.size()); for (CmisSelector where : wheres) { assertTrue(where instanceof ColumnReference); ColumnReference colRef = ((ColumnReference) where); assertEquals(colRef.getTypeDefinition(), bookType); assertTrue(colRef.getPropertyQueryName().equals(ISBN_PROP)); } } @Test public void resolveTypesWhereWithTwoFromsQualifiedWithAlias2() throws Exception { String statement = "SELECT MyBookAlias.Title FROM BookType AS MyBookAlias WHERE MyBookAlias.ISBN = '100'"; CmisQueryWalker walker = getWalker(statement); assertNotNull(queryObj); assertNotNull(walker); List<CmisSelector> wheres = queryObj.getWhereReferences(); assertTrue(1 == wheres.size()); for (CmisSelector where : wheres) { assertTrue(where instanceof ColumnReference); ColumnReference colRef = ((ColumnReference) where); assertEquals(colRef.getTypeDefinition(), bookType); } } private void verifyResolveWhere(String statement) throws Exception { CmisQueryWalker walker = getWalker(statement); assertNotNull(queryObj); assertNotNull(walker); Map<String, String> types = queryObj.getTypes(); assertTrue(1 == types.size()); List<CmisSelector> wheres = queryObj.getWhereReferences(); assertTrue(1 == wheres.size()); for (CmisSelector where : wheres) { assertTrue(where instanceof ColumnReference); ColumnReference colRef = ((ColumnReference) where); assertEquals(bookType, colRef.getTypeDefinition()); assertTrue(colRef.getPropertyQueryName().equals(ISBN_PROP)); } } @Test public void resolveTypesWhereWithTwoFromsNotUnique() { String statement = "SELECT * FROM MyDocTypeCopy JOIN MyDocType WHERE MyStringProp = '100'"; try { traverseStatement(statement); fail("Select with an unqualified property that is not unique should fail."); } catch (Exception e) { assertTrue(e instanceof RecognitionException); assertTrue(e.toString().contains("is not a unique property query name within the types in from")); } } @Test public void resolveTypesWhereWithTwoFromsUniqueByQualifying() throws Exception { String statement = "SELECT * FROM MyDocTypeCopy JOIN MyDocType WHERE MyDocType.MyStringProp = '100'"; CmisQueryWalker walker = getWalker(statement); assertNotNull(queryObj); assertNotNull(walker); List<CmisSelector> wheres = queryObj.getWhereReferences(); assertTrue(1 == wheres.size()); for (CmisSelector where : wheres) { assertTrue(where instanceof ColumnReference); ColumnReference colRef = ((ColumnReference) where); assertEquals(colRef.getTypeDefinition(), myType); assertTrue(colRef.getPropertyQueryName().equals(STRING_PROP)); } } @Test public void resolveTypesOrderBy() throws Exception { String statement = "SELECT Title AS TitleAlias FROM BookType WHERE Author = 'Jim' ORDER BY TitleAlias"; CmisQueryWalker walker = getWalker(statement); assertNotNull(queryObj); assertNotNull(walker); List<SortSpec> sorts = queryObj.getOrderBys(); assertTrue(1 == sorts.size()); for (SortSpec sort : sorts) { assertTrue(sort.getSelector() instanceof ColumnReference); ColumnReference colRef = ((ColumnReference) sort.getSelector()); assertEquals(colRef.getTypeDefinition(), bookType); assertTrue(colRef.getPropertyQueryName().equals(TITLE_PROP)); } } @Test public void resolveTypesOrderBy2() throws Exception { String statement = "SELECT Title AS TitleAlias FROM BookType WHERE Author = 'Jim' ORDER BY BookType.Author"; CmisQueryWalker walker = getWalker(statement); assertNotNull(queryObj); assertNotNull(walker); List<SortSpec> sorts = queryObj.getOrderBys(); assertTrue(1 == sorts.size()); for (SortSpec sort : sorts) { assertTrue(sort.getSelector() instanceof ColumnReference); ColumnReference colRef = ((ColumnReference) sort.getSelector()); assertEquals(colRef.getTypeDefinition(), bookType); assertTrue(colRef.getPropertyQueryName().equals(AUTHOR_PROP)); } } @Test public void resolveTypesOrderBy3() throws Exception { String statement = "SELECT Title FROM BookType WHERE ISBN < '100' ORDER BY Author"; CmisQueryWalker walker = getWalker(statement); assertNotNull(queryObj); assertNotNull(walker); List<SortSpec> sorts = queryObj.getOrderBys(); assertTrue(1 == sorts.size()); for (SortSpec sort : sorts) { assertTrue(sort.getSelector() instanceof ColumnReference); ColumnReference colRef = ((ColumnReference) sort.getSelector()); assertEquals(colRef.getTypeDefinition(), bookType); assertTrue(colRef.getPropertyQueryName().equals(AUTHOR_PROP)); } } @Test public void resolveJoinTypesSimple() throws Exception { String statement = "SELECT * FROM MyDocType JOIN BookType ON MyDocType.MyStringProp = BookType.Title"; CmisQueryWalker walker = getWalker(statement); assertNotNull(queryObj); assertNotNull(walker); List<CmisSelector> joins = queryObj.getJoinReferences(); assertTrue(2 == joins.size()); for (CmisSelector join : joins) { assertTrue(join instanceof ColumnReference); ColumnReference colRef = ((ColumnReference) join); if (myType.equals(colRef.getTypeDefinition())) { assertTrue(colRef.getPropertyQueryName().equals(STRING_PROP)); } else if (bookType.equals(colRef.getTypeDefinition())) { assertTrue(colRef.getPropertyQueryName().equals(TITLE_PROP)); } else { fail("Unexpected type in JOIN reference"); } } } @Test public void resolveJoinTypesWithAlias() throws Exception { String statement = "SELECT Y.ISBN, X.MyBooleanProp, Y.Author FROM (MyDocType AS X JOIN BookType AS Y ON X.MyStringProp = Y.Title) " + "WHERE ('Joe' = ANY Y.Author)"; // "SELECT Y.CLAIM_NUM, X.PROPERTY_ADDRESS, Y.DAMAGE_ESTIMATES " + // "FROM ( POLICY AS X JOIN CLAIMS AS Y ON X.POLICY_NUM = Y.POLICY_NUM ) " // + // "WHERE ( 100000 = ANY Y.DAMAGE_ESTIMATES )"; CmisQueryWalker walker = getWalker(statement); assertNotNull(queryObj); assertNotNull(walker); List<CmisSelector> joins = queryObj.getJoinReferences(); assertTrue(2 == joins.size()); for (CmisSelector join : joins) { assertTrue(join instanceof ColumnReference); ColumnReference colRef = ((ColumnReference) join); if (myType.equals(colRef.getTypeDefinition())) { assertTrue(colRef.getPropertyQueryName().equals(STRING_PROP)); } else if (bookType.equals(colRef.getTypeDefinition())) { assertTrue(colRef.getPropertyQueryName().equals(TITLE_PROP)); } else { fail("Unexpected type in JOIN reference"); } } } @Test public void testSecondaryJoin() throws RecognitionException { // needs some special types: tm = new TypeManagerImpl(); tm.initTypeSystem(null, true); // create CMIS default types // create some types for testing List<TypeDefinition> typeDefs = UnitTestTypeSystemCreator.getTypesList(); for (TypeDefinition typeDef : typeDefs) { tm.addTypeDefinition(typeDef, true); } super.setUp(tm, pw); String statement = "SELECT * FROM cmis:document JOIN " + UnitTestTypeSystemCreator.SECONDARY_TYPE + " WHERE SecondaryStringProp='groovy'"; CmisQueryWalker walker = getWalker(statement); assertNotNull(queryObj); assertNotNull(walker); List<TypeDefinition> secondaryJoinedTypes = queryObj.getJoinedSecondaryTypes(); assertNull(secondaryJoinedTypes); statement = "SELECT * FROM cmis:document WHERE cmis:name='groovy'"; walker = getWalker(statement); secondaryJoinedTypes = queryObj.getJoinedSecondaryTypes(); assertNull(secondaryJoinedTypes); statement = "SELECT * FROM cmis:document JOIN " + UnitTestTypeSystemCreator.COMPLEX_TYPE + " WHERE " + UnitTestTypeSystemCreator.PROP_ID_STRING + "='groovy'"; walker = getWalker(statement); secondaryJoinedTypes = queryObj.getJoinedSecondaryTypes(); assertNull(secondaryJoinedTypes); statement = "SELECT * FROM cmis:document JOIN " + UnitTestTypeSystemCreator.SECONDARY_TYPE + " ON cmis:document.cmis:objectId = " + UnitTestTypeSystemCreator.SECONDARY_TYPE + ".cmis:objectId WHERE SecondaryStringProp='groovy'"; walker = getWalker(statement); secondaryJoinedTypes = queryObj.getJoinedSecondaryTypes(); assertEquals(1, secondaryJoinedTypes.size()); assertEquals(UnitTestTypeSystemCreator.SECONDARY_TYPE, secondaryJoinedTypes.get(0).getId()); statement = "SELECT * FROM cmis:document JOIN " + UnitTestTypeSystemCreator.SECONDARY_TYPE + " ON " + UnitTestTypeSystemCreator.SECONDARY_TYPE + ".cmis:objectId = cmis:document.cmis:objectId WHERE SecondaryStringProp='groovy'"; walker = getWalker(statement); secondaryJoinedTypes = queryObj.getJoinedSecondaryTypes(); assertEquals(1, secondaryJoinedTypes.size()); assertEquals(UnitTestTypeSystemCreator.SECONDARY_TYPE, secondaryJoinedTypes.get(0).getId()); statement = "SELECT * FROM cmis:document JOIN MySecondaryType ON cmis:document.cmis:objectId = MySecondaryType.cmis:objectId JOIN MySecondaryType2 ON cmis:document.cmis:objectId = MySecondaryType2.cmis:objectId WHERE SecondaryStringProp='groovy'"; walker = getWalker(statement); secondaryJoinedTypes = queryObj.getJoinedSecondaryTypes(); assertEquals(2, secondaryJoinedTypes.size()); assertEquals(UnitTestTypeSystemCreator.SECONDARY_TYPE, secondaryJoinedTypes.get(0).getId()); assertEquals(UnitTestTypeSystemCreator.SECONDARY_TYPE_2, secondaryJoinedTypes.get(1).getId()); statement = "SELECT a.cmis:objectId, a.cmis:name, b.SecondaryStringProp FROM cmis:document AS a JOIN MySecondaryType AS b ON a.cmis:objectId = b.cmis:objectId WHERE b.SecondaryStringProp='groovy'"; walker = getWalker(statement); secondaryJoinedTypes = queryObj.getJoinedSecondaryTypes(); assertEquals(1, secondaryJoinedTypes.size()); assertEquals(UnitTestTypeSystemCreator.SECONDARY_TYPE, secondaryJoinedTypes.get(0).getId()); } @Test public void resolveTypeQualifiers1() throws Exception { String statement = "SELECT Title FROM BookType WHERE IN_TREE(BookType, 'foo')"; CmisQueryWalker walker = getWalker(statement); assertNotNull(queryObj); assertNotNull(walker); assertEquals("BookType", queryObj.getTypeReference(pw.ids.get(0))); } @Test public void resolveTypeQualifiers2() throws Exception { String statement = "SELECT Title FROM BookType B WHERE IN_TREE(B, 'foo')"; CmisQueryWalker walker = getWalker(statement); assertNotNull(queryObj); assertNotNull(walker); assertEquals("B", queryObj.getTypeReference(pw.ids.get(0))); } @Test public void resolveTypeQualifiers3() throws Exception { String statement = "SELECT Title FROM BookType B WHERE IN_TREE(BookType, 'foo')"; CmisQueryWalker walker = getWalker(statement); assertNotNull(queryObj); assertNotNull(walker); assertEquals("B", queryObj.getTypeReference(pw.ids.get(0))); } @Test public void resolveTypeQualifiers4() throws Exception { String statement = "SELECT Title FROM BookType B WHERE IN_TREE(dummy, 'foo')"; try { traverseStatement(statement); fail("invalid correlation name should fail"); } catch (Exception e) { assertTrue(e instanceof RecognitionException); assertTrue(e.toString().contains("dummy is neither a type query name nor an alias")); } } @Test public void resolveTypeQualifiers5() throws Exception { String statement = "SELECT B1.Title FROM BookType B1 JOIN BookType B2" + " WHERE IN_TREE(B1, 'foo') OR IN_TREE(B2, 'bar')"; CmisQueryWalker walker = getWalker(statement); assertNotNull(queryObj); assertNotNull(walker); assertEquals("B1", queryObj.getTypeReference(pw.ids.get(0))); assertEquals("B2", queryObj.getTypeReference(pw.ids.get(1))); } @Test public void resolveTypeQualifiers6() throws Exception { String statement = "SELECT B.Title FROM BookType B JOIN MyDocType D" + " WHERE IN_TREE(MyDocType, 'foo')"; CmisQueryWalker walker = getWalker(statement); assertNotNull(queryObj); assertNotNull(walker); assertEquals("D", queryObj.getTypeReference(pw.ids.get(0))); } @Test public void resolveTypeQualifiers7() throws Exception { String statement = "SELECT B1.Title FROM BookType B1 JOIN BookType B2" + " WHERE IN_TREE(BookType, 'foo')"; try { traverseStatement(statement); fail("ambiguous correlation name should fail"); } catch (Exception e) { assertTrue(e instanceof RecognitionException); assertTrue(e.toString().contains("BookType is an ambiguous type query name")); } } }