ash_graphql/test/destroy_test.exs

187 lines
4 KiB
Elixir
Raw Permalink Normal View History

defmodule AshGraphql.DestroyTest do
use ExUnit.Case, async: false
setup do
on_exit(fn ->
Application.delete_env(:ash_graphql, AshGraphql.Test.Api)
2022-09-28 19:28:44 +13:00
AshGraphql.TestHelpers.stop_ets()
end)
end
test "a destroy works" do
post = AshGraphql.Test.Api.create!(Ash.Changeset.new(AshGraphql.Test.Post, text: "foobar"))
resp =
"""
mutation DeletePost($id: ID) {
deletePost(id: $id) {
result{
text
}
errors{
message
}
}
}
"""
|> Absinthe.run(AshGraphql.Test.Schema,
variables: %{
"id" => post.id
}
)
assert {:ok, result} = resp
refute Map.has_key?(result, :errors)
assert %{data: %{"deletePost" => %{"result" => %{"text" => "foobar"}}}} = result
end
2021-04-17 05:49:51 +12:00
test "a soft destroy works" do
post = AshGraphql.Test.Api.create!(Ash.Changeset.new(AshGraphql.Test.Post, text: "foobar"))
resp =
"""
mutation ArchivePost($id: ID) {
deletePost(id: $id) {
result{
text
}
errors{
message
}
}
}
"""
|> Absinthe.run(AshGraphql.Test.Schema,
variables: %{
"id" => post.id
}
)
assert {:ok, result} = resp
refute Map.has_key?(result, :errors)
assert %{data: %{"deletePost" => %{"result" => %{"text" => "foobar"}}}} = result
end
test "a destroy with a configured read action and no identity works" do
AshGraphql.Test.Api.create!(
Ash.Changeset.new(AshGraphql.Test.Post, text: "foobar", best: true)
)
resp =
"""
mutation DeleteBestPost {
deleteBestPost {
result{
text
}
errors{
message
}
}
}
"""
|> Absinthe.run(AshGraphql.Test.Schema)
assert {:ok, result} = resp
refute Map.has_key?(result, :errors)
assert %{data: %{"deleteBestPost" => %{"result" => %{"text" => "foobar"}}}} = result
end
test "a destroy with an error" do
post = AshGraphql.Test.Api.create!(Ash.Changeset.new(AshGraphql.Test.Post, text: "foobar"))
resp =
"""
mutation DeleteWithError($id: ID) {
deletePostWithError(id: $id) {
result{
text
}
errors{
message
}
}
}
"""
|> Absinthe.run(AshGraphql.Test.Schema,
variables: %{
"id" => post.id
}
)
assert {:ok, result} = resp
assert %{
data: %{
"deletePostWithError" => %{
"errors" => [%{"message" => "could not be found"}],
"result" => nil
}
}
} == result
end
2021-04-17 05:49:51 +12:00
test "destroying a non-existent record returns a not found error" do
resp =
"""
mutation DeletePost($id: ID) {
deletePost(id: $id) {
result{
text
}
errors{
message
}
}
}
"""
|> Absinthe.run(AshGraphql.Test.Schema,
variables: %{
"id" => Ash.UUID.generate()
}
)
assert {:ok, result} = resp
refute Map.has_key?(result, :errors)
assert %{data: %{"deletePost" => %{"errors" => [%{"message" => "could not be found"}]}}} =
result
2021-04-17 05:49:51 +12:00
end
2021-09-12 17:02:08 +12:00
test "root level error on destroy" do
Application.put_env(:ash_graphql, AshGraphql.Test.Api,
2021-09-12 17:02:08 +12:00
graphql: [show_raised_errors?: true, root_level_errors?: true]
)
post = AshGraphql.Test.Api.create!(Ash.Changeset.new(AshGraphql.Test.Post, text: "foobar"))
2021-09-12 17:02:08 +12:00
resp =
"""
mutation DeletePost($id: ID) {
deletePostWithError(id: $id) {
2021-09-12 17:02:08 +12:00
result{
text
}
errors{
message
}
}
}
"""
|> Absinthe.run(AshGraphql.Test.Schema,
variables: %{
"id" => post.id
2021-09-12 17:02:08 +12:00
}
)
assert {:ok, result} = resp
assert %{errors: [%{message: "could not be found"}]} = result
end
end