2020-01-26 19:34:25 +00:00
|
|
|
defmodule Mobilizon.GraphQL.AbsintheHelpers do
|
2019-01-03 13:59:59 +00:00
|
|
|
@moduledoc """
|
|
|
|
Absinthe helpers for tests
|
|
|
|
"""
|
2020-01-26 19:34:25 +00:00
|
|
|
|
2020-02-18 07:57:00 +00:00
|
|
|
import Phoenix.ConnTest
|
|
|
|
|
|
|
|
alias Plug.Conn
|
2020-01-26 19:34:25 +00:00
|
|
|
|
2020-01-26 20:36:50 +00:00
|
|
|
@endpoint Mobilizon.Web.Endpoint
|
2020-01-26 19:34:25 +00:00
|
|
|
|
2018-11-06 09:30:27 +00:00
|
|
|
def query_skeleton(query, query_name) do
|
|
|
|
%{
|
|
|
|
"operationName" => "#{query_name}",
|
|
|
|
"query" => "query #{query_name} #{query}",
|
|
|
|
"variables" => "{}"
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def mutation_skeleton(query) do
|
|
|
|
%{
|
|
|
|
"operationName" => "",
|
|
|
|
"query" => "#{query}",
|
|
|
|
"variables" => ""
|
|
|
|
}
|
|
|
|
end
|
2019-10-16 17:03:31 +00:00
|
|
|
|
2020-02-18 07:57:00 +00:00
|
|
|
@spec graphql_query(Conn.t(), Keyword.t()) :: map | no_return
|
2019-10-16 17:03:31 +00:00
|
|
|
def graphql_query(conn, options) do
|
|
|
|
conn
|
2020-01-26 19:34:25 +00:00
|
|
|
|> post("/api", build_query(options[:query], Keyword.get(options, :variables, %{})))
|
2019-10-16 17:03:31 +00:00
|
|
|
|> json_response(200)
|
|
|
|
end
|
|
|
|
|
|
|
|
defp build_query(query, variables) do
|
|
|
|
%{
|
|
|
|
"query" => query,
|
|
|
|
"variables" => variables
|
|
|
|
}
|
|
|
|
end
|
2018-11-06 09:30:27 +00:00
|
|
|
end
|