1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Pleroma.DataCase do
7 This module defines the setup for tests requiring
8 access to the application's data layer.
10 You may define functions here to be used as helpers in
13 Finally, if the test case interacts with the database,
14 it cannot be async. For this reason, every test runs
15 inside a transaction which is reset at the beginning
16 of the test unless the test case is marked as async.
19 use ExUnit.CaseTemplate
28 import Pleroma.DataCase
29 use Pleroma.Tests.Helpers
31 # Sets up OAuth access with specified scopes
32 defp oauth_access(scopes, opts \\ []) do
34 Keyword.get_lazy(opts, :user, fn ->
35 Pleroma.Factory.insert(:user)
39 Keyword.get_lazy(opts, :oauth_token, fn ->
40 Pleroma.Factory.insert(:oauth_token, user: user, scopes: scopes)
43 %{user: user, token: token}
49 Cachex.clear(:user_cache)
50 Cachex.clear(:object_cache)
51 :ok = Ecto.Adapters.SQL.Sandbox.checkout(Pleroma.Repo)
53 unless tags[:async] do
54 Ecto.Adapters.SQL.Sandbox.mode(Pleroma.Repo, {:shared, self()})
57 if tags[:needs_streamer] do
59 id: Pleroma.Web.Streamer.registry(),
61 {Registry, :start_link, [[keys: :duplicate, name: Pleroma.Web.Streamer.registry()]]}
68 def ensure_local_uploader(context) do
69 test_uploader = Map.get(context, :uploader, Pleroma.Uploaders.Local)
70 uploader = Pleroma.Config.get([Pleroma.Upload, :uploader])
71 filters = Pleroma.Config.get([Pleroma.Upload, :filters])
73 Pleroma.Config.put([Pleroma.Upload, :uploader], test_uploader)
74 Pleroma.Config.put([Pleroma.Upload, :filters], [])
77 Pleroma.Config.put([Pleroma.Upload, :uploader], uploader)
78 Pleroma.Config.put([Pleroma.Upload, :filters], filters)
85 A helper that transform changeset errors to a map of messages.
87 changeset = Accounts.create_user(%{password: "short"})
88 assert "password is too short" in errors_on(changeset).password
89 assert %{password: ["password is too short"]} = errors_on(changeset)
92 def errors_on(changeset) do
93 Ecto.Changeset.traverse_errors(changeset, fn {message, opts} ->
94 Enum.reduce(opts, message, fn {key, value}, acc ->
95 String.replace(acc, "%{#{key}}", to_string(value))