Sha256: f6ce072ac9ca67c55193f40bc67fa2cca5f0941fa52e82497c93304eba934130

Contents?: true

Size: 1.58 KB

Versions: 6

Compression:

Stored size: 1.58 KB

Contents

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

Geokit::Geocoders::geocoder_ca = "SOMEKEYVALUE"

class CaGeocoderTest < BaseGeocoderTest #:nodoc: all

  CA_SUCCESS=<<-EOF
  <?xml version="1.0" encoding="UTF-8" ?>
  <geodata><latt>49.243086</latt><longt>-123.153684</longt></geodata>
  EOF

  def setup
    @ca_full_hash = {:street_address=>"2105 West 32nd Avenue",:city=>"Vancouver", :state=>"BC"}
    @ca_full_loc = Geokit::GeoLoc.new(@ca_full_hash)
  end

  def test_geocoder_with_geo_loc_with_account
    response = MockSuccess.new
    response.expects(:body).returns(CA_SUCCESS)
    url = "http://geocoder.ca/?stno=2105&addresst=West+32nd+Avenue&city=Vancouver&prov=BC&auth=SOMEKEYVALUE&geoit=xml"
    Geokit::Geocoders::CaGeocoder.expects(:call_geocoder_service).with(url).returns(response)
    verify(Geokit::Geocoders::CaGeocoder.geocode(@ca_full_loc))
  end

  def test_service_unavailable
    response = MockFailure.new
    #Net::HTTP.expects(:get_response).with(URI.parse("http://geocoder.ca/?stno=2105&addresst=West+32nd+Avenue&city=Vancouver&prov=BC&auth=SOMEKEYVALUE&geoit=xml")).returns(response)
    url = "http://geocoder.ca/?stno=2105&addresst=West+32nd+Avenue&city=Vancouver&prov=BC&auth=SOMEKEYVALUE&geoit=xml"
    Geokit::Geocoders::CaGeocoder.expects(:call_geocoder_service).with(url).returns(response)
    assert !Geokit::Geocoders::CaGeocoder.geocode(@ca_full_loc).success
  end

  private

  def verify(location)
    assert_equal "BC", location.state
    assert_equal "Vancouver", location.city
    assert_equal "49.243086,-123.153684", location.ll
    assert !location.is_us?
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
geokit-1.8.0 test/test_ca_geocoder.rb
geokit-1.7.1 test/test_ca_geocoder.rb
geokit-1.7.0 test/test_ca_geocoder.rb
geokit-1.6.7 test/test_ca_geocoder.rb
geokit-1.6.6 test/test_ca_geocoder.rb
geokit-1.7.0.rc1 test/test_ca_geocoder.rb