pleroma/test/test_helper.exs

33 lines
1.0 KiB
Elixir
Raw Normal View History

2018-12-23 12:11:29 -08:00
# Pleroma: A lightweight social networking server
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
2018-12-23 12:11:29 -08:00
# SPDX-License-Identifier: AGPL-3.0-only
Code.put_compiler_option(:warnings_as_errors, true)
2023-12-12 02:09:22 -08:00
ExUnit.start(exclude: [:federated, :erratic])
2019-11-26 12:24:34 -08:00
2017-03-17 09:09:58 -07:00
Ecto.Adapters.SQL.Sandbox.mode(Pleroma.Repo, :manual)
2020-03-06 09:23:58 -08:00
2019-07-09 09:54:13 -07:00
Mox.defmock(Pleroma.ReverseProxy.ClientMock, for: Pleroma.ReverseProxy.Client)
2020-03-06 09:23:58 -08:00
Mox.defmock(Pleroma.GunMock, for: Pleroma.Gun)
2017-04-13 06:49:24 -07:00
{:ok, _} = Application.ensure_all_started(:ex_machina)
ExUnit.after_suite(fn _results ->
uploads = Pleroma.Config.get([Pleroma.Uploaders.Local, :uploads], "test/uploads")
File.rm_rf!(uploads)
end)
2023-12-10 21:43:49 -08:00
defmodule Pleroma.Test.StaticConfig do
2023-12-10 21:48:34 -08:00
@moduledoc """
This module provides a Config that is completely static, built at startup time from the environment. It's safe to use in testing as it will not modify any state.
"""
2023-12-10 21:43:49 -08:00
@behaviour Pleroma.Config.Getting
@config Application.get_all_env(:pleroma)
def get(path, default \\ nil) do
get_in(@config, path) || default
end
end