23 lines
1.1 KiB
Ruby
23 lines
1.1 KiB
Ruby
require 'test_helper'
|
|
|
|
class AddressesControllerTest < ActionController::TestCase
|
|
test 'should return latitude and longitude for a valid address' do
|
|
stub_request(:get, 'https://maps.google.com/maps/api/geocode/json').
|
|
with(query: {address: 'City Hall, Boston, MA', sensor: 'false'}).
|
|
to_return(body: File.read(File.expand_path('../../fixtures/city_hall.json', __FILE__)))
|
|
get :show, address: 'City Hall', city_state: 'Boston, MA', format: 'json'
|
|
assert_not_nil assigns :address
|
|
end
|
|
|
|
test 'should return an error for an invalid address' do
|
|
stub_request(:get, 'https://maps.google.com/maps/api/geocode/json').
|
|
with(query: {address: ', ', sensor: 'false'}).
|
|
to_return(body: File.read(File.expand_path('../../fixtures/unknown_address.json', __FILE__)))
|
|
stub_request(:get, 'http://geocoder.us/service/csv/geocode').
|
|
with(query: {address: ', '}).
|
|
to_return(body: File.read(File.expand_path('../../fixtures/unknown_address.json', __FILE__)))
|
|
get :show, address: '', city_state: '', format: 'json'
|
|
assert_response :missing
|
|
end
|
|
end
|