blob: 6380b732e68e59b400ec6707a71b015f411d15c0 [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;
import java.util.Arrays;
import java.util.Collections;
import org.apache.lucene.document.Document;
import org.apache.lucene.document.Field;
import org.apache.lucene.document.NumericDocValuesField;
import org.apache.lucene.index.IndexReader;
import org.apache.lucene.index.RandomIndexWriter;
import org.apache.lucene.index.Term;
import org.apache.lucene.store.Directory;
import org.apache.lucene.util.ArrayUtil;
import org.apache.lucene.util.English;
import org.apache.lucene.util.LuceneTestCase;
import org.apache.lucene.util.TestUtil;
public class TestLongValuesSource extends LuceneTestCase {
private static final long LEAST_LONG_VALUE = 45L;
private Directory dir;
private IndexReader reader;
private IndexSearcher searcher;
@Override
public void setUp() throws Exception {
super.setUp();
dir = newDirectory();
RandomIndexWriter iw = new RandomIndexWriter(random(), dir);
int numDocs = TestUtil.nextInt(random(), 2049, 4000);
int leastValue = 45;
for (int i = 0; i < numDocs; i++) {
Document document = new Document();
document.add(newTextField("english", English.intToEnglish(i), Field.Store.NO));
document.add(newTextField("oddeven", (i % 2 == 0) ? "even" : "odd", Field.Store.NO));
document.add(new NumericDocValuesField("int", random().nextInt()));
document.add(new NumericDocValuesField("long", random().nextLong()));
if (i == 545)
document.add(new NumericDocValuesField("onefield", LEAST_LONG_VALUE));
iw.addDocument(document);
}
reader = iw.getReader();
iw.close();
searcher = newSearcher(reader);
}
@Override
public void tearDown() throws Exception {
reader.close();
dir.close();
super.tearDown();
}
public void testSortMissingZeroDefault() throws Exception {
// docs w/no value get default missing value = 0
LongValuesSource onefield = LongValuesSource.fromLongField("onefield");
// sort decreasing
TopDocs results = searcher.search(new MatchAllDocsQuery(), 1, new Sort(onefield.getSortField(true)));
FieldDoc first = (FieldDoc) results.scoreDocs[0];
assertEquals(LEAST_LONG_VALUE, first.fields[0]);
// sort increasing
results = searcher.search(new MatchAllDocsQuery(), 1, new Sort(onefield.getSortField(false)));
first = (FieldDoc) results.scoreDocs[0];
assertEquals(0L, first.fields[0]);
}
public void testSortMissingExplicit() throws Exception {
// docs w/no value get provided missing value
LongValuesSource onefield = LongValuesSource.fromLongField("onefield");
// sort decreasing, missing last
SortField oneFieldSort = onefield.getSortField(true);
oneFieldSort.setMissingValue(Long.MIN_VALUE);
TopDocs results = searcher.search(new MatchAllDocsQuery(), 1, new Sort(oneFieldSort));
FieldDoc first = (FieldDoc) results.scoreDocs[0];
assertEquals(LEAST_LONG_VALUE, first.fields[0]);
// sort increasing, missing last
oneFieldSort = onefield.getSortField(false);
oneFieldSort.setMissingValue(Long.MAX_VALUE);
results = searcher.search(new MatchAllDocsQuery(), 1, new Sort(oneFieldSort));
first = (FieldDoc) results.scoreDocs[0];
assertEquals(LEAST_LONG_VALUE, first.fields[0]);
}
public void testSimpleFieldEquivalences() throws Exception {
checkSorts(new MatchAllDocsQuery(), new Sort(new SortField("int", SortField.Type.INT, random().nextBoolean())));
checkSorts(new MatchAllDocsQuery(), new Sort(new SortField("long", SortField.Type.LONG, random().nextBoolean())));
}
public void testHashCodeAndEquals() {
LongValuesSource vs1 = LongValuesSource.fromLongField("long");
LongValuesSource vs2 = LongValuesSource.fromLongField("long");
assertEquals(vs1, vs2);
assertEquals(vs1.hashCode(), vs2.hashCode());
LongValuesSource v3 = LongValuesSource.fromLongField("int");
assertFalse(vs1.equals(v3));
}
public void testSimpleFieldSortables() throws Exception {
int n = atLeast(4);
for (int i = 0; i < n; i++) {
Sort sort = randomSort();
checkSorts(new MatchAllDocsQuery(), sort);
checkSorts(new TermQuery(new Term("english", "one")), sort);
}
}
Sort randomSort() throws Exception {
boolean reversed = random().nextBoolean();
SortField fields[] = new SortField[] {
new SortField("int", SortField.Type.INT, reversed),
new SortField("long", SortField.Type.LONG, reversed)
};
Collections.shuffle(Arrays.asList(fields), random());
int numSorts = TestUtil.nextInt(random(), 1, fields.length);
return new Sort(ArrayUtil.copyOfSubArray(fields, 0, numSorts));
}
// Take a Sort, and replace any field sorts with Sortables
Sort convertSortToSortable(Sort sort) {
SortField original[] = sort.getSort();
SortField mutated[] = new SortField[original.length];
for (int i = 0; i < mutated.length; i++) {
if (random().nextInt(3) > 0) {
SortField s = original[i];
boolean reverse = s.getType() == SortField.Type.SCORE || s.getReverse();
switch (s.getType()) {
case INT:
mutated[i] = LongValuesSource.fromIntField(s.getField()).getSortField(reverse);
break;
case LONG:
mutated[i] = LongValuesSource.fromLongField(s.getField()).getSortField(reverse);
break;
default:
mutated[i] = original[i];
}
} else {
mutated[i] = original[i];
}
}
return new Sort(mutated);
}
void checkSorts(Query query, Sort sort) throws Exception {
int size = TestUtil.nextInt(random(), 1, searcher.getIndexReader().maxDoc() / 5);
Sort mutatedSort = convertSortToSortable(sort);
TopDocs actual = searcher.search(query, size, mutatedSort, random().nextBoolean());
TopDocs expected = searcher.search(query, size, sort, random().nextBoolean());
CheckHits.checkEqual(query, expected.scoreDocs, actual.scoreDocs);
if (size < actual.totalHits.value) {
expected = searcher.searchAfter(expected.scoreDocs[size-1], query, size, sort);
actual = searcher.searchAfter(actual.scoreDocs[size-1], query, size, mutatedSort);
CheckHits.checkEqual(query, expected.scoreDocs, actual.scoreDocs);
}
}
}