blob: fbc098c612f3c3be6954995081bac38383c3e4dc [file] [log] [blame]
/*
* 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.
*/
package org.apache.lucene.search.spans;
import java.io.IOException;
import org.apache.lucene.document.Document;
import org.apache.lucene.document.Field;
import org.apache.lucene.document.StringField;
import org.apache.lucene.index.IndexReader;
import org.apache.lucene.index.RandomIndexWriter;
import org.apache.lucene.index.Term;
import org.apache.lucene.search.IndexSearcher;
import org.apache.lucene.search.QueryUtils;
import org.apache.lucene.store.Directory;
import org.apache.lucene.util.LuceneTestCase;
/** Basic tests for SpanNearQuery */
public class TestSpanNearQuery extends LuceneTestCase {
public void testHashcodeEquals() {
SpanTermQuery q1 = new SpanTermQuery(new Term("field", "foo"));
SpanTermQuery q2 = new SpanTermQuery(new Term("field", "bar"));
SpanTermQuery q3 = new SpanTermQuery(new Term("field", "baz"));
SpanNearQuery near1 = new SpanNearQuery(new SpanQuery[] { q1, q2 }, 10, true);
SpanNearQuery near2 = new SpanNearQuery(new SpanQuery[] { q2, q3 }, 10, true);
QueryUtils.check(near1);
QueryUtils.check(near2);
QueryUtils.checkUnequal(near1, near2);
}
public void testDifferentField() throws Exception {
SpanTermQuery q1 = new SpanTermQuery(new Term("field1", "foo"));
SpanTermQuery q2 = new SpanTermQuery(new Term("field2", "bar"));
IllegalArgumentException expected = expectThrows(IllegalArgumentException.class, () -> {
new SpanNearQuery(new SpanQuery[] { q1, q2 }, 10, true);
});
assertTrue(expected.getMessage().contains("must have same field"));
}
public void testNoPositions() throws IOException {
Directory dir = newDirectory();
RandomIndexWriter iw = new RandomIndexWriter(random(), dir);
Document doc = new Document();
doc.add(new StringField("foo", "bar", Field.Store.NO));
iw.addDocument(doc);
IndexReader ir = iw.getReader();
iw.close();
IndexSearcher is = new IndexSearcher(ir);
SpanTermQuery query = new SpanTermQuery(new Term("foo", "bar"));
SpanTermQuery query2 = new SpanTermQuery(new Term("foo", "baz"));
IllegalStateException expected = expectThrows(IllegalStateException.class, () -> {
is.search(new SpanNearQuery(new SpanQuery[] { query, query2 }, 10, true), 5);
});
assertTrue(expected.getMessage().contains("was indexed without position data"));
ir.close();
dir.close();
}
public void testBuilder() throws Exception {
// Can't add subclauses from different fields
expectThrows(IllegalArgumentException.class, () -> {
SpanNearQuery.newOrderedNearQuery("field1").addClause(new SpanTermQuery(new Term("field2", "term")));
});
// Can't add gaps to unordered queries
expectThrows(IllegalArgumentException.class, () -> {
SpanNearQuery.newUnorderedNearQuery("field1").addGap(1);
});
}
}