2019-03-12 10:52:28 +00:00
|
|
|
defmodule Mobilizon.Service.Geospatial.MapQuestTest do
|
2019-12-20 12:04:34 +00:00
|
|
|
use Mobilizon.DataCase
|
2019-03-12 10:52:28 +00:00
|
|
|
|
2020-07-09 15:24:28 +00:00
|
|
|
import Mox
|
2019-09-22 14:26:23 +00:00
|
|
|
|
|
|
|
alias Mobilizon.Addresses.Address
|
2020-01-28 19:15:59 +00:00
|
|
|
alias Mobilizon.Service.Geospatial.MapQuest
|
2020-08-30 21:29:56 +00:00
|
|
|
alias Mobilizon.Service.HTTP.GeospatialClient.Mock
|
2019-03-12 10:52:28 +00: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
|
|
|
|
|
2020-07-09 15:24:28 +00:00
|
|
|
test "triggers an error with an invalid API Key" do
|
|
|
|
Mock
|
|
|
|
|> expect(:call, fn
|
|
|
|
%{
|
|
|
|
method: :get,
|
|
|
|
url:
|
|
|
|
"https://open.mapquestapi.com/geocoding/v1/address?key=secret_key&location=10%20rue%20Jangot&maxResults=10"
|
|
|
|
},
|
|
|
|
_opts ->
|
2019-03-12 10:52:28 +00:00
|
|
|
{:ok,
|
2020-07-09 15:24:28 +00:00
|
|
|
%Tesla.Env{status: 403, body: "The AppKey submitted with this request is invalid."}}
|
|
|
|
end)
|
2019-03-12 10:52:28 +00:00
|
|
|
|
|
|
|
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
|
2020-07-09 15:24:28 +00:00
|
|
|
data =
|
|
|
|
File.read!("test/fixtures/geospatial/map_quest/search.json")
|
|
|
|
|> Jason.decode!()
|
|
|
|
|
|
|
|
Mock
|
|
|
|
|> expect(:call, fn
|
|
|
|
%{
|
|
|
|
method: :get,
|
|
|
|
url:
|
|
|
|
"https://open.mapquestapi.com/geocoding/v1/address?key=secret_key&location=10%20rue%20Jangot&maxResults=10"
|
|
|
|
},
|
|
|
|
_opts ->
|
|
|
|
{:ok, %Tesla.Env{status: 200, body: data}}
|
|
|
|
end)
|
|
|
|
|
|
|
|
assert %Address{
|
|
|
|
locality: "Lyon",
|
|
|
|
description: "10 Rue Jangot",
|
|
|
|
region: "Auvergne-Rhône-Alpes",
|
|
|
|
country: "FR",
|
|
|
|
postal_code: "69007",
|
|
|
|
street: "10 Rue Jangot",
|
|
|
|
geom: %Geo.Point{
|
|
|
|
coordinates: {4.842566, 45.751714},
|
|
|
|
properties: %{},
|
|
|
|
srid: 4326
|
|
|
|
}
|
|
|
|
} ==
|
|
|
|
MapQuest.search("10 rue Jangot", api_key: "secret_key")
|
|
|
|
|> hd
|
2019-03-12 10:52:28 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
test "returns a valid address from reverse geocode" do
|
2020-07-09 15:24:28 +00:00
|
|
|
data =
|
|
|
|
File.read!("test/fixtures/geospatial/map_quest/geocode.json")
|
|
|
|
|> Jason.decode!()
|
|
|
|
|
|
|
|
Mock
|
|
|
|
|> expect(:call, fn
|
|
|
|
%{
|
|
|
|
method: :get,
|
|
|
|
url:
|
|
|
|
"https://open.mapquestapi.com/geocoding/v1/reverse?key=secret_key&location=45.751718,4.842569&maxResults=10"
|
|
|
|
},
|
|
|
|
_opts ->
|
|
|
|
{:ok, %Tesla.Env{status: 200, body: data}}
|
|
|
|
end)
|
|
|
|
|
|
|
|
assert %Address{
|
|
|
|
locality: "Lyon",
|
|
|
|
description: "10 Rue Jangot",
|
|
|
|
region: "Auvergne-Rhône-Alpes",
|
|
|
|
country: "FR",
|
|
|
|
postal_code: "69007",
|
|
|
|
street: "10 Rue Jangot",
|
|
|
|
geom: %Geo.Point{
|
|
|
|
coordinates: {4.842569, 45.751718},
|
|
|
|
properties: %{},
|
|
|
|
srid: 4326
|
|
|
|
}
|
|
|
|
} ==
|
|
|
|
MapQuest.geocode(4.842569, 45.751718, api_key: "secret_key")
|
|
|
|
|> hd
|
2019-03-12 10:52:28 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|