ash/test/actions/destroy_test.exs
2020-06-02 01:47:25 -04:00

99 lines
2.2 KiB
Elixir

defmodule Ash.Test.Actions.DestroyTest do
@moduledoc false
use ExUnit.Case, async: true
defmodule Profile do
@moduledoc false
use Ash.Resource, name: "authors", type: "author"
use Ash.DataLayer.Ets, private?: true
actions do
read :default
create :default
update :default
destroy :default
end
attributes do
attribute :id, :uuid, primary_key?: true, default: &Ecto.UUID.generate/0
attribute :bio, :string
end
relationships do
belongs_to :author, Ash.Test.Actions.CreateTest.Author
end
end
defmodule Author do
@moduledoc false
use Ash.Resource, name: "authors", type: "author"
use Ash.DataLayer.Ets, private?: true
actions do
read :default
create :default
update :default
destroy :default
end
attributes do
attribute :id, :uuid, primary_key?: true, default: &Ecto.UUID.generate/0
attribute :name, :string
end
relationships do
has_one :profile, Profile
has_many :posts, Ash.Test.Actions.CreateTest.Post
end
end
defmodule PostDefaults do
@moduledoc false
def garbage2, do: "garbage2"
def garbage3, do: "garbage3"
end
defmodule Post do
@moduledoc false
use Ash.Resource, name: "posts", type: "post"
use Ash.DataLayer.Ets, private?: true
actions do
read :default
create :default
update :default
destroy :default
end
attributes do
attribute :id, :uuid, primary_key?: true, default: &Ecto.UUID.generate/0
attribute :title, :string
attribute :contents, :string
attribute :tag, :string, default: {:constant, "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 [Author, Post, Profile]
end
describe "simple destroy" do
test "allows destroying a record" do
post = Api.create!(Post, attributes: %{title: "foo", contents: "bar"})
assert Api.destroy!(post) == :ok
refute Api.get!(Post, post.id)
end
end
end