2019-03-12 10:52:28 +00:00
|
|
|
defmodule Mobilizon.Service.Geospatial.PhotonTest 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.Photon
|
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 "returns a valid address from search" do
|
2020-07-09 15:24:28 +00:00
|
|
|
data =
|
|
|
|
File.read!("test/fixtures/geospatial/photon/search.json")
|
|
|
|
|> Jason.decode!()
|
|
|
|
|
|
|
|
Mock
|
|
|
|
|> expect(:call, fn
|
|
|
|
%{
|
|
|
|
method: :get,
|
|
|
|
url: "https://photon.komoot.de/api/?q=10%20rue%20Jangot&lang=en&limit=10"
|
|
|
|
},
|
|
|
|
_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
|
|
|
|
}
|
|
|
|
} == Photon.search("10 rue Jangot") |> hd
|
2019-03-12 10:52:28 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
# Photon returns something quite wrong, so no need to test this right now.
|
|
|
|
# test "returns a valid address from reverse geocode" do
|
|
|
|
# use_cassette "geospatial/photon/geocode" do
|
|
|
|
# assert %Address{
|
2019-03-22 14:51:23 +00:00
|
|
|
# locality: "Lyon",
|
2019-03-12 10:52:28 +00:00
|
|
|
# description: "",
|
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.8425657, 45.7517141},
|
|
|
|
# properties: %{},
|
|
|
|
# srid: 4326
|
|
|
|
# }
|
|
|
|
# } ==
|
|
|
|
# Photon.geocode(4.8425657, 45.7517141)
|
|
|
|
# |> hd
|
|
|
|
# end
|
|
|
|
# end
|
|
|
|
end
|
|
|
|
end
|