2019-03-12 11:52:28 +01:00
|
|
|
defmodule Mobilizon.Service.Geospatial.NominatimTest 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.Nominatim
|
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 "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: "[]"}}
|
|
|
|
end do
|
|
|
|
Nominatim.search("10 Rue Jangot",
|
|
|
|
limit: 5,
|
|
|
|
lang: "fr"
|
|
|
|
)
|
|
|
|
|
|
|
|
assert_called(
|
|
|
|
HTTPoison.get(
|
2019-11-08 19:37:14 +01:00
|
|
|
"https://nominatim.openstreetmap.org/search?format=geocodejson&q=10%20Rue%20Jangot&limit=5&accept-language=fr&addressdetails=1&namedetails=1",
|
2019-10-11 17:20:03 +02:00
|
|
|
@httpoison_headers
|
2019-03-12 11:52:28 +01:00
|
|
|
)
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
test "returns a valid address from search" do
|
|
|
|
use_cassette "geospatial/nominatim/search" do
|
2019-11-08 19:37:14 +01:00
|
|
|
assert [
|
|
|
|
%Address{
|
|
|
|
locality: "Lyon",
|
|
|
|
description: "10 Rue Jangot",
|
|
|
|
region: "Auvergne-Rhône-Alpes",
|
|
|
|
country: "France",
|
|
|
|
postal_code: "69007",
|
|
|
|
street: "10 Rue Jangot",
|
|
|
|
geom: %Geo.Point{
|
|
|
|
coordinates: {4.8425657, 45.7517141},
|
|
|
|
properties: %{},
|
|
|
|
srid: 4326
|
|
|
|
},
|
|
|
|
origin_id: "nominatim:3078260611",
|
|
|
|
type: "house"
|
|
|
|
}
|
|
|
|
] == Nominatim.search("10 rue Jangot")
|
2019-03-12 11:52:28 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
test "returns a valid address from reverse geocode" do
|
|
|
|
use_cassette "geospatial/nominatim/geocode" do
|
2019-11-08 19:37:14 +01:00
|
|
|
assert [
|
|
|
|
%Address{
|
|
|
|
locality: "Lyon",
|
|
|
|
description: "10 Rue Jangot",
|
|
|
|
region: "Auvergne-Rhône-Alpes",
|
|
|
|
country: "France",
|
|
|
|
postal_code: "69007",
|
|
|
|
street: "10 Rue Jangot",
|
|
|
|
geom: %Geo.Point{
|
|
|
|
coordinates: {4.8425657, 45.7517141},
|
|
|
|
properties: %{},
|
|
|
|
srid: 4326
|
|
|
|
},
|
|
|
|
origin_id: "nominatim:3078260611",
|
|
|
|
type: "house"
|
|
|
|
}
|
|
|
|
] ==
|
2019-03-12 11:52:28 +01:00
|
|
|
Nominatim.geocode(4.842569, 45.751718)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|