2019-03-12 11:52:28 +01:00
|
|
|
defmodule Mobilizon.Service.Geospatial.AddokTest do
|
2019-09-22 16:26:23 +02:00
|
|
|
use ExVCR.Mock, adapter: ExVCR.Adapter.Hackney
|
|
|
|
|
2019-12-20 13:04:34 +01:00
|
|
|
use Mobilizon.DataCase
|
2019-03-12 11:52:28 +01:00
|
|
|
|
|
|
|
import Mock
|
|
|
|
|
2019-09-22 16:26:23 +02:00
|
|
|
alias Mobilizon.Addresses.Address
|
2019-10-11 17:20:03 +02:00
|
|
|
alias Mobilizon.Config
|
2020-01-28 20:15:59 +01:00
|
|
|
alias Mobilizon.Service.Geospatial.Addok
|
2019-10-11 17:20:03 +02:00
|
|
|
|
2019-12-20 13:04:34 +01:00
|
|
|
setup do
|
|
|
|
# Config.instance_user_agent/0 makes database calls so because of ownership connection
|
|
|
|
# we need to define it like this instead of a constant
|
|
|
|
# See https://hexdocs.pm/ecto_sql/Ecto.Adapters.SQL.Sandbox.html
|
|
|
|
{:ok,
|
|
|
|
httpoison_headers: [
|
|
|
|
{"User-Agent", Config.instance_user_agent()}
|
|
|
|
]}
|
|
|
|
end
|
2019-09-22 16:26:23 +02:00
|
|
|
|
|
|
|
@endpoint get_in(Application.get_env(:mobilizon, Addok), [:endpoint])
|
2019-03-12 11:52:28 +01:00
|
|
|
@fake_endpoint "https://domain.tld"
|
|
|
|
|
|
|
|
describe "search address" do
|
2019-12-20 13:04:34 +01:00
|
|
|
test "produces a valid search address", %{httpoison_headers: httpoison_headers} do
|
2019-10-11 17:20:03 +02:00
|
|
|
with_mock HTTPoison, get: fn _url, _headers -> "{}" end do
|
2019-03-12 11:52:28 +01:00
|
|
|
Addok.search("10 Rue Jangot")
|
2019-10-11 17:20:03 +02:00
|
|
|
|
|
|
|
assert_called(
|
2019-12-20 13:04:34 +01:00
|
|
|
HTTPoison.get("#{@endpoint}/search/?q=10%20Rue%20Jangot&limit=10", httpoison_headers)
|
2019-10-11 17:20:03 +02:00
|
|
|
)
|
2019-03-12 11:52:28 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-12-20 13:04:34 +01:00
|
|
|
test "produces a valid search address with options", %{httpoison_headers: httpoison_headers} do
|
2019-10-11 17:20:03 +02:00
|
|
|
with_mock HTTPoison, get: fn _url, _headers -> "{}" end do
|
2019-03-12 11:52:28 +01:00
|
|
|
Addok.search("10 Rue Jangot",
|
|
|
|
endpoint: @fake_endpoint,
|
|
|
|
limit: 5,
|
|
|
|
coords: %{lat: 49, lon: 12}
|
|
|
|
)
|
|
|
|
|
|
|
|
assert_called(
|
2019-10-11 17:20:03 +02:00
|
|
|
HTTPoison.get(
|
|
|
|
"#{@fake_endpoint}/search/?q=10%20Rue%20Jangot&limit=5&lat=49&lon=12",
|
2019-12-20 13:04:34 +01:00
|
|
|
httpoison_headers
|
2019-10-11 17:20:03 +02:00
|
|
|
)
|
2019-03-12 11:52:28 +01:00
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
test "returns a valid address from search" do
|
|
|
|
use_cassette "geospatial/addok/search" do
|
|
|
|
assert %Address{
|
2019-03-22 15:51:23 +01:00
|
|
|
locality: "Lyon",
|
2019-03-12 11:52:28 +01:00
|
|
|
description: "10 Rue Jangot",
|
2019-03-22 15:51:23 +01:00
|
|
|
postal_code: "69007",
|
|
|
|
street: "10 Rue Jangot",
|
2019-03-12 11:52:28 +01:00
|
|
|
geom: %Geo.Point{coordinates: {4.842569, 45.751718}, properties: %{}, srid: 4326}
|
|
|
|
} == Addok.search("10 rue Jangot") |> hd
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
test "returns a valid address from reverse geocode" do
|
|
|
|
use_cassette "geospatial/addok/geocode" do
|
|
|
|
assert %Address{
|
2019-03-22 15:51:23 +01:00
|
|
|
locality: "Lyon",
|
2019-03-12 11:52:28 +01:00
|
|
|
description: "10 Rue Jangot",
|
2019-03-22 15:51:23 +01:00
|
|
|
postal_code: "69007",
|
|
|
|
street: "10 Rue Jangot",
|
2019-03-12 11:52:28 +01:00
|
|
|
geom: %Geo.Point{coordinates: {4.842569, 45.751718}, properties: %{}, srid: 4326}
|
|
|
|
} == Addok.geocode(4.842569, 45.751718) |> hd
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|