ash/test/actions/destroy_test.exs

133 lines
2.6 KiB
Elixir
Raw Normal View History

defmodule Ash.Test.Actions.DestroyTest do
2020-06-02 17:47:25 +12:00
@moduledoc false
use ExUnit.Case, async: true
defmodule Profile do
2020-06-02 17:47:25 +12:00
@moduledoc false
use Ash.Resource, data_layer: Ash.DataLayer.Ets
ets do
private?(true)
end
actions do
read :default
create :default
update :default
destroy :default
end
attributes do
uuid_primary_key :id
attribute :bio, :string
end
relationships do
belongs_to :author, Ash.Test.Actions.DestroyTest.Author
end
end
defmodule Author do
2020-06-02 17:47:25 +12:00
@moduledoc false
use Ash.Resource, data_layer: Ash.DataLayer.Ets, authorizers: [Ash.Test.Authorizer]
ets do
private?(true)
end
actions do
read :default
create :default
update :default
destroy :default
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
2020-06-02 17:47:25 +12:00
@moduledoc false
def garbage2, do: "garbage2"
def garbage3, do: "garbage3"
end
defmodule Post do
2020-06-02 17:47:25 +12:00
@moduledoc false
use Ash.Resource, data_layer: Ash.DataLayer.Ets
ets do
private?(true)
end
actions do
read :default
create :default
update :default
destroy :default
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
2020-06-02 17:47:25 +12:00
@moduledoc false
use Ash.Api
resources do
resource(Author)
resource(Post)
resource(Profile)
end
end
2020-07-12 18:25:53 +12:00
import Ash.Changeset
describe "simple destroy" do
test "allows destroying a record" do
2020-07-12 18:25:53 +12:00
post =
Post
|> new(%{title: "foo", contents: "bar"})
2020-07-12 18:25:53 +12:00
|> Api.create!()
2020-04-20 15:15:52 +12:00
assert Api.destroy!(post) == :ok
refute Api.get!(Post, post.id)
end
test "the destroy does not happen if it is unauthorized" do
2020-07-12 18:25:53 +12:00
author =
Author
|> new(%{name: "foobar"})
2020-07-12 18:25:53 +12:00
|> 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
end