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.Tests.Helpers do
7 Helpers for use in tests.
11 defmacro clear_config(config_path) do
13 clear_config(unquote(config_path)) do
18 defmacro clear_config(config_path, do: yield) do
20 initial_setting = Config.get(unquote(config_path), :__clear_config_absent__)
24 case initial_setting do
25 :__clear_config_absent__ ->
26 Config.delete(unquote(config_path))
29 Config.put(unquote(config_path), initial_setting)
37 defmacro clear_config(config_path, temp_setting) do
39 clear_config(unquote(config_path)) do
40 Config.put(unquote(config_path), unquote(temp_setting))
45 def require_migration(migration_name) do
46 [{module, _}] = Code.require_file("#{migration_name}.exs", "priv/repo/migrations")
47 {:ok, %{migration: module}}
50 defmacro __using__(_opts) do
52 import Pleroma.Tests.Helpers,
58 def to_datetime(%NaiveDateTime{} = naive_datetime) do
60 |> DateTime.from_naive!("Etc/UTC")
61 |> DateTime.truncate(:second)
64 def to_datetime(datetime) when is_binary(datetime) do
66 |> NaiveDateTime.from_iso8601!()
70 def collect_ids(collection) do
76 def refresh_record(%{id: id, __struct__: model} = _),
77 do: refresh_record(model, %{id: id})
79 def refresh_record(model, %{id: id} = _) do
80 Pleroma.Repo.get_by(model, id: id)
83 # Used for comparing json rendering during tests.
84 def render_json(view, template, assigns) do
85 assigns = Map.new(assigns)
87 view.render(template, assigns)
92 def stringify_keys(nil), do: nil
94 def stringify_keys(key) when key in [true, false], do: key
95 def stringify_keys(key) when is_atom(key), do: Atom.to_string(key)
97 def stringify_keys(map) when is_map(map) do
99 |> Enum.map(fn {k, v} -> {stringify_keys(k), stringify_keys(v)} end)
103 def stringify_keys([head | rest] = list) when is_list(list) do
104 [stringify_keys(head) | stringify_keys(rest)]
107 def stringify_keys(key), do: key
109 defmacro guards_config(config_path) do
111 initial_setting = Config.get(config_path)
113 Config.put(config_path, true)
114 on_exit(fn -> Config.put(config_path, initial_setting) end)