2019-03-12 11:52:28 +01:00
|
|
|
defmodule Mobilizon.Service.Geospatial.NominatimTest do
|
2020-07-09 17:24:28 +02:00
|
|
|
use Mobilizon.DataCase
|
|
|
|
import Mox
|
2019-09-22 16:26:23 +02:00
|
|
|
|
|
|
|
alias Mobilizon.Addresses.Address
|
2020-01-28 20:15:59 +01:00
|
|
|
alias Mobilizon.Service.Geospatial.Nominatim
|
2020-08-30 23:29:56 +02:00
|
|
|
alias Mobilizon.Service.HTTP.GeospatialClient.Mock
|
2019-03-12 11:52:28 +01:00
|
|
|
|
|
|
|
describe "search address" do
|
2020-07-09 17:24:28 +02:00
|
|
|
test "returns a valid address from search" do
|
|
|
|
data =
|
|
|
|
File.read!("test/fixtures/geospatial/nominatim/search.json")
|
|
|
|
|> Jason.decode!()
|
2019-03-12 11:52:28 +01:00
|
|
|
|
2020-07-09 17:24:28 +02:00
|
|
|
Mock
|
|
|
|
|> expect(:call, fn
|
|
|
|
%{
|
|
|
|
method: :get,
|
|
|
|
url:
|
|
|
|
"https://nominatim.openstreetmap.org/search?format=geocodejson&q=10%20rue%20Jangot&limit=10&accept-language=en&addressdetails=1&namedetails=1"
|
|
|
|
},
|
|
|
|
_opts ->
|
|
|
|
{:ok, %Tesla.Env{status: 200, body: data}}
|
|
|
|
end)
|
2019-03-12 11:52:28 +01:00
|
|
|
|
2020-07-09 17:24:28 +02: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
|
|
|
|
|
|
|
|
test "returns a valid address from reverse geocode" do
|
2020-07-09 17:24:28 +02:00
|
|
|
data =
|
|
|
|
File.read!("test/fixtures/geospatial/nominatim/geocode.json")
|
|
|
|
|> Jason.decode!()
|
|
|
|
|
|
|
|
Mock
|
|
|
|
|> expect(:call, fn
|
|
|
|
%{
|
|
|
|
method: :get,
|
|
|
|
url:
|
|
|
|
"https://nominatim.openstreetmap.org/reverse?format=geocodejson&lat=45.751718&lon=4.842569&accept-language=en&addressdetails=1&namedetails=1"
|
|
|
|
},
|
|
|
|
_opts ->
|
|
|
|
{:ok, %Tesla.Env{status: 200, body: data}}
|
|
|
|
end)
|
|
|
|
|
|
|
|
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.geocode(4.842569, 45.751718)
|
2019-03-12 11:52:28 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|