Skip to content

Instantly share code, notes, and snippets.

@zorn
Created August 19, 2022 23:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zorn/a08b2cb4a19e2beb3fc09d9792a01923 to your computer and use it in GitHub Desktop.
Save zorn/a08b2cb4a19e2beb3fc09d9792a01923 to your computer and use it in GitHub Desktop.
defmodule Franklin.DataCase do
@moduledoc """
This module defines the setup for tests requiring
access to the application's data layer.
You may define functions here to be used as helpers in
your tests.
Finally, if the test case interacts with the database,
we enable the SQL sandbox, so changes done to the database
are reverted at the end of every test. If you are using
PostgreSQL, you can even run database tests asynchronously
by setting `use Franklin.DataCase, async: true`, although
this option is not recommended for other databases.
"""
use ExUnit.CaseTemplate
using do
quote do
alias Franklin.Repo
import Ecto
import Ecto.Changeset
import Ecto.Query
import Franklin.DataCase
import Commanded.Assertions.EventAssertions
end
end
setup tags do
Franklin.DataCase.setup_stores(tags)
:ok
end
@doc """
Sets up the Ecto database (used for data projections) and the event store
(in-memory for testing only).
"""
def setup_stores(tags) do
# Since we stop applications inside of `on_exit` the first thing we want to
# do is verify they are all started.
{:ok, _apps} = Application.ensure_all_started(:franklin)
# Next we will start the typical Ecto sandbox like experience which will be
# utilized for the projection persistance.
pid = Ecto.Adapters.SQL.Sandbox.start_owner!(Franklin.Repo, shared: not tags[:async])
on_exit(fn ->
# Clear the in memory event store.
Commanded.EventStore.Adapters.InMemory.reset!(Franklin.CommandedApplication)
# Stop the Ecto sandbox.
Ecto.Adapters.SQL.Sandbox.stop_owner(pid)
# Stop the app in full. The reason why the app must be stopped and then
# started between resetting the event store is to ensure all Commanded
# application processes are restarted with their initial state to prevent
# state from one test affecting another. FIXME: How does this impact async
# tests? I think the InMemory store is global so probably yes. :(
:ok = Application.stop(:franklin)
end)
end
@doc """
A helper that transforms changeset errors into a map of messages.
assert {:error, changeset} = Accounts.create_user(%{password: "short"})
assert "password is too short" in errors_on(changeset).password
assert %{password: ["password is too short"]} = errors_on(changeset)
"""
def errors_on(changeset) do
Ecto.Changeset.traverse_errors(changeset, fn {message, opts} ->
Regex.replace(~r"%{(\w+)}", message, fn _, key ->
opts |> Keyword.get(String.to_existing_atom(key), key) |> to_string()
end)
end)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment