2019-03-12 10:52:28 +00:00
|
|
|
defmodule Mobilizon.Service.Geospatial.GoogleMapsTest do
|
2019-09-22 14:26:23 +00:00
|
|
|
use ExVCR.Mock, adapter: ExVCR.Adapter.Hackney
|
|
|
|
|
2019-03-12 10:52:28 +00:00
|
|
|
use Mobilizon.DataCase, async: false
|
|
|
|
|
|
|
|
import Mock
|
2019-09-22 14:26:23 +00:00
|
|
|
|
|
|
|
alias Mobilizon.Addresses.Address
|
|
|
|
alias Mobilizon.Service.Geospatial.GoogleMaps
|
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 Google Maps", fn ->
|
|
|
|
GoogleMaps.search("10 Rue Jangot")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
test "produces a valid search address with options" do
|
|
|
|
with_mock HTTPoison,
|
|
|
|
get: fn _url ->
|
|
|
|
{:ok,
|
|
|
|
%HTTPoison.Response{status_code: 200, body: "{\"status\": \"OK\", \"results\": []}"}}
|
|
|
|
end do
|
|
|
|
GoogleMaps.search("10 Rue Jangot",
|
|
|
|
limit: 5,
|
|
|
|
lang: "fr",
|
|
|
|
api_key: "toto"
|
|
|
|
)
|
|
|
|
|
|
|
|
assert_called(
|
|
|
|
HTTPoison.get(
|
|
|
|
"https://maps.googleapis.com/maps/api/geocode/json?limit=5&key=toto&language=fr&address=10%20Rue%20Jangot"
|
|
|
|
)
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
test "triggers an error with an invalid API Key" do
|
|
|
|
assert_raise ArgumentError, "The provided API key is invalid.", fn ->
|
|
|
|
GoogleMaps.search("10 rue Jangot", api_key: "secret_key")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
test "returns a valid address from search" do
|
|
|
|
use_cassette "geospatial/google_maps/search" do
|
|
|
|
assert %Address{
|
2019-03-22 14:51:23 +00:00
|
|
|
locality: "Lyon",
|
2019-08-22 13:57:44 +00:00
|
|
|
description: "10 Rue Jangot",
|
2019-03-22 14:51:23 +00:00
|
|
|
region: "Auvergne-Rhône-Alpes",
|
|
|
|
country: "France",
|
|
|
|
postal_code: "69007",
|
|
|
|
street: "10 Rue Jangot",
|
2019-03-12 10:52:28 +00:00
|
|
|
geom: %Geo.Point{
|
|
|
|
coordinates: {4.8424032, 45.75164940000001},
|
|
|
|
properties: %{},
|
|
|
|
srid: 4326
|
2019-08-22 13:57:44 +00:00
|
|
|
},
|
|
|
|
origin_id: "gm:ChIJtW0QikTq9EcRLI4Vy6bRx0U"
|
|
|
|
} ==
|
|
|
|
GoogleMaps.search("10 rue Jangot",
|
|
|
|
api_key: "toto"
|
|
|
|
)
|
|
|
|
|> hd
|
2019-03-12 10:52:28 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
test "returns a valid address from reverse geocode" do
|
|
|
|
use_cassette "geospatial/google_maps/geocode" do
|
|
|
|
assert %Address{
|
2019-03-22 14:51:23 +00:00
|
|
|
locality: "Lyon",
|
2019-08-22 13:57:44 +00:00
|
|
|
description: "10bis Rue Jangot",
|
2019-03-22 14:51:23 +00:00
|
|
|
region: "Auvergne-Rhône-Alpes",
|
|
|
|
country: "France",
|
|
|
|
postal_code: "69007",
|
2019-08-22 13:57:44 +00:00
|
|
|
street: "10bis Rue Jangot",
|
2019-03-12 10:52:28 +00:00
|
|
|
geom: %Geo.Point{
|
2019-08-22 13:57:44 +00:00
|
|
|
coordinates: {4.8424966, 45.751725},
|
2019-03-12 10:52:28 +00:00
|
|
|
properties: %{},
|
|
|
|
srid: 4326
|
2019-08-22 13:57:44 +00:00
|
|
|
},
|
|
|
|
origin_id: "gm:ChIJrW0QikTq9EcR96jk2OnO75w"
|
2019-03-12 10:52:28 +00:00
|
|
|
} ==
|
|
|
|
GoogleMaps.geocode(4.842569, 45.751718, api_key: "toto")
|
|
|
|
|> hd
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|