Merge branch 'features/hashtag-column' into 'develop'
[akkoma] / test / support / data_case.ex
1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
4
5 defmodule Pleroma.DataCase do
6 @moduledoc """
7 This module defines the setup for tests requiring
8 access to the application's data layer.
9
10 You may define functions here to be used as helpers in
11 your tests.
12
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.
17 """
18
19 use ExUnit.CaseTemplate
20
21 using do
22 quote do
23 alias Pleroma.Repo
24
25 import Ecto
26 import Ecto.Changeset
27 import Ecto.Query
28 import Pleroma.DataCase
29 use Pleroma.Tests.Helpers
30
31 # Sets up OAuth access with specified scopes
32 defp oauth_access(scopes, opts \\ []) do
33 user =
34 Keyword.get_lazy(opts, :user, fn ->
35 Pleroma.Factory.insert(:user)
36 end)
37
38 token =
39 Keyword.get_lazy(opts, :oauth_token, fn ->
40 Pleroma.Factory.insert(:oauth_token, user: user, scopes: scopes)
41 end)
42
43 %{user: user, token: token}
44 end
45 end
46 end
47
48 def clear_cachex do
49 Pleroma.Supervisor
50 |> Supervisor.which_children()
51 |> Enum.each(fn
52 {name, _, _, [Cachex]} ->
53 name
54 |> to_string
55 |> String.trim_leading("cachex_")
56 |> Kernel.<>("_cache")
57 |> String.to_existing_atom()
58 |> Cachex.clear()
59
60 _ ->
61 nil
62 end)
63 end
64
65 setup tags do
66 :ok = Ecto.Adapters.SQL.Sandbox.checkout(Pleroma.Repo)
67
68 if tags[:async] do
69 Mox.stub_with(Pleroma.CachexMock, Pleroma.NullCache)
70 Mox.set_mox_private()
71 else
72 Ecto.Adapters.SQL.Sandbox.mode(Pleroma.Repo, {:shared, self()})
73 Mox.stub_with(Pleroma.CachexMock, Pleroma.CachexProxy)
74 Mox.set_mox_global()
75 clear_cachex()
76 end
77
78 if tags[:needs_streamer] do
79 start_supervised(%{
80 id: Pleroma.Web.Streamer.registry(),
81 start:
82 {Registry, :start_link, [[keys: :duplicate, name: Pleroma.Web.Streamer.registry()]]}
83 })
84 end
85
86 stub_pipeline()
87
88 :ok
89 end
90
91 def stub_pipeline do
92 Mox.stub_with(Pleroma.Web.ActivityPub.SideEffectsMock, Pleroma.Web.ActivityPub.SideEffects)
93
94 Mox.stub_with(
95 Pleroma.Web.ActivityPub.ObjectValidatorMock,
96 Pleroma.Web.ActivityPub.ObjectValidator
97 )
98
99 Mox.stub_with(Pleroma.Web.ActivityPub.MRFMock, Pleroma.Web.ActivityPub.MRF)
100 Mox.stub_with(Pleroma.Web.ActivityPub.ActivityPubMock, Pleroma.Web.ActivityPub.ActivityPub)
101 Mox.stub_with(Pleroma.Web.FederatorMock, Pleroma.Web.Federator)
102 Mox.stub_with(Pleroma.ConfigMock, Pleroma.Config)
103 end
104
105 def ensure_local_uploader(context) do
106 test_uploader = Map.get(context, :uploader, Pleroma.Uploaders.Local)
107 uploader = Pleroma.Config.get([Pleroma.Upload, :uploader])
108 filters = Pleroma.Config.get([Pleroma.Upload, :filters])
109
110 Pleroma.Config.put([Pleroma.Upload, :uploader], test_uploader)
111 Pleroma.Config.put([Pleroma.Upload, :filters], [])
112
113 on_exit(fn ->
114 Pleroma.Config.put([Pleroma.Upload, :uploader], uploader)
115 Pleroma.Config.put([Pleroma.Upload, :filters], filters)
116 end)
117
118 :ok
119 end
120
121 @doc """
122 A helper that transform changeset errors to a map of messages.
123
124 changeset = Accounts.create_user(%{password: "short"})
125 assert "password is too short" in errors_on(changeset).password
126 assert %{password: ["password is too short"]} = errors_on(changeset)
127
128 """
129 def errors_on(changeset) do
130 Ecto.Changeset.traverse_errors(changeset, fn {message, opts} ->
131 Enum.reduce(opts, message, fn {key, value}, acc ->
132 String.replace(acc, "%{#{key}}", to_string(value))
133 end)
134 end)
135 end
136 end