📄 testfilteredquery.java
字号:
package org.apache.lucene.search;/** * 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. */import junit.framework.TestCase;import org.apache.lucene.analysis.WhitespaceAnalyzer;import org.apache.lucene.document.Document;import org.apache.lucene.document.Field;import org.apache.lucene.index.IndexWriter;import org.apache.lucene.index.IndexReader;import org.apache.lucene.index.Term;import org.apache.lucene.store.RAMDirectory;import java.util.BitSet;/** * FilteredQuery JUnit tests. * * <p>Created: Apr 21, 2004 1:21:46 PM * * @author Tim Jones * @version $Id: TestFilteredQuery.java 472959 2006-11-09 16:21:50Z yonik $ * @since 1.4 */public class TestFilteredQueryextends TestCase { private IndexSearcher searcher; private RAMDirectory directory; private Query query; private Filter filter; public void setUp() throws Exception { directory = new RAMDirectory(); IndexWriter writer = new IndexWriter (directory, new WhitespaceAnalyzer(), true); Document doc = new Document(); doc.add (new Field("field", "one two three four five", Field.Store.YES, Field.Index.TOKENIZED)); doc.add (new Field("sorter", "b", Field.Store.YES, Field.Index.TOKENIZED)); writer.addDocument (doc); doc = new Document(); doc.add (new Field("field", "one two three four", Field.Store.YES, Field.Index.TOKENIZED)); doc.add (new Field("sorter", "d", Field.Store.YES, Field.Index.TOKENIZED)); writer.addDocument (doc); doc = new Document(); doc.add (new Field("field", "one two three y", Field.Store.YES, Field.Index.TOKENIZED)); doc.add (new Field("sorter", "a", Field.Store.YES, Field.Index.TOKENIZED)); writer.addDocument (doc); doc = new Document(); doc.add (new Field("field", "one two x", Field.Store.YES, Field.Index.TOKENIZED)); doc.add (new Field("sorter", "c", Field.Store.YES, Field.Index.TOKENIZED)); writer.addDocument (doc); writer.optimize (); writer.close (); searcher = new IndexSearcher (directory); query = new TermQuery (new Term ("field", "three")); filter = new Filter() { public BitSet bits (IndexReader reader) { BitSet bitset = new BitSet(5); bitset.set (1); bitset.set (3); return bitset; } }; } public void tearDown() throws Exception { searcher.close(); directory.close(); } public void testFilteredQuery() throws Exception { Query filteredquery = new FilteredQuery (query, filter); Hits hits = searcher.search (filteredquery); assertEquals (1, hits.length()); assertEquals (1, hits.id(0)); QueryUtils.check(filteredquery,searcher); hits = searcher.search (filteredquery, new Sort("sorter")); assertEquals (1, hits.length()); assertEquals (1, hits.id(0)); filteredquery = new FilteredQuery (new TermQuery (new Term ("field", "one")), filter); hits = searcher.search (filteredquery); assertEquals (2, hits.length()); QueryUtils.check(filteredquery,searcher); filteredquery = new FilteredQuery (new TermQuery (new Term ("field", "x")), filter); hits = searcher.search (filteredquery); assertEquals (1, hits.length()); assertEquals (3, hits.id(0)); QueryUtils.check(filteredquery,searcher); filteredquery = new FilteredQuery (new TermQuery (new Term ("field", "y")), filter); hits = searcher.search (filteredquery); assertEquals (0, hits.length()); QueryUtils.check(filteredquery,searcher); } /** * This tests FilteredQuery's rewrite correctness */ public void testRangeQuery() throws Exception { RangeQuery rq = new RangeQuery( new Term("sorter", "b"), new Term("sorter", "d"), true); Query filteredquery = new FilteredQuery(rq, filter); Hits hits = searcher.search(filteredquery); assertEquals(2, hits.length()); QueryUtils.check(filteredquery,searcher); } public void testBoolean() throws Exception { BooleanQuery bq = new BooleanQuery(); Query query = new FilteredQuery(new MatchAllDocsQuery(), new SingleDocTestFilter(0)); bq.add(query, BooleanClause.Occur.MUST); query = new FilteredQuery(new MatchAllDocsQuery(), new SingleDocTestFilter(1)); bq.add(query, BooleanClause.Occur.MUST); Hits hits = searcher.search(bq); assertEquals(0, hits.length()); QueryUtils.check(query,searcher); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -