Newer
Older
# encoding: utf-8
require 'test_helper'
class TelizeTest < GeocoderTestCase
def setup
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
Geocoder.configure(ip_lookup: :telize, telize: {host: nil})
end
def test_query_url
lookup = Geocoder::Lookup::Telize.new
query = Geocoder::Query.new("74.200.247.59")
assert_match %r{^https://telize-v1\.p\.mashape\.com/location/74\.200\.247\.59}, lookup.query_url(query)
end
def test_includes_api_key_when_set
Geocoder.configure(api_key: "api_key")
lookup = Geocoder::Lookup::Telize.new
query = Geocoder::Query.new("74.200.247.59")
assert_match %r{/location/74\.200\.247\.59\?mashape-key=api_key}, lookup.query_url(query)
end
def test_uses_custom_host_when_set
Geocoder.configure(telize: {host: "example.com"})
lookup = Geocoder::Lookup::Telize.new
query = Geocoder::Query.new("74.200.247.59")
assert_match %r{^http://example\.com/location/74\.200\.247\.59$}, lookup.query_url(query)
end
def test_allows_https_when_custom_host
Geocoder.configure(use_https: true, telize: {host: "example.com"})
lookup = Geocoder::Lookup::Telize.new
query = Geocoder::Query.new("74.200.247.59")
assert_match %r{^https://example\.com}, lookup.query_url(query)
end
def test_requires_https_when_not_custom_host
Geocoder.configure(use_https: false)
lookup = Geocoder::Lookup::Telize.new
query = Geocoder::Query.new("74.200.247.59")
assert_match %r{^https://telize-v1\.p\.mashape\.com}, lookup.query_url(query)
end
def test_result_on_ip_address_search
result = Geocoder.search("74.200.247.59").first
assert result.is_a?(Geocoder::Result::Telize)
end
def test_result_components
result = Geocoder.search("74.200.247.59").first
assert_equal "Jersey City, NJ 07302, United States", result.address
assert_equal "US", result.country_code
assert_equal [40.7209, -74.0468], result.coordinates
def test_no_results
results = Geocoder.search("10.10.10.10")
assert_equal 0, results.length
end
results = Geocoder.search("555.555.555.555", ip_address: true)