/* * 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.query.boost; import java.util.List; import org.apache.lucene.index.Term; import org.apache.lucene.search.Query; import org.apache.lucene.search.TermQuery; import org.hibernate.Session; import org.hibernate.search.FullTextSession; import org.hibernate.search.ProjectionConstants; import org.hibernate.search.Search; import org.hibernate.search.test.SearchTestCase; import org.hibernate.search.util.logging.impl.Log; import org.hibernate.search.util.logging.impl.LoggerFactory; public class DynamicBoostingTest extends SearchTestCase { private static final Log log = LoggerFactory.make(); public void testDynamicBoosts() throws Exception { Session session = openSession(); session.beginTransaction(); DynamicBoostedDescriptionLibrary lib1 = new DynamicBoostedDescriptionLibrary(); lib1.setName( "one" ); session.persist( lib1 ); DynamicBoostedDescriptionLibrary lib2 = new DynamicBoostedDescriptionLibrary(); lib2.setName( "two" ); session.persist( lib2 ); session.getTransaction().commit(); session.close(); float lib1Score = getScore( new TermQuery( new Term( "name", "one" ) ) ); float lib2Score = getScore( new TermQuery( new Term( "name", "two" ) ) ); assertEquals( "The scores should be equal", lib1Score, lib2Score ); // set dynamic score and reindex! session = openSession(); session.beginTransaction(); session.refresh( lib2 ); lib2.setDynScore( 2.0f ); session.getTransaction().commit(); session.close(); lib1Score = getScore( new TermQuery( new Term( "name", "one" ) ) ); lib2Score = getScore( new TermQuery( new Term( "name", "two" ) ) ); assertTrue( "lib2score should be greater than lib1score", lib1Score < lib2Score ); lib1Score = getScore( new TermQuery( new Term( "name", "foobar" ) ) ); assertEquals( "lib1score should be 0 since term is not yet indexed.", 0.0f, lib1Score ); // index foobar session = openSession(); session.beginTransaction(); session.refresh( lib1 ); lib1.setName( "foobar" ); session.getTransaction().commit(); session.close(); lib1Score = getScore( new TermQuery( new Term( "name", "foobar" ) ) ); lib2Score = getScore( new TermQuery( new Term( "name", "two" ) ) ); assertTrue( "lib1score should be greater than lib2score", lib1Score > lib2Score ); } private float getScore(Query query) { Session session = openSession(); Object[] queryResult; float score; try { FullTextSession fullTextSession = Search.getFullTextSession( session ); List resultList = fullTextSession .createFullTextQuery( query, DynamicBoostedDescriptionLibrary.class ) .setProjection( ProjectionConstants.SCORE, ProjectionConstants.EXPLANATION ) .setMaxResults( 1 ) .list(); if ( resultList.size() == 0 ) { score = 0.0f; } else { queryResult = ( Object[] ) resultList.get( 0 ); score = ( Float ) queryResult[0]; String explanation = queryResult[1].toString(); log.debugf( "score: %f explanation: %s", score, explanation ); } } finally { session.close(); } return score; } protected Class<?>[] getAnnotatedClasses() { return new Class[] { DynamicBoostedDescriptionLibrary.class }; } }