Sha256: 56a41f6376aed67f96bce775a80de012dc579e88b23df5daf1fc20c974f60ef8

Contents?: true

Size: 1.79 KB

Versions: 8

Compression:

Stored size: 1.79 KB

Contents

require 'test/unit'
require 'net/http'
require 'rubygems'
require 'mocha'
require 'lib/geokit'

class MockSuccess < Net::HTTPSuccess #:nodoc: all
  def initialize
  end
end

class MockFailure < Net::HTTPServiceUnavailable #:nodoc: all
  def initialize
  end
end

# Base class for testing geocoders.
class BaseGeocoderTest < Test::Unit::TestCase #:nodoc: all

  class Geokit::Geocoders::TestGeocoder < Geokit::Geocoders::Geocoder
    def self.do_get(url)
      sleep(2)
    end    
  end

  # Defines common test fixtures.
  def setup
    @address = 'San Francisco, CA'    
    @full_address = '100 Spear St, San Francisco, CA, 94105-1522, US'   
    @full_address_short_zip = '100 Spear St, San Francisco, CA, 94105, US' 
    
    @latlng = Geokit::LatLng.new(37.7742, -122.417068)
    @success = Geokit::GeoLoc.new({:city=>"SAN FRANCISCO", :state=>"CA", :country_code=>"US", :lat=>@latlng.lat, :lng=>@latlng.lng})
    @success.success = true    
  end  
  
  def test_timeout_call_web_service
    url = "http://www.anything.com"
    Geokit::Geocoders::timeout = 1
    assert_nil Geokit::Geocoders::TestGeocoder.call_geocoder_service(url)    
  end
  
  def test_successful_call_web_service
    url = "http://www.anything.com"
    Geokit::Geocoders::Geocoder.expects(:do_get).with(url).returns("SUCCESS")
    assert_equal "SUCCESS", Geokit::Geocoders::Geocoder.call_geocoder_service(url)
  end
  
  def test_find_geocoder_methods
    public_methods = Geokit::Geocoders::Geocoder.public_methods.map { |m| m.to_s }
    assert public_methods.include?("yahoo_geocoder")
    assert public_methods.include?("google_geocoder")
    assert public_methods.include?("ca_geocoder")
    assert public_methods.include?("us_geocoder")
    assert public_methods.include?("multi_geocoder")
    assert public_methods.include?("ip_geocoder")
  end
end

Version data entries

8 entries across 8 versions & 7 rubygems

Version Path
Pr0d1r2-geokit-1.4.1 test/test_base_geocoder.rb
andre-geokit-1.4.0 test/test_base_geocoder.rb
darrell-geokit-1.4.1.1 test/test_base_geocoder.rb
drogus-geokit-1.4.2 test/test_base_geocoder.rb
flowers-geokit-1.4.1 test/test_base_geocoder.rb
mussegam-geokit-1.4.1 test/test_base_geocoder.rb
geokit-1.4.1 test/test_base_geocoder.rb
geokit-1.4.0 test/test_base_geocoder.rb