blob: e02025e7233761cf2d33c83036cc2192b3247e45 [file] [log] [blame]
package org.apache.lucene.queryParser.surround.query;
import org.apache.lucene.search.IndexSearcher;
import org.apache.lucene.search.Searcher;
import org.apache.lucene.search.Query;
import org.apache.lucene.search.HitCollector;
import org.apache.lucene.queryParser.surround.parser.QueryParser;
import junit.framework.TestCase;
public class BooleanQueryTst {
String queryText;
final int[] expectedDocNrs;
SingleFieldTestDb dBase;
String fieldName;
TestCase testCase;
BasicQueryFactory qf;
boolean verbose = false;
public BooleanQueryTst(
String queryText,
int[] expectedDocNrs,
SingleFieldTestDb dBase,
String fieldName,
TestCase testCase,
BasicQueryFactory qf) {
this.queryText = queryText;
this.expectedDocNrs = expectedDocNrs;
this.dBase = dBase;
this.fieldName = fieldName;
this.testCase = testCase;
this.qf = qf;
}
public void setVerbose(boolean verbose) {this.verbose = verbose;}
class TestCollector extends HitCollector { // FIXME: use check hits from Lucene tests
int totalMatched;
boolean[] encountered;
TestCollector() {
totalMatched = 0;
encountered = new boolean[expectedDocNrs.length];
}
public void collect(int docNr, float score) {
/* System.out.println(docNr + " '" + dBase.getDocs()[docNr] + "': " + score); */
testCase.assertTrue(queryText + ": positive score", score > 0.0);
testCase.assertTrue(queryText + ": too many hits", totalMatched < expectedDocNrs.length);
int i;
for (i = 0; i < expectedDocNrs.length; i++) {
if ((! encountered[i]) && (expectedDocNrs[i] == docNr)) {
encountered[i] = true;
break;
}
}
if (i == expectedDocNrs.length) {
testCase.assertTrue(queryText + ": doc nr for hit not expected: " + docNr, false);
}
totalMatched++;
}
void checkNrHits() {
testCase.assertEquals(queryText + ": nr of hits", expectedDocNrs.length, totalMatched);
}
}
public void doTest() throws Exception {
QueryParser parser = new QueryParser();
if (verbose) {
System.out.println("");
System.out.println("Query: " + queryText);
}
SrndQuery lq = parser.parse(queryText);
/* if (verbose) System.out.println("Srnd: " + lq.toString()); */
Query query = lq.makeLuceneQueryField(fieldName, qf);
/* if (verbose) System.out.println("Lucene: " + query.toString()); */
TestCollector tc = new TestCollector();
Searcher searcher = new IndexSearcher(dBase.getDb());
try {
searcher.search(query, tc);
} finally {
searcher.close();
}
tc.checkNrHits();
}
}