/* * Hibernate, Relational Persistence for Idiomatic Java * * Copyright (c) 2010, Red Hat, Inc. and/or its affiliates or third-party contributors as * indicated by the @author tags or express copyright attribution * statements applied by the authors. All third-party contributions are * distributed under license by Red Hat, Inc. * * This copyrighted material is made available to anyone wishing to use, modify, * copy, or redistribute it subject to the terms and conditions of the GNU * Lesser General Public License, as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this distribution; if not, write to: * Free Software Foundation, Inc. * 51 Franklin Street, Fifth Floor * Boston, MA 02110-1301 USA */ package org.hibernate.search.test.analyzer.inheritance; import org.apache.lucene.analysis.Analyzer; import org.apache.lucene.analysis.Token; import org.apache.lucene.queryParser.QueryParser; import org.hibernate.Transaction; import org.hibernate.search.FullTextQuery; import org.hibernate.search.FullTextSession; import org.hibernate.search.Search; import org.hibernate.search.test.SearchTestCase; import org.hibernate.search.test.TestConstants; import org.hibernate.search.util.AnalyzerUtils; import org.hibernate.search.util.logging.impl.Log; import org.hibernate.search.util.logging.impl.LoggerFactory; import static org.hibernate.search.test.analyzer.AnalyzerTest.assertTokensEqual; /** * Test to verify HSEARCH-267. * * A base class defines a field as indexable without specifying an explicit analyzer. A subclass then defines ab analyzer * at class level. This should also be the analyzer used for indexing the field in the base class. * * @author Hardy Ferentschik */ public class AnalyzerInheritanceTest extends SearchTestCase { public static final Log log = LoggerFactory.make(); /** * Try to verify that the right analyzer is used by indexing and searching. * * @throws Exception in case the test fails. */ public void testBySearch() throws Exception { SubClass testClass = new SubClass(); testClass.setName( "Proca\u00EFne" ); FullTextSession s = Search.getFullTextSession( openSession() ); Transaction tx = s.beginTransaction(); s.persist( testClass ); tx.commit(); tx = s.beginTransaction(); QueryParser parser = new QueryParser( TestConstants.getTargetLuceneVersion(), "name", s.getSearchFactory().getAnalyzer( SubClass.class ) ); org.apache.lucene.search.Query luceneQuery = parser.parse( "name:Proca\u00EFne" ); FullTextQuery query = s.createFullTextQuery( luceneQuery, SubClass.class ); assertEquals( 1, query.getResultSize() ); luceneQuery = parser.parse( "name:Procaine" ); query = s.createFullTextQuery( luceneQuery, SubClass.class ); assertEquals( 1, query.getResultSize() ); // make sure the result is not always 1 luceneQuery = parser.parse( "name:foo" ); query = s.createFullTextQuery( luceneQuery, SubClass.class ); assertEquals( 0, query.getResultSize() ); tx.commit(); s.close(); } /** * Try to verify that the right analyzer is used by explicitly retrieving the analyzer form the factory. * * @throws Exception in case the test fails. */ public void testByAnalyzerRetrieval() throws Exception { FullTextSession s = Search.getFullTextSession( openSession() ); Analyzer analyzer = s.getSearchFactory().getAnalyzer( SubClass.class ); Token[] tokens = AnalyzerUtils.tokensFromAnalysis(analyzer, "name", "Proca\u00EFne"); assertTokensEqual( tokens, new String[]{"Procaine"}); s.close(); } protected Class<?>[] getAnnotatedClasses() { return new Class[] { SubClass.class }; } }