LUCENE-7331: Remove GeoPointTestUtil from TestGeoPointQuery.

This commit is contained in:
Nicholas Knize 2016-06-10 12:30:46 -05:00
parent b33d7176aa
commit f767855da3
1 changed files with 19 additions and 18 deletions

View File

@ -17,11 +17,14 @@
package org.apache.lucene.spatial.geopoint.search; package org.apache.lucene.spatial.geopoint.search;
import org.apache.lucene.document.Document; import org.apache.lucene.document.Document;
import org.apache.lucene.index.IndexReader;
import org.apache.lucene.index.RandomIndexWriter;
import org.apache.lucene.search.IndexSearcher;
import org.apache.lucene.search.Query; import org.apache.lucene.search.Query;
import org.apache.lucene.geo.BaseGeoPointTestCase; import org.apache.lucene.geo.BaseGeoPointTestCase;
import org.apache.lucene.geo.Polygon; import org.apache.lucene.geo.Polygon;
import org.apache.lucene.geo.Rectangle;
import org.apache.lucene.spatial.geopoint.document.GeoPointField; import org.apache.lucene.spatial.geopoint.document.GeoPointField;
import org.apache.lucene.store.Directory;
/** /**
* random testing for GeoPoint query logic * random testing for GeoPoint query logic
@ -60,25 +63,23 @@ public class TestGeoPointQuery extends BaseGeoPointTestCase {
return new GeoPointInPolygonQuery(field, polygons); return new GeoPointInPolygonQuery(field, polygons);
} }
// TODO: remove these once we get tests passing! /** explicit test failure for LUCENE-7325 */
public void testInvalidShift() throws Exception {
Directory dir = newDirectory();
RandomIndexWriter writer = new RandomIndexWriter(random(), dir);
@Override // add a doc with a point
protected double nextLongitude() { Document document = new Document();
return GeoPointTestUtil.nextLongitude(); addPointToDoc("field", document, 80, -65);
} writer.addDocument(document);
@Override // search and verify we found our doc
protected double nextLatitude() { IndexReader reader = writer.getReader();
return GeoPointTestUtil.nextLatitude(); IndexSearcher searcher = newSearcher(reader);
} assertEquals(0, searcher.count(newRectQuery("field", 90, 90, -180, 0)));
@Override reader.close();
protected Rectangle nextBox() { writer.close();
return GeoPointTestUtil.nextBox(); dir.close();
}
@Override
protected Polygon nextPolygon() {
return GeoPointTestUtil.nextPolygon();
} }
} }