defmodule AshPostgres.MigrationGeneratorTest do use AshPostgres.RepoCase, async: false @moduletag :migration defmacrop defposts(mod \\ Post, do: body) do quote do Code.compiler_options(ignore_module_conflict: true) defmodule unquote(mod) do use Ash.Resource, data_layer: AshPostgres.DataLayer postgres do table "posts" repo AshPostgres.TestRepo end actions do read(:read) create(:create) end unquote(body) end Code.compiler_options(ignore_module_conflict: false) end end defmacrop defapi(resources) do quote do Code.compiler_options(ignore_module_conflict: true) defmodule Api do use Ash.Api resources do for resource <- unquote(resources) do resource(resource) end end end Code.compiler_options(ignore_module_conflict: false) end end describe "creating initial snapshots" do setup do on_exit(fn -> File.rm_rf!("test_snapshots_path") File.rm_rf!("test_migration_path") end) defposts do identities do identity(:title, [:title]) end attributes do uuid_primary_key(:id) attribute(:title, :string) end end defapi([Post]) Mix.shell(Mix.Shell.Process) AshPostgres.MigrationGenerator.generate(Api, snapshot_path: "test_snapshots_path", migration_path: "test_migration_path", quiet: true, format: false ) :ok end test "it creates a snapshot for each resource" do assert File.exists?(Path.wildcard("test_snapshots_path/test_repo/posts/*.json")) end test "the snapshots can be loaded" do assert File.exists?(Path.wildcard("test_snapshots_path/test_repo/posts/*.json")) end test "the snapshots contain valid json" do assert File.read!(Path.wildcard("test_snapshots_path/test_repo/posts/*.json")) |> Jason.decode!(keys: :atoms!) end test "the migration creates the table" do assert [file] = Path.wildcard("test_migration_path/**/*_migrate_resources*.exs") assert File.read!(file) =~ "create table(:posts, primary_key: false) do" end test "the migration adds the id, with its default" do assert [file] = Path.wildcard("test_migration_path/**/*_migrate_resources*.exs") assert File.read!(file) =~ ~S[add :id, :uuid, null: false, default: fragment("uuid_generate_v4()"), primary_key: true] end test "the migration adds other attributes" do assert [file] = Path.wildcard("test_migration_path/**/*_migrate_resources*.exs") assert File.read!(file) =~ ~S[add :title, :text] end test "the migration creates unique_indexes based on the identities of the resource" do assert [file] = Path.wildcard("test_migration_path/**/*_migrate_resources*.exs") assert File.read!(file) =~ ~S{create unique_index(:posts, [:title], name: "posts_title_index")} end end describe "creating follow up migrations" do setup do on_exit(fn -> File.rm_rf!("test_snapshots_path") File.rm_rf!("test_migration_path") end) defposts do identities do identity(:title, [:title]) end attributes do uuid_primary_key(:id) attribute(:title, :string) end end defapi([Post]) Mix.shell(Mix.Shell.Process) AshPostgres.MigrationGenerator.generate(Api, snapshot_path: "test_snapshots_path", migration_path: "test_migration_path", quiet: true, format: false ) :ok end test "when renaming an index, it is properly renamed" do defposts do postgres do identity_index_names(title: "titles_r_unique_dawg") end identities do identity(:title, [:title]) end attributes do uuid_primary_key(:id) attribute(:title, :string) end end defapi([Post]) AshPostgres.MigrationGenerator.generate(Api, snapshot_path: "test_snapshots_path", migration_path: "test_migration_path", quiet: true, format: false ) assert [_file1, file2] = Enum.sort(Path.wildcard("test_migration_path/**/*_migrate_resources*.exs")) assert File.read!(file2) =~ ~S[ALTER INDEX posts_title_index RENAME TO titles_r_unique_dawg] end test "when adding a field, it adds the field" do defposts do identities do identity(:title, [:title]) end attributes do uuid_primary_key(:id) attribute(:title, :string) attribute(:name, :string, allow_nil?: false) end end defapi([Post]) AshPostgres.MigrationGenerator.generate(Api, snapshot_path: "test_snapshots_path", migration_path: "test_migration_path", quiet: true, format: false ) assert [_file1, file2] = Enum.sort(Path.wildcard("test_migration_path/**/*_migrate_resources*.exs")) assert File.read!(file2) =~ ~S[add :name, :text, null: false] end test "when renaming a field, it asks if you are renaming it, and renames it if you are" do defposts do attributes do uuid_primary_key(:id) attribute(:name, :string, allow_nil?: false) end end defapi([Post]) send(self(), {:mix_shell_input, :yes?, true}) AshPostgres.MigrationGenerator.generate(Api, snapshot_path: "test_snapshots_path", migration_path: "test_migration_path", quiet: true, format: false ) assert [_file1, file2] = Enum.sort(Path.wildcard("test_migration_path/**/*_migrate_resources*.exs")) assert File.read!(file2) =~ ~S[rename table(:posts), :title, to: :name] end test "when renaming a field, it asks if you are renaming it, and adds it if you aren't" do defposts do attributes do uuid_primary_key(:id) attribute(:name, :string, allow_nil?: false) end end defapi([Post]) send(self(), {:mix_shell_input, :yes?, false}) AshPostgres.MigrationGenerator.generate(Api, snapshot_path: "test_snapshots_path", migration_path: "test_migration_path", quiet: true, format: false ) assert [_file1, file2] = Enum.sort(Path.wildcard("test_migration_path/**/*_migrate_resources*.exs")) assert File.read!(file2) =~ ~S[add :name, :text, null: false] end test "when renaming a field, it asks which field you are renaming it to, and renames it if you are" do defposts do attributes do uuid_primary_key(:id) attribute(:name, :string, allow_nil?: false) attribute(:subject, :string, allow_nil?: false) end end defapi([Post]) send(self(), {:mix_shell_input, :yes?, true}) send(self(), {:mix_shell_input, :prompt, "subject"}) AshPostgres.MigrationGenerator.generate(Api, snapshot_path: "test_snapshots_path", migration_path: "test_migration_path", quiet: true, format: false ) assert [_file1, file2] = Enum.sort(Path.wildcard("test_migration_path/**/*_migrate_resources*.exs")) assert File.read!(file2) =~ ~S[rename table(:posts), :title, to: :subject] end test "when renaming a field, it asks which field you are renaming it to, and adds it if you arent" do defposts do attributes do uuid_primary_key(:id) attribute(:name, :string, allow_nil?: false) attribute(:subject, :string, allow_nil?: false) end end defapi([Post]) send(self(), {:mix_shell_input, :yes?, false}) AshPostgres.MigrationGenerator.generate(Api, snapshot_path: "test_snapshots_path", migration_path: "test_migration_path", quiet: true, format: false ) assert [_file1, file2] = Enum.sort(Path.wildcard("test_migration_path/**/*_migrate_resources*.exs")) assert File.read!(file2) =~ ~S[add :subject, :text, null: false] end test "when changing the primary key, it changes properly" do defposts do attributes do attribute(:id, :uuid, primary_key?: false, default: &Ecto.UUID.generate/0) uuid_primary_key(:guid) attribute(:title, :string) end end defapi([Post]) AshPostgres.MigrationGenerator.generate(Api, snapshot_path: "test_snapshots_path", migration_path: "test_migration_path", quiet: true, format: false ) assert [_file1, file2] = Enum.sort(Path.wildcard("test_migration_path/**/*_migrate_resources*.exs")) assert File.read!(file2) =~ ~S[add :guid, :uuid, null: false, default: fragment("uuid_generate_v4()"), primary_key: true] end test "when multiple schemas apply to the same table, all attributes are added" do defposts do attributes do uuid_primary_key(:id) attribute(:title, :string) attribute(:foobar, :string) end end defposts Post2 do attributes do uuid_primary_key(:id) attribute(:name, :string) end end defapi([Post, Post2]) AshPostgres.MigrationGenerator.generate(Api, snapshot_path: "test_snapshots_path", migration_path: "test_migration_path", quiet: true, format: false ) assert [_file1, file2] = Enum.sort(Path.wildcard("test_migration_path/**/*_migrate_resources*.exs")) assert File.read!(file2) =~ ~S[add :foobar, :text] assert File.read!(file2) =~ ~S[add :foobar, :text] end test "when an attribute exists only on some of the resources that use the same table, it isn't marked as null: false" do defposts do attributes do uuid_primary_key(:id) attribute(:title, :string) attribute(:example, :string, allow_nil?: false) end end defposts Post2 do attributes do uuid_primary_key(:id) end end defapi([Post, Post2]) AshPostgres.MigrationGenerator.generate(Api, snapshot_path: "test_snapshots_path", migration_path: "test_migration_path", quiet: true, format: false ) assert [_file1, file2] = Enum.sort(Path.wildcard("test_migration_path/**/*_migrate_resources*.exs")) assert File.read!(file2) =~ ~S[add :example, :text] <> "\n" refute File.read!(file2) =~ ~S[null: false] end end describe "auto incrementing integer, when generated" do setup do on_exit(fn -> File.rm_rf!("test_snapshots_path") File.rm_rf!("test_migration_path") end) defposts do attributes do attribute(:id, :integer, generated?: true, allow_nil?: false, primary_key?: true) attribute(:views, :integer) end end defapi([Post]) Mix.shell(Mix.Shell.Process) AshPostgres.MigrationGenerator.generate(Api, snapshot_path: "test_snapshots_path", migration_path: "test_migration_path", quiet: true, format: false ) :ok end test "when an integer is generated and default nil, it is a bigserial" do assert [file] = Path.wildcard("test_migration_path/**/*_migrate_resources*.exs") assert File.read!(file) =~ ~S[add :id, :bigserial, null: false, primary_key: true] assert File.read!(file) =~ ~S[add :views, :bigint] end end describe "--check_migrated option" do setup do defposts do attributes do uuid_primary_key(:id) attribute(:title, :string) end end defapi([Post]) [api: Api] end test "returns code(1) if snapshots and resources don't fit", %{api: api} do assert catch_exit( AshPostgres.MigrationGenerator.generate(api, snapshot_path: "test_snapshot_path", migration_path: "test_migration_path", check_generated: true ) ) == {:shutdown, 1} refute File.exists?(Path.wildcard("test_migration_path2/**/*_migrate_resources*.exs")) refute File.exists?(Path.wildcard("test_snapshots_path2/test_repo/posts/*.json")) end end describe "references" do setup do on_exit(fn -> File.rm_rf!("test_snapshots_path") File.rm_rf!("test_migration_path") end) end test "references are inferred automatically" do defposts do attributes do uuid_primary_key(:id) attribute(:title, :string) attribute(:foobar, :string) end end defposts Post2 do attributes do uuid_primary_key(:id) attribute(:name, :string) end relationships do belongs_to(:post, Post) end end defapi([Post, Post2]) AshPostgres.MigrationGenerator.generate(Api, snapshot_path: "test_snapshots_path", migration_path: "test_migration_path", quiet: true, format: false ) assert [file] = Path.wildcard("test_migration_path/**/*_migrate_resources*.exs") assert File.read!(file) =~ ~S[references(:posts, column: :id, name: "posts_post_id_fkey", type: :uuid)] end test "when modified, the foreign key is dropped before modification" do defposts do attributes do uuid_primary_key(:id) attribute(:title, :string) attribute(:foobar, :string) end end defposts Post2 do attributes do uuid_primary_key(:id) attribute(:name, :string) end relationships do belongs_to(:post, Post) end end defapi([Post, Post2]) AshPostgres.MigrationGenerator.generate(Api, snapshot_path: "test_snapshots_path", migration_path: "test_migration_path", quiet: true, format: false ) defposts Post2 do postgres do references do reference :post, name: "special_post_fkey", on_delete: :delete, on_update: :update end end attributes do uuid_primary_key(:id) attribute(:name, :string) end relationships do belongs_to(:post, Post) end end AshPostgres.MigrationGenerator.generate(Api, snapshot_path: "test_snapshots_path", migration_path: "test_migration_path", quiet: true, format: false ) assert file = "test_migration_path/**/*_migrate_resources*.exs" |> Path.wildcard() |> Enum.sort() |> Enum.at(1) assert File.read!(file) =~ ~S[references(:posts, column: :id, name: "special_post_fkey", type: :uuid, on_delete: :delete_all, on_update: :update_all)] assert File.read!(file) =~ ~S[drop constraint(:posts, "posts_post_id_fkey")] end end describe "check constraints" do setup do on_exit(fn -> File.rm_rf!("test_snapshots_path") File.rm_rf!("test_migration_path") end) end test "when added, the constraint is created" do defposts do attributes do uuid_primary_key(:id) attribute(:price, :integer) end postgres do check_constraints do check_constraint(:price, "price_must_be_positive", check: "price > 0") end end end defapi([Post]) AshPostgres.MigrationGenerator.generate(Api, snapshot_path: "test_snapshots_path", migration_path: "test_migration_path", quiet: true, format: false ) assert file = "test_migration_path/**/*_migrate_resources*.exs" |> Path.wildcard() |> Enum.sort() |> Enum.at(0) assert File.read!(file) =~ ~S[create constraint(:posts, :price_must_be_positive, check: "price > 0")] end test "when removed, the constraint is dropped before modification" do defposts do attributes do uuid_primary_key(:id) attribute(:price, :integer) end postgres do check_constraints do check_constraint(:price, "price_must_be_positive", check: "price > 0") end end end defapi([Post]) AshPostgres.MigrationGenerator.generate(Api, snapshot_path: "test_snapshots_path", migration_path: "test_migration_path", quiet: true, format: false ) defposts do attributes do uuid_primary_key(:id) attribute(:price, :integer) end end AshPostgres.MigrationGenerator.generate(Api, snapshot_path: "test_snapshots_path", migration_path: "test_migration_path", quiet: true, format: false ) assert file = "test_migration_path/**/*_migrate_resources*.exs" |> Path.wildcard() |> Enum.sort() |> Enum.at(1) assert File.read!(file) =~ ~S[drop_if_exists constraint(:posts, :price_must_be_positive)] end end describe "polymorphic resources" do setup do on_exit(fn -> File.rm_rf!("test_snapshots_path") File.rm_rf!("test_migration_path") end) defmodule Comment do use Ash.Resource, data_layer: AshPostgres.DataLayer postgres do polymorphic? true repo AshPostgres.TestRepo end attributes do uuid_primary_key(:id) attribute(:resource_id, :uuid) end actions do read(:read) create(:create) end end defmodule Post do use Ash.Resource, data_layer: AshPostgres.DataLayer postgres do table "posts" repo AshPostgres.TestRepo end actions do read(:read) create(:create) end attributes do uuid_primary_key(:id) end relationships do has_many(:comments, Comment, destination_field: :resource_id, relationship_context: %{data_layer: %{table: "post_comments"}} ) belongs_to(:best_comment, Comment, destination_field: :id, relationship_context: %{data_layer: %{table: "post_comments"}} ) end end defapi([Post, Comment]) AshPostgres.MigrationGenerator.generate(Api, snapshot_path: "test_snapshots_path", migration_path: "test_migration_path", quiet: true, format: false ) [api: Api] end test "it uses the relationship's table context if it is set" do assert [file] = Path.wildcard("test_migration_path/**/*_migrate_resources*.exs") assert File.read!(file) =~ ~S[references(:post_comments, column: :id, name: "posts_best_comment_id_fkey", type: :uuid)] end end end