X-Git-Url: https://git.mdrn.pl/pylucene.git/blobdiff_plain/a2e61f0c04805cfcb8706176758d1283c7e3a55c..aaeed5504b982cf3545252ab528713250aa33eed:/lucene-java-3.4.0/lucene/backwards/src/test/org/apache/lucene/search/payloads/TestPayloadNearQuery.java diff --git a/lucene-java-3.4.0/lucene/backwards/src/test/org/apache/lucene/search/payloads/TestPayloadNearQuery.java b/lucene-java-3.4.0/lucene/backwards/src/test/org/apache/lucene/search/payloads/TestPayloadNearQuery.java deleted file mode 100644 index 03b19a0..0000000 --- a/lucene-java-3.4.0/lucene/backwards/src/test/org/apache/lucene/search/payloads/TestPayloadNearQuery.java +++ /dev/null @@ -1,345 +0,0 @@ -package org.apache.lucene.search.payloads; -/** - * 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 java.io.IOException; -import java.io.Reader; -import java.util.Collection; - -import org.apache.lucene.analysis.Analyzer; -import org.apache.lucene.analysis.LowerCaseTokenizer; -import org.apache.lucene.analysis.TokenFilter; -import org.apache.lucene.analysis.TokenStream; -import org.apache.lucene.analysis.tokenattributes.PayloadAttribute; -import org.apache.lucene.document.Document; -import org.apache.lucene.document.Field; -import org.apache.lucene.index.FieldInvertState; -import org.apache.lucene.index.IndexReader; -import org.apache.lucene.index.Payload; -import org.apache.lucene.index.RandomIndexWriter; -import org.apache.lucene.index.Term; -import org.apache.lucene.search.DefaultSimilarity; -import org.apache.lucene.search.Explanation; -import org.apache.lucene.search.IndexSearcher; -import org.apache.lucene.search.QueryUtils; -import org.apache.lucene.search.ScoreDoc; -import org.apache.lucene.search.Searcher; -import org.apache.lucene.search.TopDocs; -import org.apache.lucene.search.spans.SpanQuery; -import org.apache.lucene.search.spans.SpanNearQuery; -import org.apache.lucene.search.spans.SpanTermQuery; -import org.apache.lucene.store.Directory; -import org.apache.lucene.util.English; -import org.apache.lucene.util.LuceneTestCase; -import org.apache.lucene.search.Explanation.IDFExplanation; -import org.junit.AfterClass; -import org.junit.BeforeClass; - - -public class TestPayloadNearQuery extends LuceneTestCase { - private static IndexSearcher searcher; - private static IndexReader reader; - private static Directory directory; - private static BoostingSimilarity similarity = new BoostingSimilarity(); - private static byte[] payload2 = new byte[]{2}; - private static byte[] payload4 = new byte[]{4}; - - private static class PayloadAnalyzer extends Analyzer { - @Override - public TokenStream tokenStream(String fieldName, Reader reader) { - TokenStream result = new LowerCaseTokenizer(TEST_VERSION_CURRENT, reader); - result = new PayloadFilter(result, fieldName); - return result; - } - } - - private static class PayloadFilter extends TokenFilter { - String fieldName; - int numSeen = 0; - protected PayloadAttribute payAtt; - - public PayloadFilter(TokenStream input, String fieldName) { - super(input); - this.fieldName = fieldName; - payAtt = addAttribute(PayloadAttribute.class); - } - - @Override - public boolean incrementToken() throws IOException { - boolean result = false; - if (input.incrementToken() == true){ - if (numSeen % 2 == 0) { - payAtt.setPayload(new Payload(payload2)); - } else { - payAtt.setPayload(new Payload(payload4)); - } - numSeen++; - result = true; - } - return result; - } - } - - private PayloadNearQuery newPhraseQuery (String fieldName, String phrase, boolean inOrder, PayloadFunction function ) { - String[] words = phrase.split("[\\s]+"); - SpanQuery clauses[] = new SpanQuery[words.length]; - for (int i=0;i -1); - assertTrue(hits.scoreDocs[j].score + " explain value does not equal: " + 3, explain.getValue() == 3f); - } - } - public void testMaxFunction() throws IOException { - PayloadNearQuery query; - TopDocs hits; - - query = newPhraseQuery("field", "twenty two", true, new MaxPayloadFunction()); - QueryUtils.check(query); - // all 10 hits should have score = 4 (max payload value) - hits = searcher.search(query, null, 100); - assertTrue("hits is null and it shouldn't be", hits != null); - assertTrue("should be 10 hits", hits.totalHits == 10); - for (int j = 0; j < hits.scoreDocs.length; j++) { - ScoreDoc doc = hits.scoreDocs[j]; - assertTrue(doc.score + " does not equal: " + 4, doc.score == 4); - Explanation explain = searcher.explain(query, hits.scoreDocs[j].doc); - String exp = explain.toString(); - assertTrue(exp, exp.indexOf("MaxPayloadFunction") > -1); - assertTrue(hits.scoreDocs[j].score + " explain value does not equal: " + 4, explain.getValue() == 4f); - } - } - public void testMinFunction() throws IOException { - PayloadNearQuery query; - TopDocs hits; - - query = newPhraseQuery("field", "twenty two", true, new MinPayloadFunction()); - QueryUtils.check(query); - // all 10 hits should have score = 2 (min payload value) - hits = searcher.search(query, null, 100); - assertTrue("hits is null and it shouldn't be", hits != null); - assertTrue("should be 10 hits", hits.totalHits == 10); - for (int j = 0; j < hits.scoreDocs.length; j++) { - ScoreDoc doc = hits.scoreDocs[j]; - assertTrue(doc.score + " does not equal: " + 2, doc.score == 2); - Explanation explain = searcher.explain(query, hits.scoreDocs[j].doc); - String exp = explain.toString(); - assertTrue(exp, exp.indexOf("MinPayloadFunction") > -1); - assertTrue(hits.scoreDocs[j].score + " explain value does not equal: " + 2, explain.getValue() == 2f); - } - } - private SpanQuery[] getClauses() { - SpanNearQuery q1, q2; - q1 = spanNearQuery("field2", "twenty two"); - q2 = spanNearQuery("field2", "twenty three"); - SpanQuery[] clauses = new SpanQuery[2]; - clauses[0] = q1; - clauses[1] = q2; - return clauses; - } - private SpanNearQuery spanNearQuery(String fieldName, String words) { - String[] wordList = words.split("[\\s]+"); - SpanQuery clauses[] = new SpanQuery[wordList.length]; - for (int i=0;i terms, Searcher searcher) throws IOException { - return new IDFExplanation() { - @Override - public float getIdf() { - return 1.0f; - } - @Override - public String explain() { - return "Inexplicable"; - } - }; - } - } -}