ash/test/resource/relationships/has_many_test.exs

134 lines
3.9 KiB
Elixir
Raw Normal View History

defmodule Ash.Test.Resource.Relationships.HasManyTest do
2020-06-02 17:47:25 +12:00
@moduledoc false
2019-12-06 20:00:26 +13:00
use ExUnit.Case, async: true
alias Ash.Resource.Relationships.HasMany
2019-12-06 20:00:26 +13:00
defmacrop defposts(do: body) do
quote do
defmodule Post do
2020-06-02 17:47:25 +12:00
@moduledoc false
2021-01-13 09:05:56 +13:00
use Ash.Resource, data_layer: Ash.DataLayer.Ets
2019-12-06 20:00:26 +13:00
attributes do
uuid_primary_key :id
end
2019-12-06 20:00:26 +13:00
unquote(body)
end
end
end
describe "representation" do
test "it creates a relationship" do
defposts do
relationships do
has_many :foo, Foo
has_many :bar, Bar, destination_attribute: :bazz, private?: true
2019-12-06 20:00:26 +13:00
end
end
assert [
%HasMany{
2019-12-06 20:00:26 +13:00
cardinality: :many,
destination: Foo,
destination_attribute: :post_id,
name: :foo,
source_attribute: :id,
type: :has_many,
private?: false
},
%HasMany{
cardinality: :many,
destination: Bar,
destination_attribute: :bazz,
name: :bar,
source_attribute: :id,
type: :has_many,
private?: true
2019-12-06 20:00:26 +13:00
}
] = Ash.Resource.Info.relationships(Post)
assert [%HasMany{name: :foo}] = Ash.Resource.Info.public_relationships(Post)
assert %HasMany{name: :foo} = Ash.Resource.Info.public_relationship(Post, :foo)
assert nil == Ash.Resource.Info.relationship(Post, :definitely_legit_relationship)
assert nil == Ash.Resource.Info.public_relationship(Post, :bar)
2019-12-06 20:00:26 +13:00
end
end
describe "validations" do
test "fails if destination_attribute is not an atom" do
2019-12-06 20:00:26 +13:00
assert_raise(
Spark.Error.DslError,
"[Ash.Test.Resource.Relationships.HasManyTest.Post]\n relationships -> has_many -> foobar:\n expected :destination_attribute to be an atom, got: \"foo\"",
2019-12-06 20:00:26 +13:00
fn ->
defposts do
relationships do
has_many :foobar, FooBar, destination_attribute: "foo"
2019-12-06 20:00:26 +13:00
end
end
end
)
end
test "fails if source_attribute is not an atom" do
2019-12-06 20:00:26 +13:00
assert_raise(
Spark.Error.DslError,
"[Ash.Test.Resource.Relationships.HasManyTest.Post]\n relationships -> has_many -> foobar:\n expected :source_attribute to be an atom, got: \"foo\"",
2019-12-06 20:00:26 +13:00
fn ->
defposts do
relationships do
has_many :foobar, FooBar, source_attribute: "foo", destination_attribute: :post_id
2019-12-06 20:00:26 +13:00
end
end
end
)
end
test "fails if the destination is not an atom" do
assert_raise(
Spark.Error.DslError,
"[Ash.Test.Resource.Relationships.HasManyTest.Post]\n relationships -> has_many -> foobar:\n expected :destination to be an atom, got: \"foobar\"",
2019-12-06 20:00:26 +13:00
fn ->
defposts do
relationships do
has_many :foobar, "foobar"
end
end
end
)
end
test "fails if the relationship name is not an atom" do
assert_raise(
Spark.Error.DslError,
"[Ash.Test.Resource.Relationships.HasManyTest.Post]\n relationships -> has_many -> foobar:\n expected :name to be an atom, got: \"foobar\"",
2019-12-06 20:00:26 +13:00
fn ->
defposts do
relationships do
has_many "foobar", Foobar
end
end
end
)
end
test "fails if private? is not an boolean" do
assert_raise(
Spark.Error.DslError,
"[Ash.Test.Resource.Relationships.HasManyTest.Post]\n relationships -> has_many -> foobar:\n expected :private? to be a boolean, got: \"foo\"",
fn ->
defposts do
relationships do
has_many :foobar, FooBar, private?: "foo", destination_attribute: :post_id
end
end
end
)
end
2019-12-06 20:00:26 +13:00
end
end