2019-03-12 11:52:28 +01:00
|
|
|
defmodule Mobilizon.Service.Geospatial.MapQuestTest do
|
2019-09-22 16:26:23 +02:00
|
|
|
use ExVCR.Mock, adapter: ExVCR.Adapter.Hackney
|
|
|
|
|
2019-03-12 11:52:28 +01:00
|
|
|
use Mobilizon.DataCase, async: false
|
|
|
|
|
|
|
|
import Mock
|
2019-09-22 16:26:23 +02:00
|
|
|
|
|
|
|
alias Mobilizon.Addresses.Address
|
|
|
|
alias Mobilizon.Service.Geospatial.MapQuest
|
2019-10-11 17:20:03 +02:00
|
|
|
alias Mobilizon.Config
|
|
|
|
|
|
|
|
@httpoison_headers [
|
|
|
|
{"User-Agent",
|
|
|
|
"#{Config.instance_name()} #{Config.instance_hostname()} - Mobilizon #{
|
|
|
|
Mix.Project.config()[:version]
|
|
|
|
}"}
|
|
|
|
]
|
2019-03-12 11:52:28 +01:00
|
|
|
|
|
|
|
describe "search address" do
|
|
|
|
test "without API Key triggers an error" do
|
|
|
|
assert_raise ArgumentError, "API Key required to use MapQuest", fn ->
|
|
|
|
MapQuest.search("10 Rue Jangot")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
test "produces a valid search address with options" do
|
|
|
|
with_mock HTTPoison,
|
2019-10-11 17:20:03 +02:00
|
|
|
get: fn _url, _headers ->
|
2019-03-12 11:52:28 +01:00
|
|
|
{:ok,
|
|
|
|
%HTTPoison.Response{
|
|
|
|
status_code: 200,
|
|
|
|
body: "{\"info\": {\"statuscode\": 0}, \"results\": []}"
|
|
|
|
}}
|
|
|
|
end do
|
|
|
|
MapQuest.search("10 Rue Jangot",
|
|
|
|
limit: 5,
|
|
|
|
lang: "fr",
|
|
|
|
api_key: "toto"
|
|
|
|
)
|
|
|
|
|
|
|
|
assert_called(
|
|
|
|
HTTPoison.get(
|
2019-10-11 17:20:03 +02:00
|
|
|
"https://open.mapquestapi.com/geocoding/v1/address?key=toto&location=10%20Rue%20Jangot&maxResults=5",
|
|
|
|
@httpoison_headers
|
2019-03-12 11:52:28 +01:00
|
|
|
)
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
test "triggers an error with an invalid API Key" do
|
|
|
|
assert_raise ArgumentError, "The AppKey submitted with this request is invalid.", fn ->
|
|
|
|
MapQuest.search("10 rue Jangot", api_key: "secret_key")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
test "returns a valid address from search" do
|
|
|
|
use_cassette "geospatial/map_quest/search" do
|
|
|
|
assert %Address{
|
2019-03-22 15:51:23 +01:00
|
|
|
locality: "Lyon",
|
2019-03-12 11:52:28 +01:00
|
|
|
description: "10 Rue Jangot",
|
2019-03-22 15:51:23 +01:00
|
|
|
region: "Auvergne-Rhône-Alpes",
|
|
|
|
country: "FR",
|
|
|
|
postal_code: "69007",
|
|
|
|
street: "10 Rue Jangot",
|
2019-03-12 11:52:28 +01:00
|
|
|
geom: %Geo.Point{
|
|
|
|
coordinates: {4.842566, 45.751714},
|
|
|
|
properties: %{},
|
|
|
|
srid: 4326
|
|
|
|
}
|
|
|
|
} ==
|
|
|
|
MapQuest.search("10 rue Jangot", api_key: "secret_key")
|
|
|
|
|> hd
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
test "returns a valid address from reverse geocode" do
|
|
|
|
use_cassette "geospatial/map_quest/geocode" do
|
|
|
|
assert %Address{
|
2019-03-22 15:51:23 +01:00
|
|
|
locality: "Lyon",
|
2019-03-12 11:52:28 +01:00
|
|
|
description: "10 Rue Jangot",
|
2019-03-22 15:51:23 +01:00
|
|
|
region: "Auvergne-Rhône-Alpes",
|
|
|
|
country: "FR",
|
|
|
|
postal_code: "69007",
|
|
|
|
street: "10 Rue Jangot",
|
2019-03-12 11:52:28 +01:00
|
|
|
geom: %Geo.Point{
|
|
|
|
coordinates: {4.842569, 45.751718},
|
|
|
|
properties: %{},
|
|
|
|
srid: 4326
|
|
|
|
}
|
|
|
|
} ==
|
|
|
|
MapQuest.geocode(4.842569, 45.751718, api_key: "secret_key")
|
|
|
|
|> hd
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|