ash/test/resource/actions/destroy_test.exs
2019-12-22 03:17:29 -05:00

76 lines
1.7 KiB
Elixir

defmodule Ash.Test.Dsl.Resource.Actions.DestroyTest do
use ExUnit.Case, async: true
defmacrop defposts(do: body) do
quote do
defmodule Post do
use Ash.Resource, name: "posts", type: "post", primary_key: false
unquote(body)
end
end
end
describe "representation" do
test "it creates an action" do
defposts do
actions do
destroy :default
end
end
assert [
%Ash.Resource.Actions.Destroy{
name: :default,
primary?: true,
authorization_steps: [],
type: :destroy
}
] = Ash.actions(Post)
end
end
describe "validation" do
test "it fails if `name` is not an atom" do
assert_raise(
Ash.Error.ResourceDslError,
"action name must be an atom at actions -> destroy",
fn ->
defposts do
actions do
destroy "default"
end
end
end
)
end
test "it fails if `primary?` is not a boolean" do
assert_raise(
Ash.Error.ResourceDslError,
"option primary? at actions -> destroy -> default must be boolean",
fn ->
defposts do
actions do
destroy :default, primary?: 10
end
end
end
)
end
test "it fails if `rules` is not a list" do
assert_raise(
Ash.Error.ResourceDslError,
"option authorization_steps at actions -> destroy -> default must be [any]",
fn ->
defposts do
actions do
destroy :default, authorization_steps: 10
end
end
end
)
end
end
end