ash/test/resource/actions/read_test.exs
2020-10-05 10:40:22 -04:00

68 lines
1.5 KiB
Elixir

defmodule Ash.Test.Dsl.Resource.Actions.ReadTest do
@moduledoc false
use ExUnit.Case, async: true
defmacrop defposts(do: body) do
quote do
defmodule Post do
@moduledoc false
use Ash.Resource,
data_layer: Ash.DataLayer.Ets
attributes do
attribute :id, :uuid, primary_key?: true, default: &Ecto.UUID.generate/0
end
unquote(body)
end
end
end
describe "representation" do
test "it creates an action" do
defposts do
actions do
read :default
end
end
assert [
%Ash.Resource.Actions.Read{
name: :default,
primary?: true,
type: :read
}
] = Ash.Resource.actions(Post)
end
end
describe "validation" do
test "it fails if `name` is not an atom" do
assert_raise(
Ash.Error.Dsl.DslError,
"[Ash.Resource.Dsl.Read]\n actions -> read -> default:\n expected :name to be an atom, got: \"default\"",
fn ->
defposts do
actions do
read "default"
end
end
end
)
end
test "it fails if `primary?` is not a boolean" do
assert_raise(
Ash.Error.Dsl.DslError,
"[Ash.Resource.Dsl.Read]\n actions -> read -> default:\n expected :primary? to be an boolean, got: 10",
fn ->
defposts do
actions do
read :default, primary?: 10
end
end
end
)
end
end
end