ash/test/actions/destroy_test.exs
Zach Daniel 097447bf38 fix: run action changes on destroy
test: test manual actions
fix: pattern match manage_relationship notifications fix
2021-05-09 16:56:44 -04:00

167 lines
3.3 KiB
Elixir

defmodule Ash.Test.Actions.DestroyTest do
@moduledoc false
use ExUnit.Case, async: true
import Ash.Changeset
defmodule Profile do
@moduledoc false
use Ash.Resource, data_layer: Ash.DataLayer.Ets
ets do
private?(true)
end
actions do
read :read
create :create
update :update
destroy :destroy
end
attributes do
uuid_primary_key :id
attribute :bio, :string
end
relationships do
belongs_to :author, Ash.Test.Actions.DestroyTest.Author
end
end
defmodule ManualDestroyAuthor do
@moduledoc false
use Ash.Resource.Change
def change(changeset, _, _) do
Ash.Changeset.after_action(changeset, fn _changeset, data ->
Ash.Test.Actions.DestroyTest.Api.destroy!(data)
{:ok, data}
end)
end
end
defmodule Author do
@moduledoc false
use Ash.Resource, data_layer: Ash.DataLayer.Ets, authorizers: [Ash.Test.Authorizer]
ets do
private?(true)
end
actions do
read :read
create :create
update :update
destroy :destroy do
primary? true
end
destroy :manual do
accept []
manual? true
change ManualDestroyAuthor
end
end
attributes do
uuid_primary_key :id
attribute :name, :string
end
relationships do
has_one :profile, Profile, destination_field: :author_id
has_many :posts, Ash.Test.Actions.DestroyTest.Post, destination_field: :author_id
end
end
defmodule PostDefaults do
@moduledoc false
def garbage2, do: "garbage2"
def garbage3, do: "garbage3"
end
defmodule Post do
@moduledoc false
use Ash.Resource, data_layer: Ash.DataLayer.Ets
ets do
private?(true)
end
actions do
read :read
create :create
update :update
destroy :destroy
end
attributes do
uuid_primary_key :id
attribute :title, :string
attribute :contents, :string
attribute :tag, :string, default: "garbage"
attribute :tag2, :string, default: &PostDefaults.garbage2/0
attribute :tag3, :string, default: {PostDefaults, :garbage3, []}
end
relationships do
belongs_to :author, Author
end
end
defmodule Api do
@moduledoc false
use Ash.Api
resources do
resource(Author)
resource(Post)
resource(Profile)
end
end
describe "simple destroy" do
test "allows destroying a record" do
post =
Post
|> new(%{title: "foo", contents: "bar"})
|> Api.create!()
assert Api.destroy!(post) == :ok
refute Api.get!(Post, post.id)
end
test "the destroy does not happen if it is unauthorized" do
author =
Author
|> new(%{name: "foobar"})
|> Api.create!()
start_supervised({Ash.Test.Authorizer, strict_check: :continue, check: :forbidden})
assert_raise(Ash.Error.Forbidden, fn ->
Api.destroy!(author, authorize?: true)
end)
assert Api.get!(Author, author.id)
end
end
describe "manual destroy" do
test "allows destroying a record" do
author =
Author
|> new(%{name: "foo"})
|> Api.create!()
assert Api.destroy!(author, action: :manual) == :ok
refute Api.get!(Author, author.id)
end
end
end