Sha256: f71afe082de6a085c98528cbbff6d1fdabab14ba90f22c28f258476ec9971f6f

Contents?: true

Size: 1.46 KB

Versions: 14

Compression:

Stored size: 1.46 KB

Contents

require File.join(File.dirname(__FILE__), 'test_base_geocoder')

Geokit::Geocoders::ip_provider_order=[:geo_plugin,:ip]

class MultiIpGeocoderTest < BaseGeocoderTest #:nodoc: all
  
  def setup
    @ip_address = '10.10.10.10'
    @success = Geokit::GeoLoc.new({:city=>"SAN FRANCISCO", :state=>"CA", :country_code=>"US", :lat=>37.7742, :lng=>-122.417068})
    @success.success = true
    @failure = Geokit::GeoLoc.new
  end
  
  def test_successful_first
    Geokit::Geocoders::GeoPluginGeocoder.expects(:geocode).with(@ip_address).returns(@success)
    assert_equal @success, Geokit::Geocoders::MultiGeocoder.geocode(@ip_address)
  end
  
  def test_failover
    Geokit::Geocoders::GeoPluginGeocoder.expects(:geocode).with(@ip_address).returns(@failure)
    Geokit::Geocoders::IpGeocoder.expects(:geocode).with(@ip_address).returns(@success)
    assert_equal @success, Geokit::Geocoders::MultiGeocoder.geocode(@ip_address)
  end
  
  def test_failure
    Geokit::Geocoders::GeoPluginGeocoder.expects(:geocode).with(@ip_address).returns(@failure)
    Geokit::Geocoders::IpGeocoder.expects(:geocode).with(@ip_address).returns(@failure)
    assert_equal @failure, Geokit::Geocoders::MultiGeocoder.geocode(@ip_address)
  end
  
  def test_invalid_provider
    temp = Geokit::Geocoders::ip_provider_order
    Geokit::Geocoders.ip_provider_order = [:bogus]
    assert_equal @failure, Geokit::Geocoders::MultiGeocoder.geocode(@ip_address)
    Geokit::Geocoders.ip_provider_order = temp
  end

end

Version data entries

14 entries across 14 versions & 3 rubygems

Version Path
Pr0d1r2-geokit-1.3.2.1 test/test_multi_ip_geocoder.rb
Pr0d1r2-geokit-1.3.2.2 test/test_multi_ip_geocoder.rb
Pr0d1r2-geokit-1.3.2.3 test/test_multi_ip_geocoder.rb
Pr0d1r2-geokit-1.3.2.4 test/test_multi_ip_geocoder.rb
Pr0d1r2-geokit-1.3.2.5 test/test_multi_ip_geocoder.rb
Pr0d1r2-geokit-1.3.2.6 test/test_multi_ip_geocoder.rb
Pr0d1r2-geokit-1.3.2.7 test/test_multi_ip_geocoder.rb
Pr0d1r2-geokit-1.3.2 test/test_multi_ip_geocoder.rb
andre-geokit-1.3.2 test/test_multi_ip_geocoder.rb
Pr0d1r2-geokit-1.3.2.10 test/test_multi_ip_geocoder.rb
Pr0d1r2-geokit-1.3.2.9 test/test_multi_ip_geocoder.rb
Pr0d1r2-geokit-1.3.2.8 test/test_multi_ip_geocoder.rb
geokit-1.3.2 test/test_multi_ip_geocoder.rb
geokit-1.3.1 test/test_multi_ip_geocoder.rb