ash/test/generator/generator_test.exs

254 lines
5.9 KiB
Elixir
Raw Normal View History

2022-06-22 13:00:47 +12:00
defmodule Ash.Test.GeneratorTest do
@moduledoc false
use ExUnit.Case, async: true
2022-09-21 11:44:04 +12:00
use ExUnitProperties
2022-06-22 13:00:47 +12:00
import Ash.Seed
require Ash.Query
2022-09-21 11:44:04 +12:00
alias Ash.Test.AnyApi, as: Api
2022-06-22 13:00:47 +12:00
defmodule Author do
@moduledoc false
use Ash.Resource,
data_layer: Ash.DataLayer.Ets
ets do
private?(true)
end
actions do
defaults [:create, :read, :update, :destroy]
end
attributes do
uuid_primary_key :id
attribute :name, :string, default: "Fred"
attribute :metadata, :map do
allow_nil? true
end
attribute :meta, :map do
allow_nil? false
end
2022-06-22 13:00:47 +12:00
end
relationships do
has_many :posts, Ash.Test.GeneratorTest.Post, destination_attribute: :author_id
2022-06-22 13:00:47 +12:00
has_one :latest_post, Ash.Test.GeneratorTest.Post,
destination_attribute: :author_id,
2022-06-22 13:00:47 +12:00
sort: [inserted_at: :desc]
end
end
defmodule Post do
@moduledoc false
use Ash.Resource, data_layer: Ash.DataLayer.Ets
ets do
private?(true)
end
actions do
defaults [:create, :read, :update, :destroy]
end
attributes do
uuid_primary_key :id
attribute :title, :string
attribute :contents, :string
attribute :category, :string
timestamps()
end
relationships do
belongs_to :author, Author
has_many :ratings, Ash.Test.GeneratorTest.Rating
many_to_many :categories, Ash.Test.GeneratorTest.Category,
through: Ash.Test.GeneratorTest.PostCategory,
destination_attribute_on_join_resource: :category_id,
source_attribute_on_join_resource: :post_id
2022-06-22 13:00:47 +12:00
end
end
defmodule PostCategory do
@moduledoc false
use Ash.Resource, data_layer: Ash.DataLayer.Ets
ets do
private?(true)
end
actions do
defaults [:create, :read, :update, :destroy]
end
relationships do
belongs_to :post, Post, primary_key?: true, allow_nil?: false
2022-06-22 13:00:47 +12:00
belongs_to :category, Ash.Test.GeneratorTest.Category,
primary_key?: true,
allow_nil?: false
2022-06-22 13:00:47 +12:00
end
end
defmodule Category do
@moduledoc false
use Ash.Resource, data_layer: Ash.DataLayer.Ets
ets do
private?(true)
end
identities do
2022-09-21 11:44:04 +12:00
identity :unique_name, [:name], pre_check_with: Api
2022-06-22 13:00:47 +12:00
end
actions do
defaults [:create, :read, :update, :destroy]
end
attributes do
uuid_primary_key :id
attribute :name, :string
end
relationships do
many_to_many :posts, Post,
through: PostCategory,
destination_attribute_on_join_resource: :post_id,
source_attribute_on_join_resource: :category_id
2022-06-22 13:00:47 +12:00
end
end
defmodule Rating do
use Ash.Resource,
data_layer: Ash.DataLayer.Ets
ets do
private? true
end
attributes do
uuid_primary_key :id
attribute :rating, :integer
end
actions do
defaults [:create, :read, :update, :destroy]
end
relationships do
belongs_to :post, Post do
api Ash.Test.GeneratorTest.Category
end
end
end
describe "action_input" do
test "action input can be provided to an action" do
check all(input <- Ash.Generator.action_input(Post, :create)) do
Post
|> Ash.Changeset.for_create(:create, input)
|> Api.create!()
end
end
test "overrides are applied" do
check all(
input <-
Ash.Generator.action_input(Post, :create, %{title: "text"})
) do
2022-06-22 13:00:47 +12:00
post =
Post
|> Ash.Changeset.for_create(:create, input)
|> Api.create!()
assert post.title == "text"
end
end
end
test "string generator honors trim?: true" do
check all(string <- Ash.Type.String.generator(min_length: 5, trim?: true)) do
assert String.length(String.trim(string)) >= 5
end
end
2022-06-22 13:00:47 +12:00
describe "changeset" do
2022-10-05 09:01:42 +13:00
test "a directly usable changeset can be created" do
2022-06-22 13:00:47 +12:00
Post
|> Ash.Generator.changeset(:create)
|> Api.create!()
end
test "many changesets can be generated" do
posts =
Post
|> Ash.Generator.many_changesets(:create, 5)
|> Enum.map(&Api.create!/1)
assert Enum.count(posts) == 5
end
end
@meta_generator %{
meta: %{},
metadata: %{}
}
2022-06-22 13:00:47 +12:00
describe "seed_input" do
test "it returns attributes generated" do
Author
|> Ash.Generator.seed_input(@meta_generator)
2022-06-22 13:00:47 +12:00
|> Enum.take(10)
|> Enum.each(fn input ->
seed!(Author, input)
end)
end
test "it can be used in property testing" do
check all(input <- Ash.Generator.seed_input(Author, @meta_generator)) do
2022-06-22 13:00:47 +12:00
seed!(Author, input)
end
end
test "many seeds can be generated with seed_many!" do
assert Enum.count(Ash.Generator.seed_many!(Author, 5, @meta_generator)) == 5
2022-06-22 13:00:47 +12:00
end
end
describe "built in generators" do
for type <- Enum.uniq(Ash.Type.builtin_types()), type != Ash.Type.Keyword do
2022-06-22 13:00:47 +12:00
Code.ensure_compiled!(type)
has_generator? = function_exported?(type, :generator, 1)
for type <- [{:array, type}, type] do
constraints =
case type do
{:array, type} ->
[items: Spark.OptionsHelpers.validate!([], Ash.Type.constraints(type))]
type ->
Spark.OptionsHelpers.validate!([], Ash.Type.constraints(type))
end
2022-06-22 13:00:47 +12:00
if has_generator? do
test "#{inspect(type)} type can be generated" do
check all(input <- Ash.Type.generator(unquote(type), unquote(constraints))) do
{:ok, _} = Ash.Type.cast_input(unquote(type), input, unquote(constraints))
end
end
else
test "#{inspect(type)} cannot be generated" do
assert_raise RuntimeError, ~r/generator\/1 unimplemented for/, fn ->
Ash.Type.generator(unquote(type), unquote(constraints))
end
end
end
end
end
end
end