Skip to content

Commit

Permalink
LUCENE-6339: fix test (ensure the maximum requested size is bounded t…
Browse files Browse the repository at this point in the history
…o 1000)

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1671196 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
areek committed Apr 3, 2015
1 parent 796416d commit 474b304
Showing 1 changed file with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ public void testMultipleSuggestFieldsPerDoc() throws Exception {
public void testDupSuggestFieldValues() throws Exception {
Analyzer analyzer = new MockAnalyzer(random());
RandomIndexWriter iw = new RandomIndexWriter(random(), dir, iwcWithSuggestField(analyzer, "suggest_field"));
int num = atLeast(300);
int num = Math.min(1000, atLeast(300));
long[] weights = new long[num];
for(int i = 0; i < num; i++) {
Document document = new Document();
Expand Down Expand Up @@ -182,7 +182,7 @@ public void testNRTDeletedDocFiltering() throws Exception {
// using IndexWriter instead of RandomIndexWriter
IndexWriter iw = new IndexWriter(dir, iwcWithSuggestField(analyzer, "suggest_field"));

int num = atLeast(10);
int num = Math.min(1000, atLeast(10));

Document document = new Document();
int numLive = 0;
Expand Down Expand Up @@ -219,7 +219,7 @@ public void testNRTDeletedDocFiltering() throws Exception {
public void testSuggestOnAllFilteredDocuments() throws Exception {
Analyzer analyzer = new MockAnalyzer(random());
RandomIndexWriter iw = new RandomIndexWriter(random(), dir, iwcWithSuggestField(analyzer, "suggest_field"));
int num = atLeast(10);
int num = Math.min(1000, atLeast(10));
Document document = new Document();
for (int i = 0; i < num; i++) {
document.add(newSuggestField("suggest_field", "abc_" + i, i));
Expand Down Expand Up @@ -248,7 +248,7 @@ public void testSuggestOnAllDeletedDocuments() throws Exception {
Analyzer analyzer = new MockAnalyzer(random());
// using IndexWriter instead of RandomIndexWriter
IndexWriter iw = new IndexWriter(dir, iwcWithSuggestField(analyzer, "suggest_field"));
int num = atLeast(10);
int num = Math.min(1000, atLeast(10));
Document document = new Document();
for (int i = 0; i < num; i++) {
document.add(newSuggestField("suggest_field", "abc_" + i, i));
Expand Down Expand Up @@ -277,7 +277,7 @@ public void testSuggestOnMostlyDeletedDocuments() throws Exception {
Analyzer analyzer = new MockAnalyzer(random());
// using IndexWriter instead of RandomIndexWriter
IndexWriter iw = new IndexWriter(dir, iwcWithSuggestField(analyzer, "suggest_field"));
int num = atLeast(10);
int num = Math.min(1000, atLeast(10));
Document document = new Document();
for (int i = 1; i <= num; i++) {
document.add(newSuggestField("suggest_field", "abc_" + i, i));
Expand Down Expand Up @@ -305,7 +305,7 @@ public void testSuggestOnMostlyDeletedDocuments() throws Exception {
public void testSuggestOnMostlyFilteredOutDocuments() throws Exception {
Analyzer analyzer = new MockAnalyzer(random());
RandomIndexWriter iw = new RandomIndexWriter(random(), dir, iwcWithSuggestField(analyzer, "suggest_field"));
int num = atLeast(10);
int num = Math.min(1000, atLeast(10));
Document document = new Document();
for (int i = 0; i < num; i++) {
document.add(newSuggestField("suggest_field", "abc_" + i, i));
Expand Down Expand Up @@ -351,7 +351,7 @@ public void testSuggestOnMostlyFilteredOutDocuments() throws Exception {
public void testEarlyTermination() throws Exception {
Analyzer analyzer = new MockAnalyzer(random());
RandomIndexWriter iw = new RandomIndexWriter(random(), dir, iwcWithSuggestField(analyzer, "suggest_field"));
int num = atLeast(10);
int num = Math.min(1000, atLeast(10));
Document document = new Document();

// have segments of 4 documents
Expand Down Expand Up @@ -379,7 +379,7 @@ public void testEarlyTermination() throws Exception {
public void testMultipleSegments() throws Exception {
Analyzer analyzer = new MockAnalyzer(random());
RandomIndexWriter iw = new RandomIndexWriter(random(), dir, iwcWithSuggestField(analyzer, "suggest_field"));
int num = atLeast(10);
int num = Math.min(1000, atLeast(10));
Document document = new Document();
List<Entry> entries = new ArrayList<>();

Expand Down Expand Up @@ -452,7 +452,7 @@ public void testReturnedDocID() throws Exception {
RandomIndexWriter iw = new RandomIndexWriter(random(), dir, iwcWithSuggestField(analyzer, "suggest_field"));

Document document = new Document();
int num = atLeast(10);
int num = Math.min(1000, atLeast(10));
for (int i = 0; i < num; i++) {
document.add(newSuggestField("suggest_field", "abc_" + i, num));
document.add(new IntField("int_field", i, Field.Store.YES));
Expand Down Expand Up @@ -550,7 +550,7 @@ public void testScoring() throws Exception {
Analyzer analyzer = new MockAnalyzer(random());
RandomIndexWriter iw = new RandomIndexWriter(random(), dir, iwcWithSuggestField(analyzer, "suggest_field"));

int num = atLeast(100);
int num = Math.min(1000, atLeast(100));
String[] prefixes = {"abc", "bac", "cab"};
Map<String, Long> mappings = new HashMap<>();
for (int i = 0; i < num; i++) {
Expand Down Expand Up @@ -592,7 +592,7 @@ public void testRealisticKeys() throws Exception {
Analyzer analyzer = new MockAnalyzer(random());
RandomIndexWriter iw = new RandomIndexWriter(random(), dir, iwcWithSuggestField(analyzer, "suggest_field"));
LineFileDocs lineFileDocs = new LineFileDocs(random());
int num = atLeast(100);
int num = Math.min(1000, atLeast(100));
Map<String, Long> mappings = new HashMap<>();
for (int i = 0; i < num; i++) {
Document document = lineFileDocs.nextDoc();
Expand Down Expand Up @@ -637,7 +637,7 @@ public void testRealisticKeys() throws Exception {
public void testThreads() throws Exception {
Analyzer analyzer = new MockAnalyzer(random());
RandomIndexWriter iw = new RandomIndexWriter(random(), dir, iwcWithSuggestField(analyzer, "suggest_field_1", "suggest_field_2", "suggest_field_3"));
int num = atLeast(100);
int num = Math.min(1000, atLeast(100));
final String prefix1 = "abc1_";
final String prefix2 = "abc2_";
final String prefix3 = "abc3_";
Expand Down

0 comments on commit 474b304

Please sign in to comment.