2019-03-14 18:31:14 +01:00
|
|
|
defmodule MobilizonWeb.Resolvers.AddressResolverTest do
|
|
|
|
use MobilizonWeb.ConnCase
|
|
|
|
alias MobilizonWeb.AbsintheHelpers
|
|
|
|
import Mobilizon.Factory
|
|
|
|
|
|
|
|
describe "Address Resolver" do
|
|
|
|
test "search/3 search for addresses", %{conn: conn} do
|
|
|
|
address = insert(:address, description: "10 rue Jangot, Lyon")
|
|
|
|
|
|
|
|
query = """
|
|
|
|
{
|
|
|
|
searchAddress(query: "10 Rue Jangot") {
|
2019-03-22 15:51:23 +01:00
|
|
|
street,
|
2019-03-14 18:31:14 +01:00
|
|
|
description,
|
|
|
|
geom
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"""
|
|
|
|
|
|
|
|
res =
|
|
|
|
conn
|
|
|
|
|> get("/api", AbsintheHelpers.query_skeleton(query, "address"))
|
|
|
|
|
|
|
|
json_response(res, 200)["data"]["searchAddress"]
|
|
|
|
|> Enum.each(fn addr -> assert Map.get(addr, "description") == address.description end)
|
|
|
|
end
|
|
|
|
|
|
|
|
test "geocode/3 reverse geocodes coordinates", %{conn: conn} do
|
|
|
|
query = """
|
|
|
|
{
|
|
|
|
reverseGeocode(longitude: -23.01, latitude: 30.01) {
|
|
|
|
description,
|
|
|
|
geom
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"""
|
|
|
|
|
|
|
|
res =
|
|
|
|
conn
|
|
|
|
|> get("/api", AbsintheHelpers.query_skeleton(query, "address"))
|
|
|
|
|
2019-11-08 19:37:14 +01:00
|
|
|
assert json_response(res, 200)["data"]["reverseGeocode"] |> hd |> Map.get("description") ==
|
|
|
|
"Anywhere"
|
2019-03-14 18:31:14 +01:00
|
|
|
|
|
|
|
query = """
|
|
|
|
{
|
|
|
|
reverseGeocode(longitude: 45.75, latitude: 4.85) {
|
|
|
|
description,
|
|
|
|
geom
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"""
|
|
|
|
|
|
|
|
res =
|
|
|
|
conn
|
|
|
|
|> get("/api", AbsintheHelpers.query_skeleton(query, "address"))
|
|
|
|
|
|
|
|
assert json_response(res, 200)["data"]["reverseGeocode"] |> hd |> Map.get("description") ==
|
2019-11-08 19:37:14 +01:00
|
|
|
"10 rue Jangot, Lyon"
|
2019-03-14 18:31:14 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|