geocoder-kb 1.2.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +6 -0
- data/.travis.yml +31 -0
- data/CHANGELOG.md +384 -0
- data/LICENSE +20 -0
- data/README.md +1085 -0
- data/Rakefile +25 -0
- data/bin/geocode +5 -0
- data/examples/autoexpire_cache_dalli.rb +62 -0
- data/examples/autoexpire_cache_redis.rb +28 -0
- data/examples/cache_bypass.rb +48 -0
- data/examples/sidekiq_worker.rb +16 -0
- data/gemfiles/Gemfile.mongoid-2.4.x +16 -0
- data/lib/generators/geocoder/config/config_generator.rb +14 -0
- data/lib/generators/geocoder/config/templates/initializer.rb +21 -0
- data/lib/generators/geocoder/maxmind/geolite_city_generator.rb +28 -0
- data/lib/generators/geocoder/maxmind/geolite_country_generator.rb +28 -0
- data/lib/generators/geocoder/maxmind/templates/migration/geolite_city.rb +30 -0
- data/lib/generators/geocoder/maxmind/templates/migration/geolite_country.rb +17 -0
- data/lib/geocoder.rb +47 -0
- data/lib/geocoder/cache.rb +90 -0
- data/lib/geocoder/calculations.rb +428 -0
- data/lib/geocoder/cli.rb +121 -0
- data/lib/geocoder/configuration.rb +124 -0
- data/lib/geocoder/configuration_hash.rb +11 -0
- data/lib/geocoder/exceptions.rb +21 -0
- data/lib/geocoder/ip_address.rb +21 -0
- data/lib/geocoder/lookup.rb +102 -0
- data/lib/geocoder/lookups/amap.rb +55 -0
- data/lib/geocoder/lookups/baidu.rb +55 -0
- data/lib/geocoder/lookups/baidu_ip.rb +54 -0
- data/lib/geocoder/lookups/base.rb +302 -0
- data/lib/geocoder/lookups/bing.rb +59 -0
- data/lib/geocoder/lookups/dstk.rb +20 -0
- data/lib/geocoder/lookups/esri.rb +48 -0
- data/lib/geocoder/lookups/freegeoip.rb +47 -0
- data/lib/geocoder/lookups/geocoder_ca.rb +54 -0
- data/lib/geocoder/lookups/geocoder_us.rb +39 -0
- data/lib/geocoder/lookups/geocodio.rb +42 -0
- data/lib/geocoder/lookups/geoip2.rb +40 -0
- data/lib/geocoder/lookups/google.rb +67 -0
- data/lib/geocoder/lookups/google_places_details.rb +50 -0
- data/lib/geocoder/lookups/google_premier.rb +47 -0
- data/lib/geocoder/lookups/here.rb +62 -0
- data/lib/geocoder/lookups/mapquest.rb +60 -0
- data/lib/geocoder/lookups/maxmind.rb +90 -0
- data/lib/geocoder/lookups/maxmind_local.rb +58 -0
- data/lib/geocoder/lookups/nominatim.rb +52 -0
- data/lib/geocoder/lookups/okf.rb +43 -0
- data/lib/geocoder/lookups/opencagedata.rb +58 -0
- data/lib/geocoder/lookups/ovi.rb +62 -0
- data/lib/geocoder/lookups/pointpin.rb +68 -0
- data/lib/geocoder/lookups/postcode_anywhere_uk.rb +51 -0
- data/lib/geocoder/lookups/smarty_streets.rb +45 -0
- data/lib/geocoder/lookups/telize.rb +40 -0
- data/lib/geocoder/lookups/test.rb +44 -0
- data/lib/geocoder/lookups/yahoo.rb +88 -0
- data/lib/geocoder/lookups/yandex.rb +54 -0
- data/lib/geocoder/models/active_record.rb +50 -0
- data/lib/geocoder/models/base.rb +39 -0
- data/lib/geocoder/models/mongo_base.rb +64 -0
- data/lib/geocoder/models/mongo_mapper.rb +26 -0
- data/lib/geocoder/models/mongoid.rb +32 -0
- data/lib/geocoder/query.rb +111 -0
- data/lib/geocoder/railtie.rb +26 -0
- data/lib/geocoder/request.rb +25 -0
- data/lib/geocoder/results/amap.rb +85 -0
- data/lib/geocoder/results/baidu.rb +79 -0
- data/lib/geocoder/results/baidu_ip.rb +62 -0
- data/lib/geocoder/results/base.rb +67 -0
- data/lib/geocoder/results/bing.rb +48 -0
- data/lib/geocoder/results/dstk.rb +6 -0
- data/lib/geocoder/results/esri.rb +51 -0
- data/lib/geocoder/results/freegeoip.rb +45 -0
- data/lib/geocoder/results/geocoder_ca.rb +60 -0
- data/lib/geocoder/results/geocoder_us.rb +39 -0
- data/lib/geocoder/results/geocodio.rb +66 -0
- data/lib/geocoder/results/geoip2.rb +64 -0
- data/lib/geocoder/results/google.rb +124 -0
- data/lib/geocoder/results/google_places_details.rb +35 -0
- data/lib/geocoder/results/google_premier.rb +6 -0
- data/lib/geocoder/results/here.rb +62 -0
- data/lib/geocoder/results/mapquest.rb +51 -0
- data/lib/geocoder/results/maxmind.rb +135 -0
- data/lib/geocoder/results/maxmind_local.rb +49 -0
- data/lib/geocoder/results/nominatim.rb +94 -0
- data/lib/geocoder/results/okf.rb +106 -0
- data/lib/geocoder/results/opencagedata.rb +82 -0
- data/lib/geocoder/results/ovi.rb +62 -0
- data/lib/geocoder/results/pointpin.rb +44 -0
- data/lib/geocoder/results/postcode_anywhere_uk.rb +42 -0
- data/lib/geocoder/results/smarty_streets.rb +106 -0
- data/lib/geocoder/results/telize.rb +45 -0
- data/lib/geocoder/results/test.rb +33 -0
- data/lib/geocoder/results/yahoo.rb +55 -0
- data/lib/geocoder/results/yandex.rb +84 -0
- data/lib/geocoder/sql.rb +107 -0
- data/lib/geocoder/stores/active_record.rb +289 -0
- data/lib/geocoder/stores/base.rb +127 -0
- data/lib/geocoder/stores/mongo_base.rb +89 -0
- data/lib/geocoder/stores/mongo_mapper.rb +13 -0
- data/lib/geocoder/stores/mongoid.rb +13 -0
- data/lib/geocoder/version.rb +3 -0
- data/lib/hash_recursive_merge.rb +74 -0
- data/lib/maxmind_database.rb +109 -0
- data/lib/oauth_util.rb +112 -0
- data/lib/tasks/geocoder.rake +29 -0
- data/lib/tasks/maxmind.rake +73 -0
- data/test/fixtures/baidu_invalid_key +1 -0
- data/test/fixtures/baidu_ip_202_198_16_3 +19 -0
- data/test/fixtures/baidu_ip_invalid_key +1 -0
- data/test/fixtures/baidu_ip_no_results +1 -0
- data/test/fixtures/baidu_no_results +1 -0
- data/test/fixtures/baidu_reverse +1 -0
- data/test/fixtures/baidu_shanghai_pearl_tower +12 -0
- data/test/fixtures/bing_invalid_key +1 -0
- data/test/fixtures/bing_madison_square_garden +40 -0
- data/test/fixtures/bing_no_results +16 -0
- data/test/fixtures/bing_reverse +42 -0
- data/test/fixtures/cloudmade_invalid_key +1 -0
- data/test/fixtures/cloudmade_madison_square_garden +1 -0
- data/test/fixtures/cloudmade_no_results +1 -0
- data/test/fixtures/esri_madison_square_garden +59 -0
- data/test/fixtures/esri_no_results +8 -0
- data/test/fixtures/esri_reverse +21 -0
- data/test/fixtures/freegeoip_74_200_247_59 +12 -0
- data/test/fixtures/freegeoip_no_results +1 -0
- data/test/fixtures/geocoder_ca_madison_square_garden +1 -0
- data/test/fixtures/geocoder_ca_no_results +1 -0
- data/test/fixtures/geocoder_ca_reverse +34 -0
- data/test/fixtures/geocoder_us_madison_square_garden +1 -0
- data/test/fixtures/geocoder_us_no_results +1 -0
- data/test/fixtures/geocodio_1101_pennsylvania_ave +1 -0
- data/test/fixtures/geocodio_bad_api_key +3 -0
- data/test/fixtures/geocodio_invalid +4 -0
- data/test/fixtures/geocodio_no_results +1 -0
- data/test/fixtures/geocodio_over_query_limit +4 -0
- data/test/fixtures/google_garbage +456 -0
- data/test/fixtures/google_madison_square_garden +57 -0
- data/test/fixtures/google_no_city_data +44 -0
- data/test/fixtures/google_no_locality +51 -0
- data/test/fixtures/google_no_results +4 -0
- data/test/fixtures/google_over_limit +4 -0
- data/test/fixtures/google_places_details_invalid_request +4 -0
- data/test/fixtures/google_places_details_madison_square_garden +120 -0
- data/test/fixtures/google_places_details_no_results +4 -0
- data/test/fixtures/google_places_details_no_reviews +60 -0
- data/test/fixtures/google_places_details_no_types +66 -0
- data/test/fixtures/here_madison_square_garden +72 -0
- data/test/fixtures/here_no_results +8 -0
- data/test/fixtures/mapquest_error +16 -0
- data/test/fixtures/mapquest_invalid_api_key +16 -0
- data/test/fixtures/mapquest_invalid_request +16 -0
- data/test/fixtures/mapquest_madison_square_garden +52 -0
- data/test/fixtures/mapquest_no_results +16 -0
- data/test/fixtures/maxmind_24_24_24_21 +1 -0
- data/test/fixtures/maxmind_24_24_24_22 +1 -0
- data/test/fixtures/maxmind_24_24_24_23 +1 -0
- data/test/fixtures/maxmind_24_24_24_24 +1 -0
- data/test/fixtures/maxmind_74_200_247_59 +1 -0
- data/test/fixtures/maxmind_invalid_key +1 -0
- data/test/fixtures/maxmind_no_results +1 -0
- data/test/fixtures/nominatim_madison_square_garden +150 -0
- data/test/fixtures/nominatim_no_results +1 -0
- data/test/fixtures/nominatim_over_limit +1 -0
- data/test/fixtures/okf_kirstinmaki +67 -0
- data/test/fixtures/okf_no_results +4 -0
- data/test/fixtures/opencagedata_invalid_api_key +25 -0
- data/test/fixtures/opencagedata_invalid_request +26 -0
- data/test/fixtures/opencagedata_madison_square_garden +73 -0
- data/test/fixtures/opencagedata_no_results +29 -0
- data/test/fixtures/opencagedata_over_limit +31 -0
- data/test/fixtures/ovi_madison_square_garden +72 -0
- data/test/fixtures/ovi_no_results +8 -0
- data/test/fixtures/pointpin_10_10_10_10 +1 -0
- data/test/fixtures/pointpin_555_555_555_555 +1 -0
- data/test/fixtures/pointpin_80_111_555_555 +1 -0
- data/test/fixtures/pointpin_no_results +1 -0
- data/test/fixtures/postcode_anywhere_uk_geocode_v2_00_WR26NJ +1 -0
- data/test/fixtures/postcode_anywhere_uk_geocode_v2_00_generic_error +1 -0
- data/test/fixtures/postcode_anywhere_uk_geocode_v2_00_hampshire +1 -0
- data/test/fixtures/postcode_anywhere_uk_geocode_v2_00_key_limit_exceeded +1 -0
- data/test/fixtures/postcode_anywhere_uk_geocode_v2_00_no_results +1 -0
- data/test/fixtures/postcode_anywhere_uk_geocode_v2_00_romsey +1 -0
- data/test/fixtures/postcode_anywhere_uk_geocode_v2_00_unknown_key +1 -0
- data/test/fixtures/smarty_streets_11211 +1 -0
- data/test/fixtures/smarty_streets_madison_square_garden +47 -0
- data/test/fixtures/smarty_streets_no_results +1 -0
- data/test/fixtures/telize_10_10_10_10 +1 -0
- data/test/fixtures/telize_555_555_555_555 +4 -0
- data/test/fixtures/telize_74_200_247_59 +1 -0
- data/test/fixtures/telize_no_results +1 -0
- data/test/fixtures/yahoo_error +1 -0
- data/test/fixtures/yahoo_invalid_key +2 -0
- data/test/fixtures/yahoo_madison_square_garden +52 -0
- data/test/fixtures/yahoo_no_results +10 -0
- data/test/fixtures/yahoo_over_limit +2 -0
- data/test/fixtures/yandex_canada_rue_dupuis_14 +446 -0
- data/test/fixtures/yandex_invalid_key +1 -0
- data/test/fixtures/yandex_kremlin +48 -0
- data/test/fixtures/yandex_new_york +1 -0
- data/test/fixtures/yandex_no_city_and_town +112 -0
- data/test/fixtures/yandex_no_results +16 -0
- data/test/integration/http_client_test.rb +31 -0
- data/test/mongoid_test_helper.rb +43 -0
- data/test/test_helper.rb +416 -0
- data/test/unit/active_record_test.rb +16 -0
- data/test/unit/cache_test.rb +37 -0
- data/test/unit/calculations_test.rb +220 -0
- data/test/unit/configuration_test.rb +55 -0
- data/test/unit/error_handling_test.rb +56 -0
- data/test/unit/geocoder_test.rb +78 -0
- data/test/unit/https_test.rb +17 -0
- data/test/unit/ip_address_test.rb +27 -0
- data/test/unit/lookup_test.rb +153 -0
- data/test/unit/lookups/bing_test.rb +68 -0
- data/test/unit/lookups/dstk_test.rb +26 -0
- data/test/unit/lookups/esri_test.rb +48 -0
- data/test/unit/lookups/freegeoip_test.rb +27 -0
- data/test/unit/lookups/geocoder_ca_test.rb +17 -0
- data/test/unit/lookups/geocodio_test.rb +55 -0
- data/test/unit/lookups/geoip2_test.rb +27 -0
- data/test/unit/lookups/google_places_details_test.rb +122 -0
- data/test/unit/lookups/google_premier_test.rb +22 -0
- data/test/unit/lookups/google_test.rb +84 -0
- data/test/unit/lookups/mapquest_test.rb +60 -0
- data/test/unit/lookups/maxmind_local_test.rb +28 -0
- data/test/unit/lookups/maxmind_test.rb +63 -0
- data/test/unit/lookups/nominatim_test.rb +31 -0
- data/test/unit/lookups/okf_test.rb +38 -0
- data/test/unit/lookups/opencagedata_test.rb +64 -0
- data/test/unit/lookups/pointpin_test.rb +30 -0
- data/test/unit/lookups/postcode_anywhere_uk_test.rb +70 -0
- data/test/unit/lookups/smarty_streets_test.rb +71 -0
- data/test/unit/lookups/telize_test.rb +36 -0
- data/test/unit/lookups/yahoo_test.rb +35 -0
- data/test/unit/method_aliases_test.rb +26 -0
- data/test/unit/model_test.rb +38 -0
- data/test/unit/mongoid_test.rb +47 -0
- data/test/unit/near_test.rb +87 -0
- data/test/unit/oauth_util_test.rb +31 -0
- data/test/unit/proxy_test.rb +37 -0
- data/test/unit/query_test.rb +52 -0
- data/test/unit/rake_task_test.rb +21 -0
- data/test/unit/request_test.rb +35 -0
- data/test/unit/result_test.rb +72 -0
- data/test/unit/test_mode_test.rb +70 -0
- metadata +294 -0
@@ -0,0 +1,27 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
require 'test_helper'
|
3
|
+
|
4
|
+
class Geoip2Test < GeocoderTestCase
|
5
|
+
def setup
|
6
|
+
Geocoder.configure(ip_lookup: :geoip2, file: 'test_file')
|
7
|
+
end
|
8
|
+
|
9
|
+
def test_result_attributes
|
10
|
+
result = Geocoder.search('8.8.8.8').first
|
11
|
+
assert_equal 'Mountain View, CA 94043, United States', result.address
|
12
|
+
assert_equal 'Mountain View', result.city
|
13
|
+
assert_equal 'CA', result.state_code
|
14
|
+
assert_equal 'California', result.state
|
15
|
+
assert_equal 'United States', result.country
|
16
|
+
assert_equal 'US', result.country_code
|
17
|
+
assert_equal '94043', result.postal_code
|
18
|
+
assert_equal 37.41919999999999, result.latitude
|
19
|
+
assert_equal -122.0574, result.longitude
|
20
|
+
assert_equal [37.41919999999999, -122.0574], result.coordinates
|
21
|
+
end
|
22
|
+
|
23
|
+
def test_loopback
|
24
|
+
results = Geocoder.search('127.0.0.1')
|
25
|
+
assert_equal [], results
|
26
|
+
end
|
27
|
+
end
|
@@ -0,0 +1,122 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
$: << File.join(File.dirname(__FILE__), "..", "..")
|
3
|
+
require 'test_helper'
|
4
|
+
|
5
|
+
class GooglePlacesDetailsTest < GeocoderTestCase
|
6
|
+
|
7
|
+
def setup
|
8
|
+
Geocoder.configure(lookup: :google_places_details)
|
9
|
+
set_api_key!(:google_places_details)
|
10
|
+
end
|
11
|
+
|
12
|
+
def test_google_places_details_result_components
|
13
|
+
assert_equal "Manhattan", madison_square_garden.address_components_of_type(:sublocality).first["long_name"]
|
14
|
+
end
|
15
|
+
|
16
|
+
def test_google_places_details_result_components_contains_route
|
17
|
+
assert_equal "Pennsylvania Plaza", madison_square_garden.address_components_of_type(:route).first["long_name"]
|
18
|
+
end
|
19
|
+
|
20
|
+
def test_google_places_details_result_components_contains_street_number
|
21
|
+
assert_equal "4", madison_square_garden.address_components_of_type(:street_number).first["long_name"]
|
22
|
+
end
|
23
|
+
|
24
|
+
def test_google_places_details_street_address_returns_formatted_street_address
|
25
|
+
assert_equal "4 Pennsylvania Plaza", madison_square_garden.street_address
|
26
|
+
end
|
27
|
+
|
28
|
+
def test_google_places_details_result_contains_place_id
|
29
|
+
assert_equal "ChIJhRwB-yFawokR5Phil-QQ3zM", madison_square_garden.place_id
|
30
|
+
end
|
31
|
+
|
32
|
+
def test_google_places_details_result_contains_latitude
|
33
|
+
assert_equal madison_square_garden.latitude, 40.750504
|
34
|
+
end
|
35
|
+
|
36
|
+
def test_google_places_details_result_contains_longitude
|
37
|
+
assert_equal madison_square_garden.longitude, -73.993439
|
38
|
+
end
|
39
|
+
|
40
|
+
def test_google_places_details_result_contains_rating
|
41
|
+
assert_equal 4.4, madison_square_garden.rating
|
42
|
+
end
|
43
|
+
|
44
|
+
def test_google_places_details_result_contains_rating_count
|
45
|
+
assert_equal 382, madison_square_garden.rating_count
|
46
|
+
end
|
47
|
+
|
48
|
+
def test_google_places_details_result_contains_reviews
|
49
|
+
reviews = madison_square_garden.reviews
|
50
|
+
|
51
|
+
assert_equal 2, reviews.size
|
52
|
+
assert_equal "John Smith", reviews.first["author_name"]
|
53
|
+
assert_equal 5, reviews.first["rating"]
|
54
|
+
assert_equal "It's nice.", reviews.first["text"]
|
55
|
+
assert_equal "en", reviews.first["language"]
|
56
|
+
end
|
57
|
+
|
58
|
+
def test_google_places_details_result_contains_types
|
59
|
+
assert_equal madison_square_garden.types, %w(stadium establishment)
|
60
|
+
end
|
61
|
+
|
62
|
+
def test_google_places_details_result_contains_website
|
63
|
+
assert_equal madison_square_garden.website, "http://www.thegarden.com/"
|
64
|
+
end
|
65
|
+
|
66
|
+
def test_google_places_details_result_contains_phone_number
|
67
|
+
assert_equal madison_square_garden.phone_number, "+1 212-465-6741"
|
68
|
+
end
|
69
|
+
|
70
|
+
def test_google_places_details_query_url_contains_placeid
|
71
|
+
url = lookup.query_url(Geocoder::Query.new("some-place-id"))
|
72
|
+
assert_match(/placeid=some-place-id/, url)
|
73
|
+
end
|
74
|
+
|
75
|
+
def test_google_places_details_query_url_contains_language
|
76
|
+
url = lookup.query_url(Geocoder::Query.new("some-place-id", language: "de"))
|
77
|
+
assert_match(/language=de/, url)
|
78
|
+
end
|
79
|
+
|
80
|
+
def test_google_places_details_query_url_always_uses_https
|
81
|
+
url = lookup.query_url(Geocoder::Query.new("some-place-id"))
|
82
|
+
assert_match(%r(^https://), url)
|
83
|
+
end
|
84
|
+
|
85
|
+
def test_google_places_details_result_with_no_reviews_shows_empty_reviews
|
86
|
+
assert_equal no_reviews_result.reviews, []
|
87
|
+
end
|
88
|
+
|
89
|
+
def test_google_places_details_result_with_no_types_shows_empty_types
|
90
|
+
assert_equal no_types_result.types, []
|
91
|
+
end
|
92
|
+
|
93
|
+
def test_google_places_details_result_with_invalid_place_id_empty
|
94
|
+
assert_equal Geocoder.search("invalid request"), []
|
95
|
+
end
|
96
|
+
|
97
|
+
def test_raises_exception_on_google_places_details_invalid_request
|
98
|
+
Geocoder.configure(always_raise: [Geocoder::InvalidRequest])
|
99
|
+
assert_raises Geocoder::InvalidRequest do
|
100
|
+
Geocoder.search("invalid request")
|
101
|
+
end
|
102
|
+
end
|
103
|
+
|
104
|
+
private
|
105
|
+
|
106
|
+
def lookup
|
107
|
+
Geocoder::Lookup::GooglePlacesDetails.new
|
108
|
+
end
|
109
|
+
|
110
|
+
def madison_square_garden
|
111
|
+
Geocoder.search("ChIJhRwB-yFawokR5Phil-QQ3zM").first
|
112
|
+
end
|
113
|
+
|
114
|
+
def no_reviews_result
|
115
|
+
Geocoder.search("no reviews").first
|
116
|
+
end
|
117
|
+
|
118
|
+
def no_types_result
|
119
|
+
Geocoder.search("no types").first
|
120
|
+
end
|
121
|
+
|
122
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
$: << File.join(File.dirname(__FILE__), "..", "..")
|
3
|
+
require 'test_helper'
|
4
|
+
|
5
|
+
class GooglePremierTest < GeocoderTestCase
|
6
|
+
|
7
|
+
def setup
|
8
|
+
Geocoder.configure(lookup: :google_premier)
|
9
|
+
set_api_key!(:google_premier)
|
10
|
+
end
|
11
|
+
|
12
|
+
def test_result_components
|
13
|
+
result = Geocoder.search("Madison Square Garden, New York, NY").first
|
14
|
+
assert_equal "Manhattan", result.address_components_of_type(:sublocality).first['long_name']
|
15
|
+
end
|
16
|
+
|
17
|
+
def test_query_url
|
18
|
+
Geocoder.configure(google_premier: {api_key: ["deadbeef", "gme-test", "test-dev"]})
|
19
|
+
query = Geocoder::Query.new("Madison Square Garden, New York, NY")
|
20
|
+
assert_equal "http://maps.googleapis.com/maps/api/geocode/json?address=Madison+Square+Garden%2C+New+York%2C+NY&channel=test-dev&client=gme-test&language=en&sensor=false&signature=doJvJqX7YJzgV9rJ0DnVkTGZqTg=", query.url
|
21
|
+
end
|
22
|
+
end
|
@@ -0,0 +1,84 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
$: << File.join(File.dirname(__FILE__), "..", "..")
|
3
|
+
require 'test_helper'
|
4
|
+
|
5
|
+
class GoogleTest < GeocoderTestCase
|
6
|
+
|
7
|
+
def test_google_result_components
|
8
|
+
result = Geocoder.search("Madison Square Garden, New York, NY").first
|
9
|
+
assert_equal "Manhattan",
|
10
|
+
result.address_components_of_type(:sublocality).first['long_name']
|
11
|
+
end
|
12
|
+
|
13
|
+
def test_google_result_components_contains_route
|
14
|
+
result = Geocoder.search("Madison Square Garden, New York, NY").first
|
15
|
+
assert_equal "Penn Plaza",
|
16
|
+
result.address_components_of_type(:route).first['long_name']
|
17
|
+
end
|
18
|
+
|
19
|
+
def test_google_result_components_contains_street_number
|
20
|
+
result = Geocoder.search("Madison Square Garden, New York, NY").first
|
21
|
+
assert_equal "4",
|
22
|
+
result.address_components_of_type(:street_number).first['long_name']
|
23
|
+
end
|
24
|
+
|
25
|
+
def test_google_returns_city_when_no_locality_in_result
|
26
|
+
result = Geocoder.search("no locality").first
|
27
|
+
assert_equal "Haram", result.city
|
28
|
+
end
|
29
|
+
|
30
|
+
def test_google_city_results_returns_nil_if_no_matching_component_types
|
31
|
+
result = Geocoder.search("no city data").first
|
32
|
+
assert_equal nil, result.city
|
33
|
+
end
|
34
|
+
|
35
|
+
def test_google_street_address_returns_formatted_street_address
|
36
|
+
result = Geocoder.search("Madison Square Garden, New York, NY").first
|
37
|
+
assert_equal "4 Penn Plaza", result.street_address
|
38
|
+
end
|
39
|
+
|
40
|
+
def test_google_precision
|
41
|
+
result = Geocoder.search("Madison Square Garden, New York, NY").first
|
42
|
+
assert_equal "ROOFTOP",
|
43
|
+
result.precision
|
44
|
+
end
|
45
|
+
|
46
|
+
def test_google_query_url_contains_bounds
|
47
|
+
lookup = Geocoder::Lookup::Google.new
|
48
|
+
url = lookup.query_url(Geocoder::Query.new(
|
49
|
+
"Some Intersection",
|
50
|
+
:bounds => [[40.0, -120.0], [39.0, -121.0]]
|
51
|
+
))
|
52
|
+
assert_match(/bounds=40.0+%2C-120.0+%7C39.0+%2C-121.0+/, url)
|
53
|
+
end
|
54
|
+
|
55
|
+
def test_google_query_url_contains_region
|
56
|
+
lookup = Geocoder::Lookup::Google.new
|
57
|
+
url = lookup.query_url(Geocoder::Query.new(
|
58
|
+
"Some Intersection",
|
59
|
+
:region => "gb"
|
60
|
+
))
|
61
|
+
assert_match(/region=gb/, url)
|
62
|
+
end
|
63
|
+
|
64
|
+
def test_google_query_url_contains_components_when_given_as_string
|
65
|
+
lookup = Geocoder::Lookup::Google.new
|
66
|
+
url = lookup.query_url(Geocoder::Query.new(
|
67
|
+
"Some Intersection",
|
68
|
+
:components => "locality:ES"
|
69
|
+
))
|
70
|
+
formatted = "components=" + CGI.escape("locality:ES")
|
71
|
+
assert url.include?(formatted), "Expected #{formatted} to be included in #{url}"
|
72
|
+
end
|
73
|
+
|
74
|
+
def test_google_query_url_contains_components_when_given_as_array
|
75
|
+
lookup = Geocoder::Lookup::Google.new
|
76
|
+
url = lookup.query_url(Geocoder::Query.new(
|
77
|
+
"Some Intersection",
|
78
|
+
:components => ["country:ES", "locality:ES"]
|
79
|
+
))
|
80
|
+
formatted = "components=" + CGI.escape("country:ES|locality:ES")
|
81
|
+
assert url.include?(formatted), "Expected #{formatted} to be included in #{url}"
|
82
|
+
end
|
83
|
+
|
84
|
+
end
|
@@ -0,0 +1,60 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
$: << File.join(File.dirname(__FILE__), "..", "..")
|
3
|
+
require 'test_helper'
|
4
|
+
|
5
|
+
class MapquestTest < GeocoderTestCase
|
6
|
+
|
7
|
+
def setup
|
8
|
+
Geocoder.configure(lookup: :mapquest)
|
9
|
+
set_api_key!(:mapquest)
|
10
|
+
end
|
11
|
+
|
12
|
+
def test_url_contains_api_key
|
13
|
+
Geocoder.configure(mapquest: {api_key: "abc123"})
|
14
|
+
query = Geocoder::Query.new("Bluffton, SC")
|
15
|
+
assert_equal "http://www.mapquestapi.com/geocoding/v1/address?key=abc123&location=Bluffton%2C+SC", query.url
|
16
|
+
end
|
17
|
+
|
18
|
+
def test_url_for_version_2
|
19
|
+
Geocoder.configure(mapquest: {api_key: "abc123", version: 2})
|
20
|
+
query = Geocoder::Query.new("Bluffton, SC")
|
21
|
+
assert_equal "http://www.mapquestapi.com/geocoding/v2/address?key=abc123&location=Bluffton%2C+SC", query.url
|
22
|
+
end
|
23
|
+
|
24
|
+
def test_url_for_open_street_maps
|
25
|
+
Geocoder.configure(mapquest: {api_key: "abc123", open: true})
|
26
|
+
query = Geocoder::Query.new("Bluffton, SC")
|
27
|
+
assert_equal "http://open.mapquestapi.com/geocoding/v1/address?key=abc123&location=Bluffton%2C+SC", query.url
|
28
|
+
end
|
29
|
+
|
30
|
+
def test_result_components
|
31
|
+
result = Geocoder.search("Madison Square Garden, New York, NY").first
|
32
|
+
assert_equal "10001", result.postal_code
|
33
|
+
assert_equal "46 West 31st Street, New York, NY, 10001, US", result.address
|
34
|
+
end
|
35
|
+
|
36
|
+
def test_no_results
|
37
|
+
assert_equal [], Geocoder.search("no results")
|
38
|
+
end
|
39
|
+
|
40
|
+
def test_raises_exception_when_invalid_request
|
41
|
+
Geocoder.configure(always_raise: [Geocoder::InvalidRequest])
|
42
|
+
assert_raises Geocoder::InvalidRequest do
|
43
|
+
Geocoder.search("invalid request")
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
def test_raises_exception_when_invalid_api_key
|
48
|
+
Geocoder.configure(always_raise: [Geocoder::InvalidApiKey])
|
49
|
+
assert_raises Geocoder::InvalidApiKey do
|
50
|
+
Geocoder.search("invalid api key")
|
51
|
+
end
|
52
|
+
end
|
53
|
+
|
54
|
+
def test_raises_exception_when_error
|
55
|
+
Geocoder.configure(always_raise: [Geocoder::Error])
|
56
|
+
assert_raises Geocoder::Error do
|
57
|
+
Geocoder.search("error")
|
58
|
+
end
|
59
|
+
end
|
60
|
+
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
$: << File.join(File.dirname(__FILE__), "..", "..")
|
3
|
+
require 'test_helper'
|
4
|
+
|
5
|
+
class MaxmindLocalTest < GeocoderTestCase
|
6
|
+
|
7
|
+
def setup
|
8
|
+
Geocoder.configure(ip_lookup: :maxmind_local)
|
9
|
+
end
|
10
|
+
|
11
|
+
def test_result_attributes
|
12
|
+
result = Geocoder.search('8.8.8.8').first
|
13
|
+
assert_equal 'Mountain View, CA 94043, United States', result.address
|
14
|
+
assert_equal 'Mountain View', result.city
|
15
|
+
assert_equal 'CA', result.state
|
16
|
+
assert_equal 'United States', result.country
|
17
|
+
assert_equal 'US', result.country_code
|
18
|
+
assert_equal '94043', result.postal_code
|
19
|
+
assert_equal 37.41919999999999, result.latitude
|
20
|
+
assert_equal -122.0574, result.longitude
|
21
|
+
assert_equal [37.41919999999999, -122.0574], result.coordinates
|
22
|
+
end
|
23
|
+
|
24
|
+
def test_loopback
|
25
|
+
results = Geocoder.search('127.0.0.1')
|
26
|
+
assert_equal [], results
|
27
|
+
end
|
28
|
+
end
|
@@ -0,0 +1,63 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
$: << File.join(File.dirname(__FILE__), "..", "..")
|
3
|
+
require 'test_helper'
|
4
|
+
|
5
|
+
class MaxmindTest < GeocoderTestCase
|
6
|
+
|
7
|
+
def setup
|
8
|
+
Geocoder.configure(ip_lookup: :maxmind)
|
9
|
+
end
|
10
|
+
|
11
|
+
def test_maxmind_result_on_ip_address_search
|
12
|
+
Geocoder.configure(maxmind: {service: :city_isp_org})
|
13
|
+
result = Geocoder.search("74.200.247.59").first
|
14
|
+
assert result.is_a?(Geocoder::Result::Maxmind)
|
15
|
+
end
|
16
|
+
|
17
|
+
def test_maxmind_result_knows_country_service_name
|
18
|
+
Geocoder.configure(maxmind: {service: :country})
|
19
|
+
assert_equal :country, Geocoder.search("24.24.24.21").first.service_name
|
20
|
+
end
|
21
|
+
|
22
|
+
def test_maxmind_result_knows_city_service_name
|
23
|
+
Geocoder.configure(maxmind: {service: :city})
|
24
|
+
assert_equal :city, Geocoder.search("24.24.24.22").first.service_name
|
25
|
+
end
|
26
|
+
|
27
|
+
def test_maxmind_result_knows_city_isp_org_service_name
|
28
|
+
Geocoder.configure(maxmind: {service: :city_isp_org})
|
29
|
+
assert_equal :city_isp_org, Geocoder.search("24.24.24.23").first.service_name
|
30
|
+
end
|
31
|
+
|
32
|
+
def test_maxmind_result_knows_omni_service_name
|
33
|
+
Geocoder.configure(maxmind: {service: :omni})
|
34
|
+
assert_equal :omni, Geocoder.search("24.24.24.24").first.service_name
|
35
|
+
end
|
36
|
+
|
37
|
+
def test_maxmind_special_result_components
|
38
|
+
Geocoder.configure(maxmind: {service: :omni})
|
39
|
+
result = Geocoder.search("24.24.24.24").first
|
40
|
+
assert_equal "Road Runner", result.isp_name
|
41
|
+
assert_equal "Cable/DSL", result.netspeed
|
42
|
+
assert_equal "rr.com", result.domain
|
43
|
+
end
|
44
|
+
|
45
|
+
def test_maxmind_raises_exception_when_service_not_configured
|
46
|
+
Geocoder.configure(maxmind: {service: nil})
|
47
|
+
assert_raises Geocoder::ConfigurationError do
|
48
|
+
Geocoder::Query.new("24.24.24.24").url
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
def test_maxmind_works_when_loopback_address_on_omni
|
53
|
+
Geocoder.configure(maxmind: {service: :omni})
|
54
|
+
result = Geocoder.search("127.0.0.1").first
|
55
|
+
assert_equal "", result.country_code
|
56
|
+
end
|
57
|
+
|
58
|
+
def test_maxmind_works_when_loopback_address_on_country
|
59
|
+
Geocoder.configure(maxmind: {service: :country})
|
60
|
+
result = Geocoder.search("127.0.0.1").first
|
61
|
+
assert_equal "", result.country_code
|
62
|
+
end
|
63
|
+
end
|
@@ -0,0 +1,31 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
$: << File.join(File.dirname(__FILE__), "..", "..")
|
3
|
+
require 'test_helper'
|
4
|
+
|
5
|
+
class NominatimTest < GeocoderTestCase
|
6
|
+
|
7
|
+
def setup
|
8
|
+
Geocoder.configure(lookup: :nominatim)
|
9
|
+
set_api_key!(:nominatim)
|
10
|
+
end
|
11
|
+
|
12
|
+
def test_result_components
|
13
|
+
result = Geocoder.search("Madison Square Garden, New York, NY").first
|
14
|
+
assert_equal "10001", result.postal_code
|
15
|
+
assert_equal "Madison Square Garden, West 31st Street, Long Island City, New York City, New York, 10001, United States of America", result.address
|
16
|
+
end
|
17
|
+
|
18
|
+
def test_host_configuration
|
19
|
+
Geocoder.configure(nominatim: {host: "local.com"})
|
20
|
+
query = Geocoder::Query.new("Bluffton, SC")
|
21
|
+
assert_match %r(http://local\.com), query.url
|
22
|
+
end
|
23
|
+
|
24
|
+
def test_raises_exception_when_over_query_limit
|
25
|
+
Geocoder.configure(:always_raise => [Geocoder::OverQueryLimitError])
|
26
|
+
l = Geocoder::Lookup.get(:nominatim)
|
27
|
+
assert_raises Geocoder::OverQueryLimitError do
|
28
|
+
l.send(:results, Geocoder::Query.new("over limit"))
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
@@ -0,0 +1,38 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
$: << File.join(File.dirname(__FILE__), "..", "..")
|
3
|
+
require 'test_helper'
|
4
|
+
|
5
|
+
class OkfTest < GeocoderTestCase
|
6
|
+
|
7
|
+
def setup
|
8
|
+
Geocoder.configure(lookup: :okf)
|
9
|
+
end
|
10
|
+
|
11
|
+
def test_okf_result_components
|
12
|
+
result = Geocoder.search("Kirstinmäki 11b28").first
|
13
|
+
assert_equal "Espoo",
|
14
|
+
result.address_components_of_type(:administrative_area_level_3).first['long_name']
|
15
|
+
end
|
16
|
+
|
17
|
+
def test_okf_result_components_contains_route
|
18
|
+
result = Geocoder.search("Kirstinmäki 11b28").first
|
19
|
+
assert_equal "Kirstinmäki",
|
20
|
+
result.address_components_of_type(:route).first['long_name']
|
21
|
+
end
|
22
|
+
|
23
|
+
def test_okf_result_components_contains_street_number
|
24
|
+
result = Geocoder.search("Kirstinmäki 11b28").first
|
25
|
+
assert_equal "1",
|
26
|
+
result.address_components_of_type(:street_number).first['long_name']
|
27
|
+
end
|
28
|
+
|
29
|
+
def test_okf_street_address_returns_formatted_street_address
|
30
|
+
result = Geocoder.search("Kirstinmäki 11b28").first
|
31
|
+
assert_equal "Kirstinmäki 1", result.street_address
|
32
|
+
end
|
33
|
+
|
34
|
+
def test_okf_precision
|
35
|
+
result = Geocoder.search("Kirstinmäki 11b28").first
|
36
|
+
assert_equal "RANGE_INTERPOLATED", result.precision
|
37
|
+
end
|
38
|
+
end
|