X-Git-Url: https://projects.mako.cc/source/selectricity-live/blobdiff_plain/baf9ff0ec39c13f52ee8d4f087641dc5fcc9c53b..fcc68b4dc198b7cb0cf93467d96038b0844675fe:/vendor/plugins/geokit/test/us_geocoder_test.rb diff --git a/vendor/plugins/geokit/test/us_geocoder_test.rb b/vendor/plugins/geokit/test/us_geocoder_test.rb new file mode 100644 index 0000000..4457803 --- /dev/null +++ b/vendor/plugins/geokit/test/us_geocoder_test.rb @@ -0,0 +1,47 @@ +require File.join(File.dirname(__FILE__), 'base_geocoder_test') + +GeoKit::Geocoders::geocoder_us = nil + +class UsGeocoderTest < BaseGeocoderTest #:nodoc: all + + GEOCODER_US_FULL='37.792528,-122.393981,100 Spear St,San Francisco,CA,94105' + + def setup + super + @us_full_hash = {:city=>"San Francisco", :state=>"CA"} + @us_full_loc = GeoKit::GeoLoc.new(@us_full_hash) + end + + def test_geocoder_us + response = MockSuccess.new + response.expects(:body).returns(GEOCODER_US_FULL) + url = "http://geocoder.us/service/csv/geocode?address=#{CGI.escape(@address)}" + GeoKit::Geocoders::UsGeocoder.expects(:call_geocoder_service).with(url).returns(response) + verify(GeoKit::Geocoders::UsGeocoder.geocode(@address)) + end + + def test_geocoder_with_geo_loc + response = MockSuccess.new + response.expects(:body).returns(GEOCODER_US_FULL) + url = "http://geocoder.us/service/csv/geocode?address=#{CGI.escape(@address)}" + GeoKit::Geocoders::UsGeocoder.expects(:call_geocoder_service).with(url).returns(response) + verify(GeoKit::Geocoders::UsGeocoder.geocode(@us_full_loc)) + end + + def test_service_unavailable + response = MockFailure.new + url = "http://geocoder.us/service/csv/geocode?address=#{CGI.escape(@address)}" + GeoKit::Geocoders::UsGeocoder.expects(:call_geocoder_service).with(url).returns(response) + assert !GeoKit::Geocoders::UsGeocoder.geocode(@us_full_loc).success + end + + private + + def verify(location) + assert_equal "CA", location.state + assert_equal "San Francisco", location.city + assert_equal "37.792528,-122.393981", location.ll + assert location.is_us? + assert_equal "100 Spear St, San Francisco, CA, 94105, US", location.full_address #slightly different from yahoo + end +end \ No newline at end of file