defmodule AshPostgres.AggregateTest do use AshPostgres.RepoCase, async: false alias AshPostgres.Test.{Api, Author, Comment, Organization, Post, Rating, User} require Ash.Query test "relates to actor via has_many and with an aggregate" do org = Organization |> Ash.Changeset.new(%{name: "The Org"}) |> Api.create!() post = Post |> Ash.Changeset.for_create(:create, %{title: "title"}) |> Ash.Changeset.manage_relationship(:organization, org, type: :append_and_remove) |> Api.create!() user = User |> Ash.Changeset.for_create(:create, %{}) |> Ash.Changeset.manage_relationship(:organization, org, type: :append_and_remove) |> Api.create!() Comment |> Ash.Changeset.new(%{title: "match"}) |> Ash.Changeset.manage_relationship(:post, post, type: :append_and_remove) |> Api.create!() read_post = Post |> Ash.Query.filter(id == ^post.id) |> Api.read_one!(actor: user) assert read_post.id == post.id read_post = Post |> Ash.Query.filter(id == ^post.id) |> Ash.Query.load(:count_of_comments) |> Api.read_one!(actor: user) assert read_post.count_of_comments == 1 read_post = post |> Api.load!(:count_of_comments, actor: user) assert read_post.count_of_comments == 1 end describe "count" do test "with no related data it returns 0" do post = Post |> Ash.Changeset.new(%{title: "title"}) |> Api.create!() assert %{count_of_comments: 0} = Post |> Ash.Query.filter(id == ^post.id) |> Ash.Query.load(:count_of_comments) |> Api.read_one!() end test "with data and a custom aggregate, it returns the count" do post = Post |> Ash.Changeset.new(%{title: "title"}) |> Api.create!() Comment |> Ash.Changeset.new(%{title: "match"}) |> Ash.Changeset.manage_relationship(:post, post, type: :append_and_remove) |> Api.create!() Comment |> Ash.Changeset.new() |> Ash.Changeset.manage_relationship(:post, post, type: :append_and_remove) |> Api.create!() import Ash.Query assert %{aggregates: %{custom_count_of_comments: 1}} = Post |> Ash.Query.filter(id == ^post.id) |> Ash.Query.aggregate( :custom_count_of_comments, :count, :comments, query: [filter: expr(not is_nil(title))] ) |> Api.read_one!() Comment |> Ash.Changeset.new(%{title: "match"}) |> Ash.Changeset.manage_relationship(:post, post, type: :append_and_remove) |> Api.create!() assert %{aggregates: %{custom_count_of_comments: 2}} = Post |> Ash.Query.filter(id == ^post.id) |> Ash.Query.aggregate( :custom_count_of_comments, :count, :comments, query: [filter: expr(not is_nil(title))] ) |> Api.read_one!() end test "with data and a custom string keyed aggregate, it returns the count" do post = Post |> Ash.Changeset.new(%{title: "title"}) |> Api.create!() Comment |> Ash.Changeset.new(%{title: "match"}) |> Ash.Changeset.manage_relationship(:post, post, type: :append_and_remove) |> Api.create!() Comment |> Ash.Changeset.new() |> Ash.Changeset.manage_relationship(:post, post, type: :append_and_remove) |> Api.create!() import Ash.Query assert %{aggregates: %{"custom_count_of_comments" => 1}} = Post |> Ash.Query.filter(id == ^post.id) |> Ash.Query.aggregate( "custom_count_of_comments", :count, :comments, query: [filter: expr(not is_nil(title))] ) |> Api.read_one!() end test "with data for a many_to_many, it returns the count" do post = Post |> Ash.Changeset.new(%{title: "title"}) |> Api.create!() post2 = Post |> Ash.Changeset.new(%{title: "title2"}) |> Api.create!() post3 = Post |> Ash.Changeset.new(%{title: "title3"}) |> Api.create!() post |> Ash.Changeset.new() |> Ash.Changeset.manage_relationship(:linked_posts, [post2, post3], type: :append_and_remove ) |> Api.update!() post2 |> Ash.Changeset.new() |> Ash.Changeset.manage_relationship(:linked_posts, [post3], type: :append_and_remove) |> Api.update!() assert [ %{count_of_linked_posts: 2, title: "title"}, %{count_of_linked_posts: 1, title: "title2"} ] = Post |> Ash.Query.load(:count_of_linked_posts) |> Ash.Query.filter(count_of_linked_posts >= 1) |> Ash.Query.sort(count_of_linked_posts: :desc) |> Api.read!() end test "with data and a filter, it returns the count" do post = Post |> Ash.Changeset.new(%{title: "title"}) |> Api.create!() Comment |> Ash.Changeset.new(%{title: "match"}) |> Ash.Changeset.manage_relationship(:post, post, type: :append_and_remove) |> Api.create!() assert %{count_of_comments_called_match: 1} = Post |> Ash.Query.filter(id == ^post.id) |> Ash.Query.load(:count_of_comments_called_match) |> Api.read_one!() Comment |> Ash.Changeset.new(%{title: "not_match"}) |> Ash.Changeset.manage_relationship(:post, post, type: :append_and_remove) |> Api.create!() assert %{count_of_comments_called_match: 1} = Post |> Ash.Query.filter(id == ^post.id) |> Ash.Query.load(:count_of_comments_called_match) |> Api.read_one!() end end describe "exists" do test "with data and a filter, it returns the correct result" do post = Post |> Ash.Changeset.new(%{title: "title"}) |> Api.create!() Comment |> Ash.Changeset.new(%{title: "non-match"}) |> Ash.Changeset.manage_relationship(:post, post, type: :append_and_remove) |> Api.create!() assert %{has_comment_called_match: false} = Post |> Ash.Query.filter(id == ^post.id) |> Ash.Query.load(:has_comment_called_match) |> Api.read_one!() Comment |> Ash.Changeset.new(%{title: "match"}) |> Ash.Changeset.manage_relationship(:post, post, type: :append_and_remove) |> Api.create!() assert %{has_comment_called_match: true} = Post |> Ash.Query.filter(id == ^post.id) |> Ash.Query.load(:has_comment_called_match) |> Api.read_one!() end test "exists aggregates can be referenced in filters" do post = Post |> Ash.Changeset.new(%{title: "title"}) |> Api.create!() refute Post |> Ash.Query.filter(has_comment_called_match) |> Api.read_one!() Comment |> Ash.Changeset.new(%{title: "match"}) |> Ash.Changeset.manage_relationship(:post, post, type: :append_and_remove) |> Api.create!() assert %{has_comment_called_match: true} = Post |> Ash.Query.filter(has_comment_called_match) |> Ash.Query.load(:has_comment_called_match) |> Api.read_one!() end test "exists aggregates can be used at the query level" do post = Post |> Ash.Changeset.new(%{title: "title"}) |> Api.create!() Post |> Ash.Changeset.new(%{title: "title2"}) |> Api.create!() refute Post |> Ash.Query.filter(has_comment_called_match) |> Api.exists?() Comment |> Ash.Changeset.new(%{title: "match"}) |> Ash.Changeset.manage_relationship(:post, post, type: :append_and_remove) |> Api.create!() Comment |> Ash.Changeset.new(%{title: "match"}) |> Ash.Changeset.manage_relationship(:post, post, type: :append_and_remove) |> Api.create!() assert Post |> Api.exists?() refute Post |> Api.exists?(query: [filter: [title: "non-match"]]) end end describe "list" do test "with no related data it returns an empty list" do post = Post |> Ash.Changeset.new(%{title: "title"}) |> Api.create!() assert %{comment_titles: []} = Post |> Ash.Query.filter(id == ^post.id) |> Ash.Query.load(:comment_titles) |> Api.read_one!() end test "with related data, it returns the value" do post = Post |> Ash.Changeset.new(%{title: "title"}) |> Api.create!() Comment |> Ash.Changeset.new(%{title: "bbb"}) |> Ash.Changeset.manage_relationship(:post, post, type: :append_and_remove) |> Api.create!() Comment |> Ash.Changeset.new(%{title: "ccc"}) |> Ash.Changeset.manage_relationship(:post, post, type: :append_and_remove) |> Api.create!() assert %{comment_titles: ["bbb", "ccc"]} = Post |> Ash.Query.filter(id == ^post.id) |> Ash.Query.load(:comment_titles) |> Api.read_one!() Comment |> Ash.Changeset.new(%{title: "aaa"}) |> Ash.Changeset.manage_relationship(:post, post, type: :append_and_remove) |> Api.create!() assert %{comment_titles: ["aaa", "bbb", "ccc"]} = Post |> Ash.Query.filter(id == ^post.id) |> Ash.Query.load(:comment_titles) |> Api.read_one!() end test "with related data, it returns the uniq" do post = Post |> Ash.Changeset.new(%{title: "title"}) |> Api.create!() Comment |> Ash.Changeset.new(%{title: "aaa"}) |> Ash.Changeset.manage_relationship(:post, post, type: :append_and_remove) |> Api.create!() Comment |> Ash.Changeset.new(%{title: "aaa"}) |> Ash.Changeset.manage_relationship(:post, post, type: :append_and_remove) |> Api.create!() assert %{uniq_comment_titles: ["aaa"]} = Post |> Ash.Query.filter(id == ^post.id) |> Ash.Query.load(:uniq_comment_titles) |> Api.read_one!() Comment |> Ash.Changeset.new(%{title: "bbb"}) |> Ash.Changeset.manage_relationship(:post, post, type: :append_and_remove) |> Api.create!() assert %{uniq_comment_titles: ["aaa", "bbb"]} = Post |> Ash.Query.filter(id == ^post.id) |> Ash.Query.load(:uniq_comment_titles) |> Api.read_one!() assert %{count_comment_titles: 3, count_uniq_comment_titles: 2} = Post |> Ash.Query.filter(id == ^post.id) |> Ash.Query.load([:count_comment_titles, :count_uniq_comment_titles]) |> Api.read_one!() end end describe "first" do test "with no related data it returns nil" do post = Post |> Ash.Changeset.new(%{title: "title"}) |> Api.create!() assert %{first_comment: nil} = Post |> Ash.Query.filter(id == ^post.id) |> Ash.Query.load(:first_comment) |> Api.read_one!() end test "with related data, it returns the value" do post = Post |> Ash.Changeset.new(%{title: "title"}) |> Api.create!() Comment |> Ash.Changeset.new(%{title: "match"}) |> Ash.Changeset.manage_relationship(:post, post, type: :append_and_remove) |> Api.create!() assert %{first_comment: "match"} = Post |> Ash.Query.filter(id == ^post.id) |> Ash.Query.load(:first_comment) |> Api.read_one!() Comment |> Ash.Changeset.new(%{title: "early match"}) |> Ash.Changeset.manage_relationship(:post, post, type: :append_and_remove) |> Api.create!() assert %{first_comment: "early match"} = Post |> Ash.Query.filter(id == ^post.id) |> Ash.Query.load(:first_comment) |> Api.read_one!() end test "it can be sorted on" do post = Post |> Ash.Changeset.new(%{title: "title"}) |> Api.create!() post_id = post.id Comment |> Ash.Changeset.new(%{title: "match"}) |> Ash.Changeset.manage_relationship(:post, post, type: :append_and_remove) |> Api.create!() post_2 = Post |> Ash.Changeset.new(%{title: "title"}) |> Api.create!() Comment |> Ash.Changeset.new(%{title: "zed"}) |> Ash.Changeset.manage_relationship(:post, post_2, type: :append_and_remove) |> Api.create!() assert %{id: ^post_id} = Post |> Ash.Query.sort(:first_comment) |> Ash.Query.limit(1) |> Api.read_one!() end test "first aggregates can be sorted on" do author = Author |> Ash.Changeset.new(%{first_name: "first name"}) |> Api.create!() post = Post |> Ash.Changeset.new(%{title: "title"}) |> Ash.Changeset.manage_relationship(:author, author, type: :append_and_remove) |> Api.create!() assert %{author_first_name: "first name"} = Post |> Ash.Query.filter(id == ^post.id) |> Ash.Query.load(:author_first_name) |> Ash.Query.sort(author_first_name: :asc) |> Api.read_one!() end test "aggregate maintains datetime precision" do author = Author |> Ash.Changeset.new(%{first_name: "first name"}) |> Api.create!() post = Post |> Ash.Changeset.new(%{title: "title"}) |> Ash.Changeset.manage_relationship(:author, author, type: :append_and_remove) |> Api.create!() latest_comment = Comment |> Ash.Changeset.new(%{title: "title"}) |> Ash.Changeset.manage_relationship(:post, post, type: :append_and_remove) |> Api.create!() fetched_post = Post |> Ash.Query.filter(id == ^post.id) |> Ash.Query.load(:latest_comment_created_at) |> Api.read_one!() assert latest_comment.created_at == fetched_post.latest_comment_created_at end test "it can be sorted on and produces the appropriate order" do post1 = Post |> Ash.Changeset.new(%{title: "title"}) |> Api.create!() Comment |> Ash.Changeset.new(%{title: "b"}) |> Ash.Changeset.manage_relationship(:post, post1, type: :append_and_remove) |> Api.create!() Comment |> Ash.Changeset.new(%{title: "c"}) |> Ash.Changeset.manage_relationship(:post, post1, type: :append_and_remove) |> Api.create!() post2 = Post |> Ash.Changeset.new(%{title: "title"}) |> Api.create!() Comment |> Ash.Changeset.new(%{title: "a"}) |> Ash.Changeset.manage_relationship(:post, post2, type: :append_and_remove) |> Api.create!() Comment |> Ash.Changeset.new(%{title: "b"}) |> Ash.Changeset.manage_relationship(:post, post2, type: :append_and_remove) |> Api.create!() post3 = Post |> Ash.Changeset.new(%{title: "title"}) |> Api.create!() Comment |> Ash.Changeset.new(%{title: "c"}) |> Ash.Changeset.manage_relationship(:post, post3, type: :append_and_remove) |> Api.create!() Comment |> Ash.Changeset.new(%{title: "d"}) |> Ash.Changeset.manage_relationship(:post, post3, type: :append_and_remove) |> Api.create!() assert [%{last_comment: "d"}, %{last_comment: "c"}] = Post |> Ash.Query.load(:last_comment) |> Ash.Query.sort(last_comment: :desc) |> Ash.Query.filter(not is_nil(comments.title)) |> Ash.Query.limit(2) |> Api.read!() end end test "sum aggregates show the same value with filters on the sum vs filters on relationships" do post = Post |> Ash.Changeset.new(%{title: "title"}) |> Api.create!() for i <- 1..5 do ratings = for i <- [3, 5, 7, 9] do %{score: i} end Comment |> Ash.Changeset.new(%{title: "title#{i}"}) |> Ash.Changeset.manage_relationship(:post, post, type: :append_and_remove) |> Ash.Changeset.manage_relationship(:ratings, ratings, type: :create) |> Api.create!() end values = post |> Api.load!([ :sum_of_popular_comment_rating_scores, :sum_of_popular_comment_rating_scores_2 ]) |> Map.take([:sum_of_popular_comment_rating_scores, :sum_of_popular_comment_rating_scores_2]) |> Map.values() assert [80, 80] = values end test "can't define multidimensional array aggregate types" do assert_raise Spark.Error.DslError, ~r/Aggregate not supported/, fn -> defmodule Foo do @moduledoc false use Ash.Resource, data_layer: AshPostgres.DataLayer postgres do table("profile") repo(AshPostgres.TestRepo) end attributes do uuid_primary_key(:id, writable?: true) end actions do defaults([:create, :read, :update, :destroy]) end relationships do belongs_to(:author, AshPostgres.Test.Author) end aggregates do first(:author_badges, :author, :badges) end end end end test "related aggregates can be filtered on" do post = Post |> Ash.Changeset.new(%{title: "title"}) |> Api.create!() post2 = Post |> Ash.Changeset.new(%{title: "title"}) |> Api.create!() Comment |> Ash.Changeset.new(%{title: "match"}) |> Ash.Changeset.manage_relationship(:post, post, type: :append_and_remove) |> Api.create!() Comment |> Ash.Changeset.new(%{title: "non_match"}) |> Ash.Changeset.manage_relationship(:post, post2, type: :append_and_remove) |> Api.create!() Comment |> Ash.Changeset.new(%{title: "non_match2"}) |> Ash.Changeset.manage_relationship(:post, post2, type: :append_and_remove) |> Api.create!() assert %{title: "match"} = Comment |> Ash.Query.filter(post.count_of_comments == 1) |> Api.read_one!() end describe "sum" do test "with no related data it returns nil" do post = Post |> Ash.Changeset.new(%{title: "title"}) |> Api.create!() assert %{sum_of_comment_likes: nil} = Post |> Ash.Query.filter(id == ^post.id) |> Ash.Query.load(:sum_of_comment_likes) |> Api.read_one!() end test "with no related data and a default it returns the default" do post = Post |> Ash.Changeset.new(%{title: "title"}) |> Api.create!() assert %{sum_of_comment_likes_with_default: 0} = Post |> Ash.Query.filter(id == ^post.id) |> Ash.Query.load(:sum_of_comment_likes_with_default) |> Api.read_one!() end test "with data, it returns the sum" do post = Post |> Ash.Changeset.new(%{title: "title"}) |> Api.create!() Comment |> Ash.Changeset.new(%{title: "match", likes: 2}) |> Ash.Changeset.manage_relationship(:post, post, type: :append_and_remove) |> Api.create!() assert %{sum_of_comment_likes: 2} = Post |> Ash.Query.filter(id == ^post.id) |> Ash.Query.load(:sum_of_comment_likes) |> Api.read_one!() Comment |> Ash.Changeset.new(%{title: "match", likes: 3}) |> Ash.Changeset.manage_relationship(:post, post, type: :append_and_remove) |> Api.create!() assert %{sum_of_comment_likes: 5} = Post |> Ash.Query.filter(id == ^post.id) |> Ash.Query.load(:sum_of_comment_likes) |> Api.read_one!() end test "with data and a filter, it returns the sum" do post = Post |> Ash.Changeset.new(%{title: "title"}) |> Api.create!() Comment |> Ash.Changeset.new(%{title: "match", likes: 2}) |> Ash.Changeset.manage_relationship(:post, post, type: :append_and_remove) |> Api.create!() assert %{sum_of_comment_likes_called_match: 2} = Post |> Ash.Query.filter(id == ^post.id) |> Ash.Query.load(:sum_of_comment_likes_called_match) |> Api.read_one!() Comment |> Ash.Changeset.new(%{title: "not_match", likes: 3}) |> Ash.Changeset.manage_relationship(:post, post, type: :append_and_remove) |> Api.create!() assert %{sum_of_comment_likes_called_match: 2} = Post |> Ash.Query.filter(id == ^post.id) |> Ash.Query.load(:sum_of_comment_likes_called_match) |> Api.read_one!() end test "filtering on a nested aggregate works" do Post |> Ash.Query.filter(count_of_comment_ratings == 0) |> Api.read!() end test "nested aggregates show the proper values" do post = Post |> Ash.Changeset.new(%{title: "title"}) |> Api.create!() author = AshPostgres.Test.Author |> Ash.Changeset.new(%{"first_name" => "ted"}) |> Api.create!() comment1 = Comment |> Ash.Changeset.new(%{title: "match", likes: 2}) |> Ash.Changeset.manage_relationship(:post, post, type: :append_and_remove) |> Ash.Changeset.manage_relationship(:author, author, type: :append_and_remove) |> Api.create!() comment2 = Comment |> Ash.Changeset.new(%{title: "match", likes: 2}) |> Ash.Changeset.manage_relationship(:post, post, type: :append_and_remove) |> Ash.Changeset.manage_relationship(:author, author, type: :append_and_remove) |> Api.create!() Rating |> Ash.Changeset.new(%{score: 5, resource_id: comment1.id}) |> Ash.Changeset.set_context(%{data_layer: %{table: "comment_ratings"}}) |> Api.create!() Rating |> Ash.Changeset.new(%{score: 10, resource_id: comment2.id}) |> Ash.Changeset.set_context(%{data_layer: %{table: "comment_ratings"}}) |> Api.create!() assert [%{count_of_comment_ratings: 2}] = Post |> Ash.Query.load(:count_of_comment_ratings) |> Api.read!() assert [%{highest_comment_rating: 10}] = Post |> Ash.Query.load(:highest_comment_rating) |> Api.read!() assert [%{lowest_comment_rating: 5}] = Post |> Ash.Query.load(:lowest_comment_rating) |> Api.read!() assert [%{avg_comment_rating: 7.5}] = Post |> Ash.Query.load(:avg_comment_rating) |> Api.read!() # TODO: want to add an option for `unique` here at some point assert [%{comment_authors: "ted,ted"}] = Post |> Ash.Query.load(:comment_authors) |> Api.read!() end test "nested filtered aggregates show the proper values" do post = Post |> Ash.Changeset.new(%{title: "title"}) |> Api.create!() comment1 = Comment |> Ash.Changeset.new(%{title: "match", likes: 2}) |> Ash.Changeset.manage_relationship(:post, post, type: :append_and_remove) |> Api.create!() comment2 = Comment |> Ash.Changeset.new(%{title: "match", likes: 2}) |> Ash.Changeset.manage_relationship(:post, post, type: :append_and_remove) |> Api.create!() Rating |> Ash.Changeset.new(%{score: 20, resource_id: comment1.id}) |> Ash.Changeset.set_context(%{data_layer: %{table: "comment_ratings"}}) |> Api.create!() Rating |> Ash.Changeset.new(%{score: 1, resource_id: comment2.id}) |> Ash.Changeset.set_context(%{data_layer: %{table: "comment_ratings"}}) |> Api.create!() assert [%{count_of_comment_ratings: 2, count_of_popular_comment_ratings: 1}] = Post |> Ash.Query.load([:count_of_comment_ratings, :count_of_popular_comment_ratings]) |> Api.read!() assert [%{count_of_comment_ratings: 2}] = Post |> Ash.Query.load([:count_of_comment_ratings]) |> Api.read!() assert [%{count_of_popular_comment_ratings: 1}] = Post |> Ash.Query.load([:count_of_popular_comment_ratings]) |> Api.read!() end test "nested filtered and sorted aggregates show the proper values" do post = Post |> Ash.Changeset.new(%{title: "title"}) |> Api.create!() comment1 = Comment |> Ash.Changeset.new(%{title: "match", likes: 2}) |> Ash.Changeset.manage_relationship(:post, post, type: :append_and_remove) |> Api.create!() comment2 = Comment |> Ash.Changeset.new(%{title: "match", likes: 2}) |> Ash.Changeset.manage_relationship(:post, post, type: :append_and_remove) |> Api.create!() Rating |> Ash.Changeset.new(%{score: 20, resource_id: comment1.id}) |> Ash.Changeset.set_context(%{data_layer: %{table: "comment_ratings"}}) |> Api.create!() Rating |> Ash.Changeset.new(%{score: 1, resource_id: comment2.id}) |> Ash.Changeset.set_context(%{data_layer: %{table: "comment_ratings"}}) |> Api.create!() assert [%{count_of_comment_ratings: 2, count_of_popular_comment_ratings: 1}] = Post |> Ash.Query.load([:count_of_comment_ratings, :count_of_popular_comment_ratings]) |> Api.read!() end test "nested first aggregate works" do post = Post |> Ash.Changeset.new(%{title: "title"}) |> Api.create!() comment = Comment |> Ash.Changeset.new(%{title: "title", likes: 2}) |> Ash.Changeset.manage_relationship(:post, post, type: :append_and_remove) |> Api.create!() Rating |> Ash.Changeset.new(%{score: 10, resource_id: comment.id}) |> Ash.Changeset.set_context(%{data_layer: %{table: "comment_ratings"}}) |> Api.create!() post = Post |> Ash.Query.load(:highest_rating) |> Api.read!() |> Enum.at(0) assert post.highest_rating == 10 end test "loading a nested aggregate works" do post = Post |> Ash.Changeset.new(%{title: "title"}) |> Api.create!() Comment |> Ash.Changeset.new(%{title: "title", likes: 2}) |> Ash.Changeset.manage_relationship(:post, post, type: :append_and_remove) |> Api.create!() Post |> Ash.Query.load(:count_of_comment_ratings) |> Api.read!() |> Enum.map(fn post -> assert post.count_of_comment_ratings == 0 end) end test "the sum can be filtered on when paginating" do post = Post |> Ash.Changeset.new(%{title: "title"}) |> Api.create!() Comment |> Ash.Changeset.new(%{title: "match", likes: 2}) |> Ash.Changeset.manage_relationship(:post, post, type: :append_and_remove) |> Api.create!() assert %{sum_of_comment_likes_called_match: 2} = Post |> Ash.Query.filter(id == ^post.id) |> Ash.Query.load(:sum_of_comment_likes_called_match) |> Api.read_one!() Comment |> Ash.Changeset.new(%{title: "not_match", likes: 3}) |> Ash.Changeset.manage_relationship(:post, post, type: :append_and_remove) |> Api.create!() assert %Ash.Page.Offset{results: [%{sum_of_comment_likes_called_match: 2}]} = Post |> Ash.Query.filter(id == ^post.id) |> Ash.Query.load(:sum_of_comment_likes_called_match) |> Ash.Query.filter(sum_of_comment_likes_called_match == 2) |> Api.read!(action: :paginated, page: [limit: 1, count: true]) assert %Ash.Page.Offset{results: []} = Post |> Ash.Query.filter(id == ^post.id) |> Ash.Query.load(:sum_of_comment_likes_called_match) |> Ash.Query.filter(sum_of_comment_likes_called_match == 3) |> Api.read!(action: :paginated, page: [limit: 1, count: true]) end test "an aggregate on relationships with a filter returns the proper value" do post = Post |> Ash.Changeset.new(%{title: "title", category: "foo"}) |> Api.create!() Comment |> Ash.Changeset.for_create(:create, %{title: "match", likes: 20}) |> Ash.Changeset.manage_relationship(:post, post, type: :append_and_remove) |> Api.create!() Comment |> Ash.Changeset.for_create(:create, %{title: "match", likes: 17}) |> Ash.Changeset.manage_relationship(:post, post, type: :append_and_remove) |> Api.create!() Comment |> Ash.Changeset.for_create(:create, %{title: "match", likes: 50}) |> Ash.Changeset.force_change_attribute( :created_at, DateTime.add(DateTime.utc_now(), :timer.hours(24) * -20, :second) ) |> Ash.Changeset.manage_relationship(:post, post, type: :append_and_remove) |> Api.create!() assert %Post{sum_of_recent_popular_comment_likes: 37} = Post |> Ash.Query.load(:sum_of_recent_popular_comment_likes) |> Api.read_one!() end test "a count aggregate on relationships with a filter returns the proper value" do post = Post |> Ash.Changeset.new(%{title: "title", category: "foo"}) |> Api.create!() Comment |> Ash.Changeset.for_create(:create, %{title: "match", likes: 20}) |> Ash.Changeset.manage_relationship(:post, post, type: :append_and_remove) |> Api.create!() Comment |> Ash.Changeset.for_create(:create, %{title: "match", likes: 17}) |> Ash.Changeset.manage_relationship(:post, post, type: :append_and_remove) |> Api.create!() Comment |> Ash.Changeset.for_create(:create, %{title: "match", likes: 50}) |> Ash.Changeset.force_change_attribute( :created_at, DateTime.add(DateTime.utc_now(), :timer.hours(24) * -20, :second) ) |> Ash.Changeset.manage_relationship(:post, post, type: :append_and_remove) |> Api.create!() assert %Post{count_of_recent_popular_comments: 2} = Post |> Ash.Query.load([ :count_of_recent_popular_comments ]) |> Api.read_one!() end test "a count aggregate with a related filter returns the proper value" do post = Post |> Ash.Changeset.new(%{title: "title", category: "foo"}) |> Api.create!() Comment |> Ash.Changeset.for_create(:create, %{title: "match"}) |> Ash.Changeset.manage_relationship(:post, post, type: :append_and_remove) |> Api.create!() Comment |> Ash.Changeset.for_create(:create, %{title: "match"}) |> Ash.Changeset.manage_relationship(:post, post, type: :append_and_remove) |> Api.create!() Comment |> Ash.Changeset.for_create(:create, %{title: "match"}) |> Ash.Changeset.manage_relationship(:post, post, type: :append_and_remove) |> Api.create!() assert %Post{count_of_comments_that_have_a_post: 3} = Post |> Ash.Query.load([ :count_of_comments_that_have_a_post ]) |> Api.read_one!() end test "a count aggregate with a related filter that uses `exists` returns the proper value" do post = Post |> Ash.Changeset.new(%{title: "title", category: "foo"}) |> Api.create!() Comment |> Ash.Changeset.for_create(:create, %{title: "match"}) |> Ash.Changeset.manage_relationship(:post, post, type: :append_and_remove) |> Api.create!() Comment |> Ash.Changeset.for_create(:create, %{title: "match"}) |> Ash.Changeset.manage_relationship(:post, post, type: :append_and_remove) |> Api.create!() Comment |> Ash.Changeset.for_create(:create, %{title: "match"}) |> Ash.Changeset.manage_relationship(:post, post, type: :append_and_remove) |> Api.create!() assert %Post{count_of_comments_that_have_a_post_with_exists: 3} = Post |> Ash.Query.load([ :count_of_comments_that_have_a_post_with_exists ]) |> Api.read_one!() end test "a count with a filter that references a relationship that also has a filter" do post = Post |> Ash.Changeset.new(%{title: "title", category: "foo"}) |> Api.create!() comment = Comment |> Ash.Changeset.for_create(:create, %{title: "match"}) |> Ash.Changeset.manage_relationship(:post, post, type: :append_and_remove) |> Api.create!() comment2 = Comment |> Ash.Changeset.for_create(:create, %{title: "match"}) |> Ash.Changeset.manage_relationship(:post, post, type: :append_and_remove) |> Api.create!() Rating |> Ash.Changeset.for_create(:create, %{score: 10, resource_id: comment.id}) |> Ash.Changeset.set_context(%{data_layer: %{table: "comment_ratings"}}) |> Api.create!() Rating |> Ash.Changeset.for_create(:create, %{score: 1, resource_id: comment2.id}) |> Ash.Changeset.set_context(%{data_layer: %{table: "comment_ratings"}}) |> Api.create!() assert %Post{count_of_popular_comments: 1} = Post |> Ash.Query.load([ :count_of_popular_comments ]) |> Api.read_one!() end test "a count with a filter that references a to many relationship can be aggregated at the query level" do Post |> Ash.Query.filter(comments.likes > 10) |> Api.count!() end test "a count with a filter that references a relationship combined with another" do post = Post |> Ash.Changeset.new(%{title: "title", category: "foo"}) |> Api.create!() comment = Comment |> Ash.Changeset.for_create(:create, %{title: "match"}) |> Ash.Changeset.manage_relationship(:post, post, type: :append_and_remove) |> Api.create!() comment2 = Comment |> Ash.Changeset.for_create(:create, %{title: "match"}) |> Ash.Changeset.manage_relationship(:post, post, type: :append_and_remove) |> Api.create!() Rating |> Ash.Changeset.for_create(:create, %{score: 10, resource_id: comment.id}) |> Ash.Changeset.set_context(%{data_layer: %{table: "comment_ratings"}}) |> Api.create!() Rating |> Ash.Changeset.for_create(:create, %{score: 1, resource_id: comment2.id}) |> Ash.Changeset.set_context(%{data_layer: %{table: "comment_ratings"}}) |> Api.create!() assert %Post{count_of_popular_comments: 1} = Post |> Ash.Query.load([ :count_of_comments, :count_of_popular_comments ]) |> Api.read_one!() end end end