summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorPierre de Lacroix <pierre@pdelacroix.com>2020-12-09 11:37:02 +0100
committerPierre de Lacroix <pierre@pdelacroix.com>2020-12-09 13:04:53 +0100
commite195403613e977581d8c6daf4485a055959f4295 (patch)
treedb6fede8164782facfae767d970bdf5838ce92e6 /test
parentrun formatter (diff)
fix tests in CI
Diffstat (limited to 'test')
-rw-r--r--test/support/conn_case.ex6
-rw-r--r--test/support/data_case.ex28
-rw-r--r--test/test_helper.exs1
3 files changed, 22 insertions, 13 deletions
diff --git a/test/support/conn_case.ex b/test/support/conn_case.ex
index e1ce056..582801d 100644
--- a/test/support/conn_case.ex
+++ b/test/support/conn_case.ex
@@ -32,6 +32,12 @@ defmodule MatrixAppServiceWeb.ConnCase do
end
setup tags do
+ :ok = Ecto.Adapters.SQL.Sandbox.checkout(MatrixAppService.Repo)
+
+ unless tags[:async] do
+ Ecto.Adapters.SQL.Sandbox.mode(MatrixAppService.Repo, {:shared, self()})
+ end
+
conn =
if tags[:authenticated] do
Phoenix.ConnTest.build_conn(:get, "/", %{
diff --git a/test/support/data_case.ex b/test/support/data_case.ex
index 475f748..76994a7 100644
--- a/test/support/data_case.ex
+++ b/test/support/data_case.ex
@@ -2,20 +2,20 @@ defmodule MatrixAppService.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,
- it cannot be async. For this reason, every test runs
- inside a transaction which is reset at the beginning
- of the test unless the test case is marked as async.
+ 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 MatrixAppService.DataCase, async: true`, although
+ this option is not recommended for other databases.
"""
use ExUnit.CaseTemplate
- alias Ecto.Adapters.SQL.Sandbox
- alias Ecto.Changeset
- alias MatrixAppService.Repo
-
using do
quote do
alias MatrixAppService.Repo
@@ -28,25 +28,27 @@ defmodule MatrixAppService.DataCase do
end
setup tags do
- :ok = Sandbox.checkout(Repo)
+ :ok = Ecto.Adapters.SQL.Sandbox.checkout(MatrixAppService.Repo)
unless tags[:async] do
- Sandbox.mode(Repo, {:shared, self()})
+ Ecto.Adapters.SQL.Sandbox.mode(MatrixAppService.Repo, {:shared, self()})
end
:ok
end
@doc """
- A helper that transform changeset errors to a map of messages.
+ 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
- Changeset.traverse_errors(changeset, fn {message, opts} ->
- Enum.reduce(opts, message, fn {key, value}, acc ->
- String.replace(acc, "%{#{key}}", to_string(value))
+ 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
diff --git a/test/test_helper.exs b/test/test_helper.exs
index 3140500..baf9e64 100644
--- a/test/test_helper.exs
+++ b/test/test_helper.exs
@@ -1,2 +1,3 @@
+Ecto.Adapters.SQL.Sandbox.mode(MatrixAppService.Repo, :manual)
ExUnit.configure(formatters: [JUnitFormatter, ExUnit.CLIFormatter])
ExUnit.start()