ash/test/resource/relationships/belongs_to_test.exs

226 lines
6.2 KiB
Elixir
Raw Normal View History

2019-12-07 09:54:30 +13:00
defmodule Ash.Test.Resource.Relationships.BelongsToTest 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.BelongsTo
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 an attribute" do
defposts do
relationships do
2020-07-16 09:06:27 +12:00
belongs_to(:foobar, FooBar)
2019-12-06 20:00:26 +13:00
end
end
assert [
%Ash.Resource.Attribute{
2019-12-06 20:00:26 +13:00
name: :foobar_id,
primary_key?: false,
type: Ash.Type.UUID,
private?: true
},
_
] = Ash.Resource.Info.attributes(Post)
end
test "it creates an attribute that honors private?" do
defposts do
relationships do
belongs_to(:foobar, FooBar, private?: true)
end
end
assert [
%Ash.Resource.Attribute{
name: :foobar_id,
primary_key?: false,
type: Ash.Type.UUID,
private?: true
},
_
] = Ash.Resource.Info.attributes(Post)
2019-12-06 20:00:26 +13:00
end
test "it creates a relationship" do
defposts do
relationships do
belongs_to(:foo, Foo)
belongs_to(:bar, Bar, source_field: :bazz, private?: true)
2019-12-06 20:00:26 +13:00
end
end
assert [
%BelongsTo{
2019-12-06 20:00:26 +13:00
cardinality: :one,
define_field?: true,
destination: Foo,
2019-12-06 20:00:26 +13:00
destination_field: :id,
field_type: :uuid,
name: :foo,
2019-12-06 20:00:26 +13:00
primary_key?: false,
source_field: :foo_id,
type: :belongs_to,
private?: false
},
%BelongsTo{
cardinality: :one,
define_field?: true,
destination: Bar,
destination_field: :id,
field_type: :uuid,
name: :bar,
primary_key?: false,
source_field: :bazz,
type: :belongs_to,
private?: true
2019-12-06 20:00:26 +13:00
}
] = Ash.Resource.Info.relationships(Post)
assert [%BelongsTo{name: :foo}] = Ash.Resource.Info.public_relationships(Post)
assert %BelongsTo{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_field is not an atom" 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.BelongsTo]\n relationships -> belongs_to -> foobar:\n expected :destination_field to be an atom, got: \"foo\"",
2019-12-06 20:00:26 +13:00
fn ->
defposts do
relationships do
2020-07-16 09:06:27 +12:00
belongs_to(:foobar, FooBar, destination_field: "foo")
2019-12-06 20:00:26 +13:00
end
end
end
)
end
test "fails if source_field is not an atom" 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.BelongsTo]\n relationships -> belongs_to -> foobar:\n expected :source_field to be an atom, got: \"foo\"",
2019-12-06 20:00:26 +13:00
fn ->
defposts do
relationships do
2020-07-16 09:06:27 +12:00
belongs_to(:foobar, FooBar, source_field: "foo")
2019-12-06 20:00:26 +13:00
end
end
end
)
end
test "fails if the destination is not an atom" 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.BelongsTo]\n relationships -> belongs_to -> foobar:\n expected :destination to be an atom, got: \"foobar\"",
2019-12-06 20:00:26 +13:00
fn ->
defposts do
relationships do
2020-07-16 09:06:27 +12:00
belongs_to(:foobar, "foobar")
2019-12-06 20:00:26 +13:00
end
end
end
)
end
test "fails if the relationship name is not an atom" 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.BelongsTo]\n relationships -> belongs_to -> foobar:\n expected :name to be an atom, got: \"foobar\"",
2019-12-06 20:00:26 +13:00
fn ->
defposts do
relationships do
2020-07-16 09:06:27 +12:00
belongs_to("foobar", Foobar)
2019-12-06 20:00:26 +13:00
end
end
end
)
end
test "fails if `primary_key?` is not a boolean" do
assert_raise(
2020-07-16 09:06:27 +12:00
Ash.Error.Dsl.DslError,
2020-12-01 18:51:24 +13:00
"[Ash.Resource.Dsl.BelongsTo]\n relationships -> belongs_to -> foobar:\n expected :primary_key? to be a boolean, got: \"blah\"",
2019-12-06 20:00:26 +13:00
fn ->
defposts do
relationships do
2020-07-16 09:06:27 +12:00
belongs_to(:foobar, Foobar, primary_key?: "blah")
2019-12-06 20:00:26 +13:00
end
end
end
)
end
test "fails if `private?` is not a boolean" do
assert_raise(
Ash.Error.Dsl.DslError,
2020-12-01 18:51:24 +13:00
"[Ash.Resource.Dsl.BelongsTo]\n relationships -> belongs_to -> foobar:\n expected :private? to be a boolean, got: \"blah\"",
fn ->
defposts do
relationships do
belongs_to(:foobar, Foobar, private?: "blah")
end
end
end
)
end
2019-12-06 20:00:26 +13:00
end
test "fails if `define_field?` is not a boolean" do
assert_raise(
2020-07-16 09:06:27 +12:00
Ash.Error.Dsl.DslError,
2020-12-01 18:51:24 +13:00
"[Ash.Resource.Dsl.BelongsTo]\n relationships -> belongs_to -> foobar:\n expected :define_field? to be a boolean, got: \"blah\"",
2019-12-06 20:00:26 +13:00
fn ->
defposts do
relationships do
2020-07-16 09:06:27 +12:00
belongs_to(:foobar, Foobar, define_field?: "blah")
2019-12-06 20:00:26 +13:00
end
end
end
)
end
2020-07-12 18:25:53 +12:00
test "fails in api initialization if the destination resource doesn't have the correct field" do
2020-07-09 16:20:32 +12:00
assert_raise(
2020-07-16 09:06:27 +12:00
Ash.Error.Dsl.DslError,
2020-07-09 16:20:32 +12:00
~r/Relationship `post` expects source field `post_id` to be defined/,
fn ->
defposts do
relationships do
2020-07-16 09:06:27 +12:00
belongs_to(:post, __MODULE__, define_field?: false)
2020-07-09 16:20:32 +12:00
end
end
2020-07-12 18:25:53 +12:00
defmodule Api do
use Ash.Api
resources do
2020-07-16 09:06:27 +12:00
resource(Post)
2020-07-12 18:25:53 +12:00
end
end
2020-07-09 16:20:32 +12:00
end
)
end
2019-12-06 20:00:26 +13:00
end