/* * Licensed to ElasticSearch and Shay Banon under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. ElasticSearch 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.elasticsearch.test.integration.search.geo; import org.elasticsearch.action.search.SearchResponse; import org.elasticsearch.client.Client; import org.elasticsearch.common.xcontent.XContentFactory; import org.elasticsearch.search.SearchHit; import org.elasticsearch.test.integration.AbstractNodesTests; import org.testng.annotations.AfterClass; import org.testng.annotations.BeforeClass; import org.testng.annotations.Test; import static org.elasticsearch.common.settings.ImmutableSettings.settingsBuilder; import static org.elasticsearch.common.xcontent.XContentFactory.jsonBuilder; import static org.elasticsearch.index.query.FilterBuilders.geoBoundingBoxFilter; import static org.elasticsearch.index.query.QueryBuilders.*; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.Matchers.anyOf; import static org.hamcrest.Matchers.equalTo; /** * */ public class GeoBoundingBoxTests extends AbstractNodesTests { private Client client; @BeforeClass public void createNodes() throws Exception { startNode("server1"); startNode("server2"); client = getClient(); } @AfterClass public void closeNodes() { client.close(); closeAllNodes(); } protected Client getClient() { return client("server1"); } @Test public void simpleBoundingBoxTest() throws Exception { try { client.admin().indices().prepareDelete("test").execute().actionGet(); } catch (Exception e) { // ignore } String mapping = XContentFactory.jsonBuilder().startObject().startObject("type1") .startObject("properties").startObject("location").field("type", "geo_point").field("lat_lon", true).endObject().endObject() .endObject().endObject().string(); client.admin().indices().prepareCreate("test").addMapping("type1", mapping).execute().actionGet(); client.admin().cluster().prepareHealth().setWaitForGreenStatus().execute().actionGet(); client.prepareIndex("test", "type1", "1").setSource(jsonBuilder().startObject() .field("name", "New York") .startObject("location").field("lat", 40.7143528).field("lon", -74.0059731).endObject() .endObject()).execute().actionGet(); // to NY: 5.286 km client.prepareIndex("test", "type1", "2").setSource(jsonBuilder().startObject() .field("name", "Times Square") .startObject("location").field("lat", 40.759011).field("lon", -73.9844722).endObject() .endObject()).execute().actionGet(); // to NY: 0.4621 km client.prepareIndex("test", "type1", "3").setSource(jsonBuilder().startObject() .field("name", "Tribeca") .startObject("location").field("lat", 40.718266).field("lon", -74.007819).endObject() .endObject()).execute().actionGet(); // to NY: 1.055 km client.prepareIndex("test", "type1", "4").setSource(jsonBuilder().startObject() .field("name", "Wall Street") .startObject("location").field("lat", 40.7051157).field("lon", -74.0088305).endObject() .endObject()).execute().actionGet(); // to NY: 1.258 km client.prepareIndex("test", "type1", "5").setSource(jsonBuilder().startObject() .field("name", "Soho") .startObject("location").field("lat", 40.7247222).field("lon", -74).endObject() .endObject()).execute().actionGet(); // to NY: 2.029 km client.prepareIndex("test", "type1", "6").setSource(jsonBuilder().startObject() .field("name", "Greenwich Village") .startObject("location").field("lat", 40.731033).field("lon", -73.9962255).endObject() .endObject()).execute().actionGet(); // to NY: 8.572 km client.prepareIndex("test", "type1", "7").setSource(jsonBuilder().startObject() .field("name", "Brooklyn") .startObject("location").field("lat", 40.65).field("lon", -73.95).endObject() .endObject()).execute().actionGet(); client.admin().indices().prepareRefresh().execute().actionGet(); SearchResponse searchResponse = client.prepareSearch() // from NY .setQuery(filteredQuery(matchAllQuery(), geoBoundingBoxFilter("location").topLeft(40.73, -74.1).bottomRight(40.717, -73.99))) .execute().actionGet(); assertThat(searchResponse.hits().getTotalHits(), equalTo(2l)); assertThat(searchResponse.hits().hits().length, equalTo(2)); for (SearchHit hit : searchResponse.hits()) { assertThat(hit.id(), anyOf(equalTo("1"), equalTo("3"), equalTo("5"))); } searchResponse = client.prepareSearch() // from NY .setQuery(filteredQuery(matchAllQuery(), geoBoundingBoxFilter("location").topLeft(40.73, -74.1).bottomRight(40.717, -73.99).type("indexed"))) .execute().actionGet(); assertThat(searchResponse.hits().getTotalHits(), equalTo(2l)); assertThat(searchResponse.hits().hits().length, equalTo(2)); for (SearchHit hit : searchResponse.hits()) { assertThat(hit.id(), anyOf(equalTo("1"), equalTo("3"), equalTo("5"))); } } @Test public void limitsBoundingBoxTest() throws Exception { try { client.admin().indices().prepareDelete("test").execute().actionGet(); } catch (Exception e) { // ignore } String mapping = XContentFactory.jsonBuilder().startObject().startObject("type1") .startObject("properties").startObject("location").field("type", "geo_point").field("lat_lon", true).endObject().endObject() .endObject().endObject().string(); client.admin().indices().prepareCreate("test").addMapping("type1", mapping).setSettings(settingsBuilder().put("number_of_shards", "1")).execute().actionGet(); client.admin().cluster().prepareHealth().setWaitForGreenStatus().execute().actionGet(); client.prepareIndex("test", "type1", "1").setSource(jsonBuilder().startObject() .startObject("location").field("lat", 40).field("lon", -20).endObject() .endObject()).execute().actionGet(); client.prepareIndex("test", "type1", "2").setSource(jsonBuilder().startObject() .startObject("location").field("lat", 40).field("lon", -10).endObject() .endObject()).execute().actionGet(); client.prepareIndex("test", "type1", "3").setSource(jsonBuilder().startObject() .startObject("location").field("lat", 40).field("lon", 10).endObject() .endObject()).execute().actionGet(); client.prepareIndex("test", "type1", "4").setSource(jsonBuilder().startObject() .startObject("location").field("lat", 40).field("lon", 20).endObject() .endObject()).execute().actionGet(); client.prepareIndex("test", "type1", "5").setSource(jsonBuilder().startObject() .startObject("location").field("lat", 10).field("lon", -170).endObject() .endObject()).execute().actionGet(); client.prepareIndex("test", "type1", "6").setSource(jsonBuilder().startObject() .startObject("location").field("lat", 0).field("lon", -170).endObject() .endObject()).execute().actionGet(); client.prepareIndex("test", "type1", "7").setSource(jsonBuilder().startObject() .startObject("location").field("lat", -10).field("lon", -170).endObject() .endObject()).execute().actionGet(); client.prepareIndex("test", "type1", "8").setSource(jsonBuilder().startObject() .startObject("location").field("lat", 10).field("lon", 170).endObject() .endObject()).execute().actionGet(); client.prepareIndex("test", "type1", "9").setSource(jsonBuilder().startObject() .startObject("location").field("lat", 0).field("lon", 170).endObject() .endObject()).execute().actionGet(); client.prepareIndex("test", "type1", "10").setSource(jsonBuilder().startObject() .startObject("location").field("lat", -10).field("lon", 170).endObject() .endObject()).execute().actionGet(); client.admin().indices().prepareRefresh().execute().actionGet(); SearchResponse searchResponse = client.prepareSearch() .setQuery(filteredQuery(matchAllQuery(), geoBoundingBoxFilter("location").topLeft(41, -11).bottomRight(40, 9))) .execute().actionGet(); assertThat(searchResponse.hits().getTotalHits(), equalTo(1l)); assertThat(searchResponse.hits().hits().length, equalTo(1)); assertThat(searchResponse.hits().getAt(0).id(), equalTo("2")); searchResponse = client.prepareSearch() .setQuery(filteredQuery(matchAllQuery(), geoBoundingBoxFilter("location").topLeft(41, -11).bottomRight(40, 9).type("indexed"))) .execute().actionGet(); assertThat(searchResponse.hits().getTotalHits(), equalTo(1l)); assertThat(searchResponse.hits().hits().length, equalTo(1)); assertThat(searchResponse.hits().getAt(0).id(), equalTo("2")); searchResponse = client.prepareSearch() .setQuery(filteredQuery(matchAllQuery(), geoBoundingBoxFilter("location").topLeft(41, -9).bottomRight(40, 11))) .execute().actionGet(); assertThat(searchResponse.hits().getTotalHits(), equalTo(1l)); assertThat(searchResponse.hits().hits().length, equalTo(1)); assertThat(searchResponse.hits().getAt(0).id(), equalTo("3")); searchResponse = client.prepareSearch() .setQuery(filteredQuery(matchAllQuery(), geoBoundingBoxFilter("location").topLeft(41, -9).bottomRight(40, 11).type("indexed"))) .execute().actionGet(); assertThat(searchResponse.hits().getTotalHits(), equalTo(1l)); assertThat(searchResponse.hits().hits().length, equalTo(1)); assertThat(searchResponse.hits().getAt(0).id(), equalTo("3")); searchResponse = client.prepareSearch() .setQuery(filteredQuery(matchAllQuery(), geoBoundingBoxFilter("location").topLeft(11, 171).bottomRight(1, -169))) .execute().actionGet(); assertThat(searchResponse.hits().getTotalHits(), equalTo(1l)); assertThat(searchResponse.hits().hits().length, equalTo(1)); assertThat(searchResponse.hits().getAt(0).id(), equalTo("5")); searchResponse = client.prepareSearch() .setQuery(filteredQuery(matchAllQuery(), geoBoundingBoxFilter("location").topLeft(11, 171).bottomRight(1, -169).type("indexed"))) .execute().actionGet(); assertThat(searchResponse.hits().getTotalHits(), equalTo(1l)); assertThat(searchResponse.hits().hits().length, equalTo(1)); assertThat(searchResponse.hits().getAt(0).id(), equalTo("5")); searchResponse = client.prepareSearch() .setQuery(filteredQuery(matchAllQuery(), geoBoundingBoxFilter("location").topLeft(9, 169).bottomRight(-1, -171))) .execute().actionGet(); assertThat(searchResponse.hits().getTotalHits(), equalTo(1l)); assertThat(searchResponse.hits().hits().length, equalTo(1)); assertThat(searchResponse.hits().getAt(0).id(), equalTo("9")); searchResponse = client.prepareSearch() .setQuery(filteredQuery(matchAllQuery(), geoBoundingBoxFilter("location").topLeft(9, 169).bottomRight(-1, -171).type("indexed"))) .execute().actionGet(); assertThat(searchResponse.hits().getTotalHits(), equalTo(1l)); assertThat(searchResponse.hits().hits().length, equalTo(1)); assertThat(searchResponse.hits().getAt(0).id(), equalTo("9")); } @Test public void limit2BoundingBoxTest() throws Exception { try { client.admin().indices().prepareDelete("test").execute().actionGet(); } catch (Exception e) { // ignore } String mapping = XContentFactory.jsonBuilder().startObject().startObject("type1") .startObject("properties").startObject("location").field("type", "geo_point").field("lat_lon", true).endObject().endObject() .endObject().endObject().string(); client.admin().indices().prepareCreate("test").addMapping("type1", mapping).setSettings(settingsBuilder().put("number_of_shards", "1")).execute().actionGet(); client.admin().cluster().prepareHealth().setWaitForGreenStatus().execute().actionGet(); client.prepareIndex("test", "type1", "1").setSource(jsonBuilder().startObject() .field("userid", 880) .field("title", "Place in Stockholm") .startObject("location").field("lat", 59.328355000000002).field("lon", 18.036842).endObject() .endObject()) .setRefresh(true) .execute().actionGet(); client.prepareIndex("test", "type1", "2").setSource(jsonBuilder().startObject() .field("userid", 534) .field("title", "Place in Montreal") .startObject("location").field("lat", 45.509526999999999).field("lon", -73.570986000000005).endObject() .endObject()) .setRefresh(true) .execute().actionGet(); SearchResponse searchResponse = client.prepareSearch() .setQuery( filteredQuery(termQuery("userid", 880), geoBoundingBoxFilter("location").topLeft(74.579421999999994, 143.5).bottomRight(-66.668903999999998, 113.96875)) ).execute().actionGet(); assertThat(searchResponse.hits().totalHits(), equalTo(1l)); searchResponse = client.prepareSearch() .setQuery( filteredQuery(termQuery("userid", 880), geoBoundingBoxFilter("location").topLeft(74.579421999999994, 143.5).bottomRight(-66.668903999999998, 113.96875).type("indexed")) ).execute().actionGet(); assertThat(searchResponse.hits().totalHits(), equalTo(1l)); searchResponse = client.prepareSearch() .setQuery( filteredQuery(termQuery("userid", 534), geoBoundingBoxFilter("location").topLeft(74.579421999999994, 143.5).bottomRight(-66.668903999999998, 113.96875)) ).execute().actionGet(); assertThat(searchResponse.hits().totalHits(), equalTo(1l)); searchResponse = client.prepareSearch() .setQuery( filteredQuery(termQuery("userid", 534), geoBoundingBoxFilter("location").topLeft(74.579421999999994, 143.5).bottomRight(-66.668903999999998, 113.96875).type("indexed")) ).execute().actionGet(); assertThat(searchResponse.hits().totalHits(), equalTo(1l)); } }