TestSpanspublic class TestSpans extends TestCase Copyright 2004 The Apache Software Foundation
Licensed 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. |
Fields Summary |
---|
private IndexSearcher | searcher | public static final String | field | private String[] | docFields |
Methods Summary |
---|
private void | checkHits(org.apache.lucene.search.Query query, int[] results)
CheckHits.checkHits(query, field, searcher, results, this);
| public org.apache.lucene.search.spans.SpanTermQuery | makeSpanTermQuery(java.lang.String text)
return new SpanTermQuery(new Term(field, text));
| public void | orderedSlopTest3(int slop, int[] expectedDocs)
SpanTermQuery w1 = makeSpanTermQuery("w1");
SpanTermQuery w2 = makeSpanTermQuery("w2");
SpanTermQuery w3 = makeSpanTermQuery("w3");
boolean ordered = true;
SpanNearQuery snq = new SpanNearQuery( new SpanQuery[]{w1,w2,w3}, slop, ordered);
checkHits(snq, expectedDocs);
| public void | setUp()
RAMDirectory directory = new RAMDirectory();
IndexWriter writer= new IndexWriter(directory, new WhitespaceAnalyzer(), true);
StringBuffer buffer = new StringBuffer();
for (int i = 0; i < docFields.length; i++) {
Document doc = new Document();
doc.add(Field.Text(field, docFields[i]));
writer.addDocument(doc);
}
writer.close();
searcher = new IndexSearcher(directory);
| public void | testSpanNearOrdered01()
orderedSlopTest3(0, new int[] {0});
| public void | testSpanNearOrdered02()
orderedSlopTest3(1, new int[] {0,1});
| public void | testSpanNearOrdered03()
orderedSlopTest3(2, new int[] {0,1,2});
| public void | testSpanNearOrdered04()
orderedSlopTest3(3, new int[] {0,1,2,3});
| public void | testSpanNearOrdered05()
orderedSlopTest3(4, new int[] {0,1,2,3});
|
|