ash/test/actions/read_test.exs

557 lines
17 KiB
Elixir
Raw Normal View History

2019-12-02 17:04:16 +13:00
defmodule Ash.Test.Actions.ReadTest do
2020-06-02 17:47:25 +12:00
@moduledoc false
use ExUnit.Case, async: true
import Ash.Changeset
2022-06-22 13:00:47 +12:00
import Ash.Test
2020-10-08 18:22:55 +13:00
require Ash.Query
2022-09-21 11:44:04 +12:00
alias Ash.Test.AnyApi, as: Api
defmodule PostPreparation do
@moduledoc false
use Ash.Resource.Preparation
def prepare(query, _, _) do
Ash.Query.after_action(query, fn _query, authors ->
{:ok, Enum.map(authors, &Ash.Resource.set_metadata(&1, %{prepared?: true}))}
end)
end
end
2019-12-12 11:45:59 +13:00
defmodule Author do
2020-06-02 17:47:25 +12:00
@moduledoc false
use Ash.Resource, data_layer: Ash.DataLayer.Ets
ets do
private?(true)
end
2019-12-12 11:45:59 +13:00
actions do
defaults [:read, :create, :update, :destroy]
end
2019-12-12 11:45:59 +13:00
attributes do
uuid_primary_key :id
2019-12-12 11:45:59 +13:00
attribute :name, :string
end
relationships do
has_many :posts, Ash.Test.Actions.ReadTest.Post, destination_attribute: :author1_id
2019-12-12 11:45:59 +13:00
end
end
2019-12-02 17:04:16 +13:00
defmodule Post do
2020-06-02 17:47:25 +12:00
@moduledoc false
use Ash.Resource, data_layer: Ash.DataLayer.Ets
feat: freeform expressions feat: validatiosn in actions feat: query arguments feat: add `Ash.Query.for_read/3` feat: return changeset with API errors feat: add case insensitive string `CiString`/`:ci_string` feat: support `context/1` and `arg/1` in filter templates feat: support targeting notifications with the `for` option feat: add `ago/2` query function feat: add basic arithmetic operators (+, *, -, /) feat: `sensitive?` option for attributes feat: `sensitive?` option for arguments feat: `private` arguments, which can’t be set using `for_<action>` feat: add `prevent_change` which will erase changes just before the changeset is committed feat: add `match?` validation that supports a custom error message feat: add `interval` type to support `ago/2` function feat: add `url_encoded_binary` type feat: add `function` type improvement: `changing?` is now a validation improvement: add `Transformer.get_persisted/3` improvement: add `api` field to `Notification` improvement: standardize errors, add `to_error_class` improvement: use `Comp` everywhere Improvement: use action on changeset if set by `for_<action_type>` improvement: `action_failed?` field on change sets improvement: remove ability for data layers to add operators (for now at least) Improvement: Changeset.apply_attributes/2 now returns an error tuple Improvement: add a bunch of new/informative errors improvement: runtime filter now uses left join logic (a naive implementation of it) improvement: support more filter templates in resources Improvement: basic/naive type system for operators/functions Fix: properly expand module aliases for options w/o compile time dependency chore(engine): track changeset changes for the request with `manage_changeset?: true`
2021-01-22 09:21:58 +13:00
identities do
2022-09-21 11:44:04 +12:00
identity :backup_id, [:uuid], pre_check_with: Api
end
ets do
private? true
end
2019-12-02 17:04:16 +13:00
actions do
defaults [:read, :create, :update, :destroy]
read :read_with_after_action do
prepare PostPreparation
end
2019-12-02 17:04:16 +13:00
end
attributes do
uuid_primary_key :id
2021-02-24 06:27:49 +13:00
attribute :uuid, :uuid, default: &Ash.UUID.generate/0
2019-12-02 17:04:16 +13:00
attribute :title, :string
attribute :contents, :string
end
2019-12-12 11:45:59 +13:00
relationships do
belongs_to :author1, Ash.Test.Actions.ReadTest.Author
belongs_to :author2, Ash.Test.Actions.ReadTest.Author
end
2019-12-02 17:04:16 +13:00
end
describe "api.get/3" do
setup do
2020-07-12 18:25:53 +12:00
post =
Post
|> new(%{title: "test", contents: "yeet"})
2020-07-12 18:25:53 +12:00
|> Api.create!()
2022-06-22 13:00:47 +12:00
|> strip_metadata()
2020-07-12 18:25:53 +12:00
%{post: post}
end
test "it returns a matching record", %{post: post} do
2019-12-02 17:04:16 +13:00
assert {:ok, fetched_post} = Api.get(Post, post.id)
2022-06-22 13:00:47 +12:00
assert strip_metadata(fetched_post) == post
end
2021-09-09 18:18:26 +12:00
test "it returns an error when there is no matching record" do
assert {:error, %Ash.Error.Invalid{errors: [%Ash.Error.Query.NotFound{}]}} =
Api.get(Post, Ash.UUID.generate())
end
test "it uses identities if they exist", %{post: post} do
assert {:ok, fetched_post} = Api.get(Post, uuid: post.uuid)
2022-06-22 13:00:47 +12:00
assert strip_metadata(fetched_post) == post
end
test "raises an error when the first argument is not a module" do
res = assert_raise Ash.Error.Invalid.NoSuchResource, fn -> Api.get("bogus", 1, []) end
2022-09-21 11:44:04 +12:00
assert res.message =~ ~r/Ash.Test.AnyApi.get\/3/
assert res.message =~ ~r/expected an Ash Resource but instead got "bogus"/
end
test "raises an error when the first argument is a module that is not an ash resource" do
res = assert_raise Ash.Error.Invalid.NoSuchResource, fn -> Api.get(BadModuleName, []) end
2022-09-21 11:44:04 +12:00
assert res.message =~ ~r/Ash.Test.AnyApi.get\/3/
assert res.message =~ ~r/expected an Ash Resource but instead got BadModuleName/
end
test "raises an error when the third argument is not a list" do
res = assert_raise RuntimeError, fn -> Api.get(Post, "id", 1) end
2022-09-21 11:44:04 +12:00
assert res.message =~ ~r/Ash.Test.AnyApi.get\/3/
assert res.message =~ ~r/expected a keyword list, but instead got 1/
end
test "raises an error when the third argument is not a valid keyword list" do
res = assert_raise RuntimeError, fn -> Api.get(Post, "id", [1]) end
2022-09-21 11:44:04 +12:00
assert res.message =~ ~r/Ash.Test.AnyApi.get\/3/
assert res.message =~ ~r/expected a keyword list, but instead got \[1\]/
end
end
2019-12-08 10:33:31 +13:00
describe "api.get!/3" do
setup do
2020-07-12 18:25:53 +12:00
post =
Post
|> new(%{title: "test", contents: "yeet"})
2020-07-12 18:25:53 +12:00
|> Api.create!()
2022-06-22 13:00:47 +12:00
|> strip_metadata()
2020-07-12 18:25:53 +12:00
2019-12-08 10:33:31 +13:00
%{post: post}
end
test "it returns a matching record", %{post: post} do
2022-06-22 13:00:47 +12:00
assert ^post = strip_metadata(Api.get!(Post, post.id))
2019-12-08 10:33:31 +13:00
end
test "it gives an invalid primary key error when invalid input is provided" do
assert_raise Ash.Error.Invalid, ~r/invalid primary key "not good"/, fn ->
Api.get!(Post, "not good")
end
end
test "it raises when there is no matching record" do
res =
assert_raise Ash.Error.Invalid, fn ->
Api.get!(Post, Ash.UUID.generate())
end
assert [%Ash.Error.Query.NotFound{}] = res.errors
end
test "raises an error when the first argument is not a module", %{post: post} do
res = assert_raise Ash.Error.Invalid.NoSuchResource, fn -> Api.get("bogus", post.id, []) end
2022-09-21 11:44:04 +12:00
assert res.message =~ ~r/Ash.Test.AnyApi.get\/3/
assert res.message =~ ~r/expected an Ash Resource but instead got "bogus"/
end
test "raises an error when the first argument is a module that is not an ash resource", %{
post: post
} do
res =
assert_raise Ash.Error.Invalid.NoSuchResource, fn ->
Api.get(BadModuleName, post.id, [])
end
2022-09-21 11:44:04 +12:00
assert res.message =~ ~r/Ash.Test.AnyApi.get\/3/
assert res.message =~ ~r/expected an Ash Resource but instead got BadModuleName/
end
test "raises an error when the third argument is not a list", %{post: post} do
res = assert_raise RuntimeError, fn -> Api.get(Post, post.id, 1) end
2022-09-21 11:44:04 +12:00
assert res.message =~ ~r/Ash.Test.AnyApi.get\/3/
assert res.message =~ ~r/expected a keyword list, but instead got 1/
end
test "raises an error when the third argument is not a valid keyword list", %{post: post} do
res = assert_raise RuntimeError, fn -> Api.get(Post, post.id, [1]) end
2022-09-21 11:44:04 +12:00
assert res.message =~ ~r/Ash.Test.AnyApi.get\/3/
assert res.message =~ ~r/expected a keyword list, but instead got \[1\]/
2019-12-08 10:33:31 +13:00
end
end
describe "Api.read/2 with no records" do
test "returns an empty result" do
assert {:ok, []} = Api.read(Post)
end
test "raises an error when the first argument is not a module" do
res = assert_raise RuntimeError, fn -> Api.read("bogus", []) end
2022-09-21 11:44:04 +12:00
assert res.message =~ ~r/Ash.Test.AnyApi.read\/2/
assert res.message =~
~r/expected an %Ash.Query{} or an Ash Resource but instead got "bogus"/
end
test "raises an error when the first argument is a module that is not an ash resource" do
res = assert_raise RuntimeError, fn -> Api.read(BadModuleName, []) end
2022-09-21 11:44:04 +12:00
assert res.message =~ ~r/Ash.Test.AnyApi.read\/2/
assert res.message =~
~r/expected an %Ash.Query{} or an Ash Resource but instead got BadModuleName/
end
test "raises an error when the second argument is not a list" do
res = assert_raise RuntimeError, fn -> Api.read(Post, 1) end
2022-09-21 11:44:04 +12:00
assert res.message =~ ~r/Ash.Test.AnyApi.read\/2/
assert res.message =~ ~r/expected a keyword list, but instead got 1/
end
test "raises an error when the second argument is not a valid keyword list" do
res = assert_raise RuntimeError, fn -> Api.read(Post, [1]) end
2022-09-21 11:44:04 +12:00
assert res.message =~ ~r/Ash.Test.AnyApi.read\/2/
assert res.message =~ ~r/expected a keyword list, but instead got \[1\]/
end
end
describe "Api.read!/2 with no records" do
2019-12-08 10:33:31 +13:00
test "returns an empty result" do
assert [] = Api.read!(Post)
2019-12-08 10:33:31 +13:00
end
test "raises an error when the first argument is not a module" do
res = assert_raise RuntimeError, fn -> Api.read!("bogus", []) end
2022-09-21 11:44:04 +12:00
assert res.message =~ ~r/Ash.Test.AnyApi.read!\/2/
assert res.message =~
~r/expected an %Ash.Query{} or an Ash Resource but instead got "bogus"/
end
test "raises an error when the first argument is a module that is not an ash resource" do
res = assert_raise RuntimeError, fn -> Api.read!(BadModuleName, []) end
2022-09-21 11:44:04 +12:00
assert res.message =~ ~r/Ash.Test.AnyApi.read!\/2/
assert res.message =~
~r/expected an %Ash.Query{} or an Ash Resource but instead got BadModuleName/
end
test "raises an error when the second argument is not a list" do
res = assert_raise RuntimeError, fn -> Api.read!(Post, 1) end
2022-09-21 11:44:04 +12:00
assert res.message =~ ~r/Ash.Test.AnyApi.read!\/2/
assert res.message =~ ~r/expected a keyword list, but instead got 1/
end
test "raises an error when the second argument is not a valid keyword list" do
res = assert_raise RuntimeError, fn -> Api.read!(Post, [1]) end
2022-09-21 11:44:04 +12:00
assert res.message =~ ~r/Ash.Test.AnyApi.read!\/2/
assert res.message =~ ~r/expected a keyword list, but instead got \[1\]/
end
test "raises an error when page is sent but pagination is not enabled on a resource" do
res =
assert_raise Ash.Error.Invalid, fn ->
2023-02-14 17:38:02 +13:00
Api.read!(Post, page: [])
end
assert %Ash.Error.Invalid.PageRequiresPagination{resource: Post, action: _} = hd(res.errors)
end
2019-12-08 10:33:31 +13:00
end
describe "Api.read/2" do
setup do
2020-07-12 18:25:53 +12:00
post1 =
Post
|> new(%{title: "test", contents: "yeet"})
2020-07-12 18:25:53 +12:00
|> Api.create!()
post2 =
Post
|> new(%{title: "test1", contents: "yeet2"})
2020-07-12 18:25:53 +12:00
|> Api.create!()
%{post1: post1, post2: post2}
end
test "with a limit of 1, returns only 1 record" do
assert {:ok, [_post]} =
Post
|> Ash.Query.limit(1)
|> Api.read()
end
test "after action hooks are run" do
assert [%{__metadata__: %{prepared?: true}}, %{__metadata__: %{prepared?: true}}] =
Api.read!(Post, action: :read_with_after_action)
end
test "with a limit size of 2, returns 2 records" do
assert {:ok, [_, _]} =
Post
|> Ash.Query.limit(2)
|> Api.read()
end
test "with a limit of 1 and an offset of 1, it returns 1 record" do
assert {:ok, [_]} =
Post
|> Ash.Query.limit(1)
|> Ash.Query.offset(1)
|> Api.read()
end
end
2019-11-29 19:54:11 +13:00
describe "Api.read!/2" do
2019-12-08 10:33:31 +13:00
setup do
2020-07-12 18:25:53 +12:00
post1 =
Post
|> new(%{title: "test", contents: "yeet"})
2020-07-12 18:25:53 +12:00
|> Api.create!()
post2 =
Post
|> new(%{title: "test1", contents: "yeet2"})
2020-07-12 18:25:53 +12:00
|> Api.create!()
2019-12-08 10:33:31 +13:00
%{post1: post1, post2: post2}
end
test "it returns the records not in a tuple" do
assert [_, _] = Api.read!(Post)
2019-12-08 10:33:31 +13:00
end
end
describe "Api.read_one/2" do
test "raises an error when the first argument is not a module" do
res = assert_raise RuntimeError, fn -> Api.read_one("bogus", []) end
2022-09-21 11:44:04 +12:00
assert res.message =~ ~r/Ash.Test.AnyApi.read_one\/2/
assert res.message =~
~r/expected an %Ash.Query{} or an Ash Resource but instead got "bogus"/
end
test "raises an error when the first argument is a module that is not an ash resource" do
res = assert_raise RuntimeError, fn -> Api.read_one(BadModuleName, []) end
2022-09-21 11:44:04 +12:00
assert res.message =~ ~r/Ash.Test.AnyApi.read_one\/2/
assert res.message =~
~r/expected an %Ash.Query{} or an Ash Resource but instead got BadModuleName/
end
test "raises an error when the second argument is not a list" do
res = assert_raise RuntimeError, fn -> Api.read_one(Post, 1) end
2022-09-21 11:44:04 +12:00
assert res.message =~ ~r/Ash.Test.AnyApi.read_one\/2/
assert res.message =~ ~r/expected a keyword list, but instead got 1/
end
test "raises an error when the second argument is not a valid keyword list" do
res = assert_raise RuntimeError, fn -> Api.read_one(Post, [1]) end
2022-09-21 11:44:04 +12:00
assert res.message =~ ~r/Ash.Test.AnyApi.read_one\/2/
assert res.message =~ ~r/expected a keyword list, but instead got \[1\]/
end
end
describe "Api.read_one!/2" do
test "raises an error when the first argument is not a module" do
res = assert_raise RuntimeError, fn -> Api.read_one!("bogus", []) end
2022-09-21 11:44:04 +12:00
assert res.message =~ ~r/Ash.Test.AnyApi.read_one!\/2/
assert res.message =~
~r/expected an %Ash.Query{} or an Ash Resource but instead got "bogus"/
end
test "raises an error when the first argument is a module that is not an ash resource" do
res = assert_raise RuntimeError, fn -> Api.read_one!(BadModuleName, []) end
2022-09-21 11:44:04 +12:00
assert res.message =~ ~r/Ash.Test.AnyApi.read_one!\/2/
assert res.message =~
~r/expected an %Ash.Query{} or an Ash Resource but instead got BadModuleName/
end
test "raises an error when the second argument is not a list" do
res = assert_raise RuntimeError, fn -> Api.read_one!(Post, 1) end
2022-09-21 11:44:04 +12:00
assert res.message =~ ~r/Ash.Test.AnyApi.read_one!\/2/
assert res.message =~ ~r/expected a keyword list, but instead got 1/
end
test "raises an error when the second argument is not a valid keyword list" do
res = assert_raise RuntimeError, fn -> Api.read_one!(Post, [1]) end
2022-09-21 11:44:04 +12:00
assert res.message =~ ~r/Ash.Test.AnyApi.read_one!\/2/
assert res.message =~ ~r/expected a keyword list, but instead got \[1\]/
end
end
2019-11-29 19:54:11 +13:00
describe "filters" do
setup do
2020-07-12 18:25:53 +12:00
post1 =
Post
|> new(%{title: "test", contents: "yeet"})
2020-07-12 18:25:53 +12:00
|> Api.create!()
2022-06-22 13:00:47 +12:00
|> strip_metadata()
2020-07-12 18:25:53 +12:00
post2 =
Post
|> new(%{title: "test1", contents: "yeet"})
2020-07-12 18:25:53 +12:00
|> Api.create!()
2022-06-22 13:00:47 +12:00
|> strip_metadata()
2019-11-29 19:54:11 +13:00
%{post1: post1, post2: post2}
end
test "a filter that matches nothing returns no results" do
assert {:ok, []} =
Post
2020-10-08 18:22:55 +13:00
|> Ash.Query.filter(contents == "not_yeet")
|> Api.read()
2019-11-29 19:54:11 +13:00
end
test "a filter returns only matching records", %{post1: post1} do
assert {:ok, [^post1]} =
Post
2020-10-08 18:22:55 +13:00
|> Ash.Query.filter(title == ^post1.title)
|> Api.read()
2022-06-22 13:00:47 +12:00
|> strip_metadata()
2019-11-29 19:54:11 +13:00
end
test "a filter returns multiple records if they match", %{post1: post1, post2: post2} do
assert {:ok, [_, _] = results} =
Post
2020-10-08 18:22:55 +13:00
|> Ash.Query.filter(contents == "yeet")
|> Api.read()
2022-06-22 13:00:47 +12:00
|> strip_metadata()
2019-11-29 19:54:11 +13:00
assert post1 in results
assert post2 in results
end
end
2019-11-30 08:40:19 +13:00
describe "select" do
test "it automatically selects all fields" do
author =
Author
|> new(%{name: "bruh"})
|> Api.create!()
assert author.name
assert author.id
end
test "you can deselect a field" do
Author
|> new(%{name: "bruh"})
|> Api.create!()
assert [%{name: "bruh"}] = Api.read!(Author)
assert [%{name: nil}] = Api.read!(Ash.Query.deselect(Author, :name))
end
test "you can select fields, but the primary key is always present" do
Author
|> new(%{name: "bruh"})
|> Api.create!()
assert [%{name: "bruh", id: id}] = Api.read!(Ash.Query.select(Author, :name))
assert id
end
end
2019-12-12 11:45:59 +13:00
describe "relationship filters" do
setup do
2020-07-12 18:25:53 +12:00
author1 =
Author
|> new(%{name: "bruh"})
2020-07-12 18:25:53 +12:00
|> Api.create!()
author2 =
Author
|> new(%{name: "bruh"})
2020-07-12 18:25:53 +12:00
|> Api.create!()
post =
Post
|> new(%{title: "test", contents: "yeet"})
|> manage_relationship(:author1, author1, type: :append_and_remove)
|> manage_relationship(:author2, author2, type: :append_and_remove)
2020-07-12 18:25:53 +12:00
|> Api.create!()
2019-12-12 11:45:59 +13:00
%{post: post, author1: author1, author2: author2}
end
test "you can filter on a related value", %{author1: author1} do
assert [_] =
Post
|> Ash.Query.filter(author1: author1.id)
|> Api.read!()
2019-12-12 11:45:59 +13:00
end
test "you can filter on multiple related values", %{author1: author1, author2: author2} do
assert [_] =
Post
|> Ash.Query.filter(author1: author1.id, author2: author2.id)
|> Api.read!()
2019-12-12 11:45:59 +13:00
end
end
2019-11-30 08:40:19 +13:00
describe "sort" do
setup do
2020-07-12 18:25:53 +12:00
post1 =
Post
|> new(%{title: "abc", contents: "abc"})
2020-07-12 18:25:53 +12:00
|> Api.create!()
2022-06-22 13:00:47 +12:00
|> strip_metadata()
2020-07-12 18:25:53 +12:00
post2 =
Post
|> new(%{title: "xyz", contents: "abc"})
2020-07-12 18:25:53 +12:00
|> Api.create!()
2022-06-22 13:00:47 +12:00
|> strip_metadata()
2019-11-30 08:40:19 +13:00
%{post1: post1, post2: post2}
end
test "a sort will sort the rows accordingly when ascending", %{
post1: post1,
post2: post2
} do
assert {:ok, [^post1, ^post2]} =
Post
|> Ash.Query.sort(title: :asc)
|> Api.read()
2022-06-22 13:00:47 +12:00
|> strip_metadata()
2019-11-30 08:40:19 +13:00
end
test "a sort will sor rows accordingly when descending", %{
post1: post1,
post2: post2
} do
assert {:ok, [^post2, ^post1]} =
Post
|> Ash.Query.sort(title: :desc)
|> Api.read()
2022-06-22 13:00:47 +12:00
|> strip_metadata()
2019-11-30 08:40:19 +13:00
end
test "a nested sort sorts accordingly", %{post1: post1, post2: post2} do
2020-07-12 18:25:53 +12:00
middle_post =
Post
|> new(%{title: "abc", contents: "xyz"})
2020-07-12 18:25:53 +12:00
|> Api.create!()
2022-06-22 13:00:47 +12:00
|> strip_metadata()
2019-11-30 08:40:19 +13:00
assert {:ok, [^post1, ^middle_post, ^post2]} =
Post
|> Ash.Query.sort(title: :asc, contents: :asc)
|> Api.read()
2022-06-22 13:00:47 +12:00
|> strip_metadata()
2019-11-30 08:40:19 +13:00
end
end
end