Skip to content
Snippets Groups Projects
nominatim_test.rb 1.64 KiB
Newer Older
# encoding: utf-8
require 'test_helper'

class NominatimTest < GeocoderTestCase

  def setup
    Geocoder.configure(lookup: :nominatim)
    set_api_key!(:nominatim)
  end

  def test_result_components
    result = Geocoder.search("Madison Square Garden, New York, NY").first
    assert_equal "10001", result.postal_code
    assert_nil result.city_district
    assert_nil result.state_district
    assert_nil result.neighbourhood
    assert_equal "Madison Square Garden, West 31st Street, Long Island City, New York City, New York, 10001, United States of America", result.address
  end

  def test_result_viewport
    result = Geocoder.search("Madison Square Garden, New York, NY").first
    assert_equal [40.749828338623, -73.9943389892578, 40.7511596679688, -73.9926528930664],
      result.viewport
  end

  def test_city_state_district
    result = Geocoder.search("cologne cathedral cologne germany").first
    assert_equal "Innenstadt", result.city_district
    assert_equal "Cologne Government Region", result.state_district
  end

  def test_neighbourhood
    result = Geocoder.search("cologne cathedral cologne germany").first
    assert_equal "Kunibertsviertel", result.neighbourhood
  end

  def test_host_configuration
    Geocoder.configure(nominatim: {host: "local.com"})
    query = Geocoder::Query.new("Bluffton, SC")
Alex Reisner's avatar
Alex Reisner committed
    assert_match %r(https://local\.com), query.url

  def test_raises_exception_when_over_query_limit
    Geocoder.configure(:always_raise => [Geocoder::OverQueryLimitError])
    l = Geocoder::Lookup.get(:nominatim)
    assert_raises Geocoder::OverQueryLimitError do
      l.send(:results, Geocoder::Query.new("over limit"))
    end
  end