add test for rels in atomic updates

This commit is contained in:
Barnabas Jovanovics 2024-05-15 11:01:17 +02:00
parent 3371b6a313
commit 901c2e16dc
2 changed files with 24 additions and 0 deletions

View file

@ -1,4 +1,5 @@
defmodule AshPostgres.AtomicsTest do
alias AshPostgres.Test.Author
use AshPostgres.RepoCase, async: false
alias AshPostgres.Test.Post
@ -101,4 +102,23 @@ defmodule AshPostgres.AtomicsTest do
assert Post.increment_score!(post, 2).score == 4
end
test "use rel in atomic update" do
author =
Author
|> Ash.Changeset.for_create(:create, %{first_name: "John", last_name: "Doe"})
|> Ash.create!()
post =
Post
|> Ash.Changeset.for_create(:create, %{price: 1, author_id: author.id})
|> Ash.create!()
post =
post
|> Ash.Changeset.for_update(:set_title_from_author, %{})
|> Ash.update!()
assert post.title == "John"
end
end

View file

@ -150,6 +150,10 @@ defmodule AshPostgres.Test.Post do
)
end
update :set_title_from_author do
change(atomic_update(:title, expr(author.first_name)))
end
update :increment_score do
argument(:amount, :integer, default: 1)
change(atomic_update(:score, expr((score || 0) + ^arg(:amount))))