ash_postgres/test/upsert_test.exs
Zach Daniel e271a27d3c improvement: avg/min/max/custom aggregate support
fix: fix various problems with the model behind aggregates
2022-12-07 20:32:38 -05:00

60 lines
1.4 KiB
Elixir

defmodule AshPostgres.Test.UpsertTest do
use AshPostgres.RepoCase, async: false
alias AshPostgres.Test.{Api, Post}
require Ash.Query
test "upserting results in the same created_at timestamp, but a new updated_at timestamp" do
id = Ash.UUID.generate()
new_post =
Post
|> Ash.Changeset.for_create(:create, %{
id: id,
title: "title2"
})
|> Api.create!(upsert?: true)
assert new_post.id == id
assert new_post.created_at == new_post.updated_at
updated_post =
Post
|> Ash.Changeset.for_create(:create, %{
id: id,
title: "title2"
})
|> Api.create!(upsert?: true)
assert updated_post.id == id
assert updated_post.created_at == new_post.created_at
assert updated_post.created_at != updated_post.updated_at
end
test "upserting a field with a default sets to the new value" do
id = Ash.UUID.generate()
new_post =
Post
|> Ash.Changeset.for_create(:create, %{
id: id,
title: "title2"
})
|> Api.create!(upsert?: true)
assert new_post.id == id
assert new_post.created_at == new_post.updated_at
updated_post =
Post
|> Ash.Changeset.for_create(:create, %{
id: id,
title: "title2",
decimal: Decimal.new(5)
})
|> Api.create!(upsert?: true)
assert updated_post.id == id
assert Decimal.equal?(updated_post.decimal, Decimal.new(5))
end
end