mirror of https://github.com/apache/lucene.git
SOLR-10864: Fixup: Restore the DV vs trie vs points intent of TestRandomDVFaceting
This commit is contained in:
parent
26d2ed7c4d
commit
f3c851a015
|
@ -28,6 +28,8 @@ import org.apache.lucene.util.LuceneTestCase.Slow;
|
||||||
import org.apache.solr.common.params.ModifiableSolrParams;
|
import org.apache.solr.common.params.ModifiableSolrParams;
|
||||||
import org.apache.solr.request.SolrQueryRequest;
|
import org.apache.solr.request.SolrQueryRequest;
|
||||||
import org.apache.solr.schema.SchemaField;
|
import org.apache.solr.schema.SchemaField;
|
||||||
|
import org.apache.solr.schema.TrieIntField;
|
||||||
|
import org.apache.solr.schema.IntPointField;
|
||||||
import org.junit.BeforeClass;
|
import org.junit.BeforeClass;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
|
@ -39,18 +41,36 @@ import org.slf4j.LoggerFactory;
|
||||||
* to the indexed facet results as if it were just another faceting method.
|
* to the indexed facet results as if it were just another faceting method.
|
||||||
*/
|
*/
|
||||||
@Slow
|
@Slow
|
||||||
|
@SolrTestCaseJ4.SuppressPointFields(bugUrl="Test explicitly compares Trie to Points, randomization defeats the point")
|
||||||
public class TestRandomDVFaceting extends SolrTestCaseJ4 {
|
public class TestRandomDVFaceting extends SolrTestCaseJ4 {
|
||||||
|
|
||||||
private static final Logger log = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
|
private static final Logger log = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
|
||||||
|
|
||||||
@BeforeClass
|
@BeforeClass
|
||||||
public static void beforeTests() throws Exception {
|
public static void beforeTests() throws Exception {
|
||||||
// we need DVs on point fields to compute stats & facets
|
// This tests explicitly compares Trie DV with non-DV Trie with DV Points
|
||||||
// but test also has hard coded assumptions about these field types *NOT* having DV when *NOT* points
|
// so we don't want randomized DocValues on all Trie fields
|
||||||
// so use docvalue if and only if we are using points...
|
System.setProperty(NUMERIC_DOCVALUES_SYSPROP, "false");
|
||||||
System.setProperty(NUMERIC_DOCVALUES_SYSPROP, System.getProperty(NUMERIC_POINTS_SYSPROP));
|
|
||||||
|
|
||||||
initCore("solrconfig-basic.xml","schema-docValuesFaceting.xml");
|
initCore("solrconfig-basic.xml","schema-docValuesFaceting.xml");
|
||||||
|
|
||||||
|
assertEquals("DocValues: Schema assumptions are broken",
|
||||||
|
false, h.getCore().getLatestSchema().getField("foo_i").hasDocValues());
|
||||||
|
assertEquals("DocValues: Schema assumptions are broken",
|
||||||
|
true, h.getCore().getLatestSchema().getField("foo_i_dv").hasDocValues());
|
||||||
|
assertEquals("DocValues: Schema assumptions are broken",
|
||||||
|
true, h.getCore().getLatestSchema().getField("foo_i_p").hasDocValues());
|
||||||
|
|
||||||
|
assertEquals("Type: Schema assumptions are broken",
|
||||||
|
TrieIntField.class,
|
||||||
|
h.getCore().getLatestSchema().getField("foo_i").getType().getClass());
|
||||||
|
assertEquals("Type: Schema assumptions are broken",
|
||||||
|
TrieIntField.class,
|
||||||
|
h.getCore().getLatestSchema().getField("foo_i_dv").getType().getClass());
|
||||||
|
assertEquals("Type: Schema assumptions are broken",
|
||||||
|
IntPointField.class,
|
||||||
|
h.getCore().getLatestSchema().getField("foo_i_p").getType().getClass());
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int indexSize;
|
int indexSize;
|
||||||
|
|
Loading…
Reference in New Issue