ash/test/resource/relationships/many_to_many_test.exs

219 lines
7.3 KiB
Elixir
Raw Normal View History

2019-12-07 09:54:30 +13:00
defmodule Ash.Test.Resource.Relationships.ManyToManyTest 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 __MODULE__
alias Ash.Resource.Relationships.HasMany
alias Ash.Resource.Relationships.ManyToMany
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
attribute :id, :uuid, primary_key?: true, default: &Ecto.UUID.generate/0
end
2019-12-06 20:00:26 +13:00
unquote(body)
end
end
end
describe "representation" do
2020-04-20 15:15:52 +12:00
test "it creates a relationship and a join relationship" do
2019-12-06 20:00:26 +13:00
defposts do
relationships do
many_to_many :related_posts, Post,
through: SomeResource,
source_field_on_join_table: :post_id,
destination_field_on_join_table: :related_post_id
many_to_many :unrelated_posts, Post,
through: Tabloid,
source_field_on_join_table: :post_id,
destination_field_on_join_table: :unrelated_post_id,
private?: true
2019-12-06 20:00:26 +13:00
end
end
assert [
%HasMany{
cardinality: :many,
destination: Tabloid,
destination_field: :post_id,
name: :unrelated_posts_join_assoc,
source: ManyToManyTest.Post,
source_field: :id,
type: :has_many,
private?: true
},
%HasMany{
2020-04-20 15:15:52 +12:00
cardinality: :many,
destination: SomeResource,
destination_field: :post_id,
name: :related_posts_join_assoc,
source: ManyToManyTest.Post,
2020-04-20 15:15:52 +12:00
source_field: :id,
type: :has_many,
private?: true
2020-04-20 15:15:52 +12:00
},
%ManyToMany{
2019-12-06 20:00:26 +13:00
cardinality: :many,
destination: ManyToManyTest.Post,
2019-12-06 20:00:26 +13:00
destination_field: :id,
destination_field_on_join_table: :related_post_id,
name: :related_posts,
source: ManyToManyTest.Post,
2019-12-06 20:00:26 +13:00
source_field: :id,
source_field_on_join_table: :post_id,
2019-12-10 18:08:59 +13:00
through: SomeResource,
type: :many_to_many,
private?: false
},
%ManyToMany{
cardinality: :many,
destination: ManyToManyTest.Post,
destination_field: :id,
destination_field_on_join_table: :unrelated_post_id,
name: :unrelated_posts,
source: ManyToManyTest.Post,
source_field: :id,
source_field_on_join_table: :post_id,
through: Tabloid,
type: :many_to_many,
private?: true
2019-12-06 20:00:26 +13:00
}
] = Ash.Resource.relationships(Post)
assert [%ManyToMany{name: :related_posts}] = Ash.Resource.public_relationships(Post)
assert %ManyToMany{name: :related_posts} =
Ash.Resource.public_relationship(Post, :related_posts)
assert nil == Ash.Resource.relationship(Post, :definitely_legit_relationship)
assert nil == Ash.Resource.public_relationship(Post, :unrelated_posts)
2019-12-06 20:00:26 +13:00
end
end
describe "validation" do
2019-12-10 18:08:59 +13:00
test "it fails if you pass a string to `through`" do
assert_raise(
2020-07-16 09:06:27 +12:00
Ash.Error.Dsl.DslError,
2020-10-06 03:40:22 +13:00
"[Ash.Resource.Dsl.ManyToMany]\n relationships -> many_to_many -> foobars:\n expected :through to be an atom, got: \"some_table\"",
2019-12-10 18:08:59 +13:00
fn ->
defposts do
relationships do
many_to_many :foobars, Foobar,
through: "some_table",
source_field_on_join_table: :source_post_id,
destination_field_on_join_table: :destination_post_id
2019-12-10 18:08:59 +13:00
end
end
2019-12-06 20:00:26 +13:00
end
2019-12-10 18:08:59 +13:00
)
2019-12-06 20:00:26 +13:00
end
test "you can pass a module to `through`" do
defposts do
relationships do
many_to_many :foobars, Foobar,
through: FooBars,
source_field_on_join_table: :source_post_id,
destination_field_on_join_table: :destination_post_id
2019-12-06 20:00:26 +13:00
end
end
end
test "it fails if you dont pass an atom for `source_field_on_join_table`" do
assert_raise(
2020-07-16 09:06:27 +12:00
Ash.Error.Dsl.DslError,
2020-10-06 03:40:22 +13:00
"[Ash.Resource.Dsl.ManyToMany]\n relationships -> many_to_many -> foobars:\n expected :source_field_on_join_table to be an atom, got: \"what\"",
2019-12-06 20:00:26 +13:00
fn ->
defposts do
relationships do
many_to_many :foobars, Foobar,
through: FooBars,
source_field_on_join_table: "what",
destination_field_on_join_table: :destination_post_id
2019-12-06 20:00:26 +13:00
end
end
end
)
end
test "it fails if you dont pass an atom for `destination_field_on_join_table`" do
assert_raise(
2020-07-16 09:06:27 +12:00
Ash.Error.Dsl.DslError,
2020-10-06 03:40:22 +13:00
"[Ash.Resource.Dsl.ManyToMany]\n relationships -> many_to_many -> foobars:\n expected :destination_field_on_join_table to be an atom, got: \"what\"",
2019-12-06 20:00:26 +13:00
fn ->
defposts do
relationships do
many_to_many :foobars, Foobar,
2019-12-10 18:08:59 +13:00
through: FooBar,
destination_field_on_join_table: "what",
source_field_on_join_table: :source_post_id
2019-12-06 20:00:26 +13:00
end
end
end
)
end
test "it fails if you dont pass an atom for `source_field`" do
assert_raise(
2020-07-16 09:06:27 +12:00
Ash.Error.Dsl.DslError,
2020-10-06 03:40:22 +13:00
"[Ash.Resource.Dsl.ManyToMany]\n relationships -> many_to_many -> foobars:\n expected :source_field to be an atom, got: \"what\"",
2019-12-06 20:00:26 +13:00
fn ->
defposts do
relationships do
many_to_many :foobars, Foobar,
2019-12-10 18:08:59 +13:00
through: FooBar,
source_field: "what",
source_field_on_join_table: :source_post_id,
destination_field_on_join_table: :destination_post_id
2019-12-06 20:00:26 +13:00
end
end
end
)
end
test "it fails if you dont pass an atom for `destination_field`" do
assert_raise(
2020-07-16 09:06:27 +12:00
Ash.Error.Dsl.DslError,
2020-10-06 03:40:22 +13:00
"[Ash.Resource.Dsl.ManyToMany]\n relationships -> many_to_many -> foobars:\n expected :destination_field to be an atom, got: \"what\"",
2019-12-06 20:00:26 +13:00
fn ->
defposts do
relationships do
many_to_many :foobars, Foobar,
2019-12-10 18:08:59 +13:00
through: FooBars,
destination_field: "what",
source_field_on_join_table: :source_post_id,
destination_field_on_join_table: :destination_post_id
2019-12-06 20:00:26 +13:00
end
end
end
)
end
test "fails if private? is not an boolean" do
assert_raise(
Ash.Error.Dsl.DslError,
2020-12-01 18:51:24 +13:00
"[Ash.Resource.Dsl.ManyToMany]\n relationships -> many_to_many -> foobars:\n expected :private? to be a boolean, got: \"an_invalid_field\"",
fn ->
defposts do
relationships do
many_to_many :foobars, Foobar,
through: FooBars,
source_field_on_join_table: :source_post_id,
destination_field_on_join_table: :destination_post_id,
private?: "an_invalid_field"
end
end
end
)
end
2019-12-06 20:00:26 +13:00
end
end