2018-11-06 09:30:27 +00:00
|
|
|
defmodule MobilizonWeb.AbsintheHelpers do
|
2019-10-16 17:03:31 +00:00
|
|
|
use Phoenix.ConnTest
|
|
|
|
@endpoint MobilizonWeb.Endpoint
|
|
|
|
|
2019-01-03 13:59:59 +00:00
|
|
|
@moduledoc """
|
|
|
|
Absinthe helpers for tests
|
|
|
|
"""
|
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
|
|
|
|
|
|
|
def graphql_query(conn, options) do
|
|
|
|
conn
|
|
|
|
|> post(
|
|
|
|
"/api",
|
|
|
|
build_query(options[:query], options[:variables])
|
|
|
|
)
|
|
|
|
|> json_response(200)
|
|
|
|
end
|
|
|
|
|
|
|
|
defp build_query(query, variables) do
|
|
|
|
%{
|
|
|
|
"query" => query,
|
|
|
|
"variables" => variables
|
|
|
|
}
|
|
|
|
end
|
2018-11-06 09:30:27 +00:00
|
|
|
end
|