ash_graphql/test/create_test.exs

196 lines
4.1 KiB
Elixir
Raw Normal View History

2020-12-02 18:07:15 +13:00
defmodule AshGraphql.CreateTest do
use ExUnit.Case, async: false
setup do
on_exit(fn ->
try do
ETS.Set.delete(ETS.Set.wrap_existing!(AshGraphql.Test.Post))
ETS.Set.delete(ETS.Set.wrap_existing!(AshGraphql.Test.Comment))
rescue
_ ->
:ok
end
end)
end
2020-12-02 18:07:15 +13:00
test "a create with arguments works" do
resp =
"""
mutation CreatePost($input: CreatePostInput) {
createPost(input: $input) {
result{
text
}
errors{
message
}
}
}
"""
|> Absinthe.run(AshGraphql.Test.Schema,
variables: %{
"input" => %{
"text" => "foobar",
"confirmation" => "foobar"
}
}
)
assert {:ok, result} = resp
refute Map.has_key?(result, :errors)
assert %{data: %{"createPost" => %{"result" => %{"text" => "foobar"}}}} = result
end
test "an upsert works" do
post =
AshGraphql.Test.Post
|> Ash.Changeset.new(text: "foobar")
|> AshGraphql.Test.Api.create!()
resp =
"""
mutation CreatePost($input: UpsertPostInput) {
upsertPost(input: $input) {
result{
text
id
}
errors{
message
}
}
}
"""
|> Absinthe.run(AshGraphql.Test.Schema,
variables: %{
"input" => %{
"id" => post.id,
"text" => "foobar"
}
}
)
assert {:ok, result} = resp
refute Map.has_key?(result, :errors)
post_id = post.id
2021-04-17 05:49:51 +12:00
assert %{data: %{"upsertPost" => %{"result" => %{"text" => "foobar", "id" => ^post_id}}}} =
result
end
2020-12-02 18:07:15 +13:00
test "arguments are threaded properly" do
resp =
"""
mutation CreatePost($input: CreatePostInput) {
createPost(input: $input) {
result{
text
}
errors{
message
}
}
}
"""
|> Absinthe.run(AshGraphql.Test.Schema,
variables: %{
"input" => %{
"text" => "foobar",
"confirmation" => "foobar2"
}
}
)
assert {:ok, result} = resp
assert %{data: %{"createPost" => %{"result" => nil, "errors" => [%{"message" => message}]}}} =
result
assert message =~ "Confirmation did not match value"
2020-12-02 18:07:15 +13:00
end
test "custom input types are used" do
resp =
"""
mutation CreatePost($input: CreatePostInput) {
createPost(input: $input) {
result{
text
foo{
foo
bar
}
}
errors{
message
}
}
}
"""
|> Absinthe.run(AshGraphql.Test.Schema,
variables: %{
"input" => %{
"text" => "foobar",
"confirmation" => "foobar",
"foo" => %{
"foo" => "foo",
"bar" => "bar"
}
}
}
)
assert {:ok, result} = resp
refute Map.has_key?(result, :errors)
assert %{
data: %{
"createPost" => %{
"result" => %{"text" => "foobar", "foo" => %{"foo" => "foo", "bar" => "bar"}}
}
}
} = result
end
2021-03-29 08:46:23 +13:00
test "custom enums are used" do
resp =
"""
mutation CreatePost($input: CreatePostInput) {
createPost(input: $input) {
result{
text
status
}
errors{
message
}
}
}
"""
|> Absinthe.run(AshGraphql.Test.Schema,
variables: %{
"input" => %{
"text" => "foobar",
"confirmation" => "foobar",
"status" => "OPEN"
}
}
)
assert {:ok, result} = resp
refute Map.has_key?(result, :errors)
assert %{
data: %{
"createPost" => %{
"result" => %{"text" => "foobar", "status" => "OPEN"}
}
}
} = result
end
2020-12-02 18:07:15 +13:00
end